diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2002-03-04 04:19:25 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2002-03-04 04:19:25 +0000 |
commit | 81b729f72612a150a535e2c85d985e407aa69201 (patch) | |
tree | ccf42167156c2a1ff0feab0720c2979c1f77dc9c /app-crypt | |
parent | install fix0r (diff) | |
download | historical-81b729f72612a150a535e2c85d985e407aa69201.tar.gz historical-81b729f72612a150a535e2c85d985e407aa69201.tar.bz2 historical-81b729f72612a150a535e2c85d985e407aa69201.zip |
Minor facelift. No user-visible changes (except that .html doc is not
gzipped any more).
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gnupg/gnupg-1.0.6.ebuild | 55 |
1 files changed, 27 insertions, 28 deletions
diff --git a/app-crypt/gnupg/gnupg-1.0.6.ebuild b/app-crypt/gnupg/gnupg-1.0.6.ebuild index 271143ad5202..db49eca450ca 100644 --- a/app-crypt/gnupg/gnupg-1.0.6.ebuild +++ b/app-crypt/gnupg/gnupg-1.0.6.ebuild @@ -4,40 +4,41 @@ # $Header: /home/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-1.0.4.ebuild,v 1.0 # 2001/04/21 12:45 CST blutgens Exp $ -S=${WORKDIR}/${P} DESCRIPTION="The GNU Privacy Guard, a GPL pgp replacement" -SRC_URI="ftp://ftp.gnupg.org/pub/gcrypt/gnupg/${P}.tar.gz" HOMEPAGE="http://www.gnupg.org/" +SRC_URI="ftp://ftp.gnupg.org/pub/gcrypt/gnupg/${P}.tar.gz" +S="${WORKDIR}/${P}" DEPEND="virtual/glibc nls? ( >=sys-devel/gettext-0.10.35 ) >=sys-libs/zlib-1.1.3" src_unpack() { - unpack ${A} - cd ${S} -# Fix those $&*%^$%%$ info files - patch -p1 < ${FILESDIR}/gnupg-1.0.6.diff + unpack "${A}" + cd "${S}" + # Fix those $&*%^$%%$ info files + patch -p1 < "${FILESDIR}/gnupg-1.0.6.diff" } -src_compile() { - -# Check to see if we're using nls - local myconf - if [ -z "`use nls`" ]; then - myconf="--disable-nls" - fi - - try ./configure --prefix=/usr --mandir=/usr/share/man \ - --infodir=/usr/share/info --enable-static-rnd=linux \ - --enable-m-guard --host=${CHOST}\ - ${myconf} - try emake +src_compile() { + # Check to see if we're using nls + local myconf + if [ -z "`use nls`" ]; then + myconf="--disable-nls" + fi + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --enable-static-rnd=linux \ + --enable-m-guard --host="${CHOST}" \ + ${myconf} || die + emake || die } src_install () { - - try make DESTDIR=${D} install + make DESTDIR="${D}" install || die dodoc ABOUT-NLS AUTHORS BUGS COPYING ChangeLog INSTALL NEWS PROJECTS dodoc README TODO VERSION docinto doc @@ -45,16 +46,14 @@ src_install () { dodoc FAQ HACKING DETAILS ChangeLog docinto sgml dodoc gpg.sgml gpgv.sgml - docinto html - dodoc faq.html + dohtml faq.html docinto txt dodoc faq.raw - chmod +s ${D}/usr/bin/gpg + chmod +s "${D}/usr/bin/gpg" } pkg_postinst() { - einfo "gpg is installed SUID root to make use of protected memory space" - einfo "This is needed in order to have a secure place" - einfo " to store yourpassphrases etc during runtime" - einfo "but may make some sysadmins nervous" + einfo "gpg is installed SUID root to make use of protected memory space" + einfo "This is needed in order to have a secure place to store your passphrases," + einfo "etc. at runtime but may make some sysadmins nervous" } |