diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-04-27 17:29:24 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-04-27 17:29:24 +0000 |
commit | df0f146a74e6a05c08119fb70ae5ff8026274eaf (patch) | |
tree | c21cd56cfe7cbebc6927ca10fa5249f2a33d6565 /app-text/pinfo | |
parent | PPC stable profile update (diff) | |
download | historical-df0f146a74e6a05c08119fb70ae5ff8026274eaf.tar.gz historical-df0f146a74e6a05c08119fb70ae5ff8026274eaf.tar.bz2 historical-df0f146a74e6a05c08119fb70ae5ff8026274eaf.zip |
Use use_with and use_enable to clean up ebuild
Diffstat (limited to 'app-text/pinfo')
-rw-r--r-- | app-text/pinfo/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/pinfo/Manifest | 8 | ||||
-rw-r--r-- | app-text/pinfo/pinfo-0.6.8.ebuild | 14 |
3 files changed, 10 insertions, 17 deletions
diff --git a/app-text/pinfo/ChangeLog b/app-text/pinfo/ChangeLog index f4595462c5eb..61f06652381c 100644 --- a/app-text/pinfo/ChangeLog +++ b/app-text/pinfo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/pinfo # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/ChangeLog,v 1.15 2004/04/25 23:06:17 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/ChangeLog,v 1.16 2004/04/27 17:29:24 agriffis Exp $ + + 27 Apr 2004; Aron Griffis <agriffis@gentoo.org> pinfo-0.6.8.ebuild: + Use use_with and use_enable to clean up ebuild 25 Apr 2004; Aron Griffis <agriffis@gentoo.org> pinfo-0.6.5_p2-r1.ebuild, pinfo-0.6.7.ebuild, pinfo-0.6.8.ebuild: diff --git a/app-text/pinfo/Manifest b/app-text/pinfo/Manifest index a35b850653b0..8f0e756adfff 100644 --- a/app-text/pinfo/Manifest +++ b/app-text/pinfo/Manifest @@ -1,7 +1,7 @@ -MD5 bc42f9fba93cd425870ed68c9a6d3f78 pinfo-0.6.7.ebuild 948 +MD5 fdd5072e1b51add549e52141aa613a9f ChangeLog 2451 MD5 e6f03c791472ba75d3d371b01439d825 pinfo-0.6.5_p2-r1.ebuild 954 -MD5 7676a617738109460152a4637f65e965 ChangeLog 2331 -MD5 4dfe8df2a2cc11d5361b164710632629 pinfo-0.6.8.ebuild 956 +MD5 bc42f9fba93cd425870ed68c9a6d3f78 pinfo-0.6.7.ebuild 948 +MD5 4bac14d1e901d1813374e67e61a7fa4f pinfo-0.6.8.ebuild 779 +MD5 e132eaa5418eb067f4db536d63f27e07 files/digest-pinfo-0.6.5_p2-r1 65 MD5 cd407b1e6a446c80f336c862fe75b56f files/digest-pinfo-0.6.7 63 MD5 43cd937abc939c31ddaea990ea29acd7 files/digest-pinfo-0.6.8 63 -MD5 e132eaa5418eb067f4db536d63f27e07 files/digest-pinfo-0.6.5_p2-r1 65 diff --git a/app-text/pinfo/pinfo-0.6.8.ebuild b/app-text/pinfo/pinfo-0.6.8.ebuild index 873703f1da07..c72a8f51e9c2 100644 --- a/app-text/pinfo/pinfo-0.6.8.ebuild +++ b/app-text/pinfo/pinfo-0.6.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/pinfo-0.6.8.ebuild,v 1.6 2004/04/25 23:06:17 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/pinfo-0.6.8.ebuild,v 1.7 2004/04/27 17:29:24 agriffis Exp $ MY_P=${PN}-${PV/_/} S=${WORKDIR}/${MY_P} @@ -18,17 +18,7 @@ DEPEND="sys-libs/ncurses nls? ( sys-devel/gettext )" src_compile() { - local myconf - - use readline \ - && myconf="${myconf} --with-readline" \ - || myconf="${myconf} --without-readline" - - use nls \ - && myconf="${myconf} --enable-nls" \ - || myconf="${myconf} --disable-nls" - - econf ${myconf} || die "econf failed" + econf $(use_with readline) $(use_enable nls) || die "econf failed" emake || die } |