diff options
author | 2014-05-10 17:35:28 +0000 | |
---|---|---|
committer | 2014-05-10 17:35:28 +0000 | |
commit | 04825041bc38ed1c786d17fffc055a9a961f077a (patch) | |
tree | 98e7b0b1aab26aee068b2ff57af84ccbb278f50e | |
parent | Depend on media-libs/gd[png] by Kerin Millar (bug #404469). (diff) | |
download | gentoo-2-04825041bc38ed1c786d17fffc055a9a961f077a.tar.gz gentoo-2-04825041bc38ed1c786d17fffc055a9a961f077a.tar.bz2 gentoo-2-04825041bc38ed1c786d17fffc055a9a961f077a.zip |
Add debug USE flag. Patch by Joakim Tjernlund <Joakim.Tjernlund@transmode.se>. Bug #507030
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!)
-rw-r--r-- | sys-apps/fakeroot/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/fakeroot/fakeroot-1.20.ebuild | 9 |
2 files changed, 11 insertions, 6 deletions
diff --git a/sys-apps/fakeroot/ChangeLog b/sys-apps/fakeroot/ChangeLog index 5b5dbe0d9c0e..18328ba3c5c6 100644 --- a/sys-apps/fakeroot/ChangeLog +++ b/sys-apps/fakeroot/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/fakeroot -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakeroot/ChangeLog,v 1.103 2013/09/21 06:05:26 radhermit Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakeroot/ChangeLog,v 1.104 2014/05/10 17:35:28 hwoarang Exp $ + + 10 May 2014; Markos Chandras <hwoarang@gentoo.org> fakeroot-1.20.ebuild: + Add debug USE flag. Patch by Joakim Tjernlund <Joakim.Tjernlund@transmode.se>. + Bug #507030 *fakeroot-1.20 (21 Sep 2013) diff --git a/sys-apps/fakeroot/fakeroot-1.20.ebuild b/sys-apps/fakeroot/fakeroot-1.20.ebuild index bf702b49c72b..500e8df9e1dd 100644 --- a/sys-apps/fakeroot/fakeroot-1.20.ebuild +++ b/sys-apps/fakeroot/fakeroot-1.20.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakeroot/fakeroot-1.20.ebuild,v 1.1 2013/09/21 06:05:26 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/fakeroot/fakeroot-1.20.ebuild,v 1.2 2014/05/10 17:35:28 hwoarang Exp $ EAPI=4 -inherit eutils +inherit eutils flag-o-matic DESCRIPTION="A fake root environment by means of LD_PRELOAD and SysV IPC (or TCP) trickery" HOMEPAGE="http://packages.qa.debian.org/f/fakeroot.html" @@ -12,7 +12,7 @@ SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${P/-/_}.orig.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="acl static-libs test" +IUSE="acl debug static-libs test" DEPEND="acl? ( sys-apps/acl ) test? ( app-arch/sharutils ) @@ -27,6 +27,7 @@ src_prepare() { src_configure() { export ac_cv_header_sys_acl_h=$(usex acl) + use debug && append-cppflags "-DLIBFAKEROOT_DEBUGGING" econf \ $(use_enable static-libs static) } |