diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-05-28 05:24:13 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-05-28 05:24:13 +0000 |
commit | 8ed32e6bf344c307316970f423c63b17604b0161 (patch) | |
tree | 903729d776fdd8e9151364e6f7be0a9abefd351c /app-crypt | |
parent | Added DarcNES a multi-system emulator (diff) | |
download | gentoo-2-8ed32e6bf344c307316970f423c63b17604b0161.tar.gz gentoo-2-8ed32e6bf344c307316970f423c63b17604b0161.tar.bz2 gentoo-2-8ed32e6bf344c307316970f423c63b17604b0161.zip |
Dependencie fixes
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gnupg/gnupg-1.0.5.ebuild | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/app-crypt/gnupg/gnupg-1.0.5.ebuild b/app-crypt/gnupg/gnupg-1.0.5.ebuild index 92a9e727e027..1808890b1c12 100644 --- a/app-crypt/gnupg/gnupg-1.0.5.ebuild +++ b/app-crypt/gnupg/gnupg-1.0.5.ebuild @@ -11,7 +11,8 @@ DESCRIPTION="The GNU Privacy Guard, a GPL pgp replacement" SRC_URI="ftp://ftp.gnupg.org/pub/gcrypt/gnupg/${A}" HOMEPAGE="http://www.gnupg.org/" -DEPEND=">=sys-devel/gettext-0.10.35 +DEPEND="virtual/glibc + nls? ( >=sys-devel/gettext-0.10.35 ) >=sys-libs/zlib-1.1.3" src_compile() { @@ -22,7 +23,7 @@ src_compile() { myconf="--disable-nls" fi - try ./configure --prefix=/usr --mandir=/usr/share \ + try ./configure --prefix=/usr --mandir=/usr/share --infodir=/usr/share/info \ --enable-static-rnd=linux --enable-m-guard --host=${CHOST}\ ${myconf} try make @@ -31,12 +32,18 @@ src_compile() { src_install () { - try make DESTDIR=${D} install + try make prefix=${D}/usr mandir=${D}/usr/share/man infodir=${D}/usr/share/info install dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog INSTALL NEWS PROJECTS dodoc README TODO VERSION docinto doc cd doc - dodoc faq.html faq.raw gpg.sgml gpgv.sgml FAQ HACKING DETAILS ChangeLog + dodoc FAQ HACKING DETAILS ChangeLog + docint sgml + dodoc gpg.sgml gpgv.sgml + docinto html + dodoc faq.html + docinto txt + dodoc faq.raw chmod +s ${D}/usr/bin/gpg } |