diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-08-06 06:26:51 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-08-06 06:26:51 +0000 |
commit | a5ce633e68db39535c9684b1351e0c2064ad4e39 (patch) | |
tree | 34bb49e25bbe11a5850e19b96dbf70e687266a94 /app-crypt/gnupg | |
parent | remove old version that had some old stuff that was making the reporter (diff) | |
download | gentoo-2-a5ce633e68db39535c9684b1351e0c2064ad4e39.tar.gz gentoo-2-a5ce633e68db39535c9684b1351e0c2064ad4e39.tar.bz2 gentoo-2-a5ce633e68db39535c9684b1351e0c2064ad4e39.zip |
backtick to $() QA fix
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-crypt/gnupg')
-rw-r--r-- | app-crypt/gnupg/Manifest | 12 | ||||
-rw-r--r-- | app-crypt/gnupg/gnupg-1.4.2-r1.ebuild | 28 |
2 files changed, 15 insertions, 25 deletions
diff --git a/app-crypt/gnupg/Manifest b/app-crypt/gnupg/Manifest index f54ca3d6c8c2..e36bb62c2588 100644 --- a/app-crypt/gnupg/Manifest +++ b/app-crypt/gnupg/Manifest @@ -1,9 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 9e3d878e3e7fb2da2653018e16484a82 gnupg-1.9.18.ebuild 3205 MD5 395da14250e78e240bf68b189c7ac3bb ChangeLog 20719 -MD5 b47d1016e516b746f7bc12f92ef133e8 gnupg-1.4.2-r1.ebuild 6262 +MD5 6fd2c94b70ba8782c44a14f667356392 gnupg-1.4.2-r1.ebuild 6272 MD5 921f00a83ce6b1d77190396b4456f05f gnupg-1.2.6.ebuild 3800 MD5 b507ee36c7487372de42cc9dab034370 metadata.xml 481 MD5 cfe5a67b1204af18a6b03edbdbaa5363 gnupg-1.4.1.ebuild 6292 @@ -18,10 +15,3 @@ MD5 e62b7134c5c0c1b3aad6a08bfdf99b48 files/digest-gnupg-1.9.15-r1 66 MD5 4b92f911e900cfd1a37439bd19412f5d files/digest-gnupg-1.4.1-r1 190 MD5 494103ac08d870d8a9c1ed0b83c4ae35 files/gnupg-1.4.1-selftest.patch 1180 MD5 552b43a0705ea006efa282b7d5645143 files/gnupg-1.4.2-selftest.patch 1358 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFC9DRQmdTrptrqvGERAgs/AJ9sR4WJ0aLIQCULdtXyF5GF5+NYqgCgmbLn -9T8hP5sbA9Be/Eza65WKe/M= -=y+j2 ------END PGP SIGNATURE----- diff --git a/app-crypt/gnupg/gnupg-1.4.2-r1.ebuild b/app-crypt/gnupg/gnupg-1.4.2-r1.ebuild index e9d76f4597f7..96f38500e8d4 100644 --- a/app-crypt/gnupg/gnupg-1.4.2-r1.ebuild +++ b/app-crypt/gnupg/gnupg-1.4.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.2-r1.ebuild,v 1.1 2005/08/06 00:03:19 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.4.2-r1.ebuild,v 1.2 2005/08/06 06:26:51 dragonheart Exp $ inherit eutils flag-o-matic @@ -80,7 +80,7 @@ src_compile() { filter-flags -mcpu=supersparc -mcpu=v8 -mcpu=v7 fi - # `USE=static` support was requested in #29299 + # 'USE=static' support was requested in #29299 # use static && append-ldflags -static # Still needed? @@ -93,25 +93,25 @@ src_compile() { use x86 && myconf="${myconf} --enable-asm" # waiting on arm bug #76234 - use arm || myconf="${myconf} `use_enable X photo-viewers`" + use arm || myconf="${myconf} $(use_enable X photo-viewers)" # fix compile problem on ppc64 use ppc64 && myconf="${myconf} --disable-asm" econf \ - `use_enable ldap` \ + $(use_enable ldap) \ --enable-mailto \ --enable-hkp \ --enable-finger \ - `use_with !zlib included-zlib` \ - `use_with curl libcurl /usr` \ - `use_enable nls` \ - `use_enable bzip2` \ - `use_enable smartcard card-support` \ - `use_enable selinux selinux-support` \ - `use_with caps capabilities` \ - `use_with readline` \ - `use_with usb libusb /usr` \ + $(use_with !zlib included-zlib) \ + $(use_with curl libcurl /usr) \ + $(use_enable nls) \ + $(use_enable bzip2) \ + $(use_enable smartcard card-support) \ + $(use_enable selinux selinux-support) \ + $(use_with caps capabilities) \ + $(use_with readline) \ + $(use_with usb libusb /usr) \ --enable-static-rnd=linux \ --libexecdir=/usr/libexec \ --enable-sha512 \ @@ -123,7 +123,7 @@ src_compile() { src_install() { gnupg_fixcheckperms - emake DESTDIR=${D} install || die + make DESTDIR=${D} install || die # caps support makes life easier use caps || fperms u+s,go-r /usr/bin/gpg |