diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-08-07 02:03:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-08-07 02:03:53 +0000 |
commit | be40186438143ca5837ac563994c2a7a191bcde7 (patch) | |
tree | aac0ed4d439fdae0e9ae8f9c0bf289a3f747133b /dev-libs | |
parent | Version bump. Added CryptoApi to the patchset. (diff) | |
download | gentoo-2-be40186438143ca5837ac563994c2a7a191bcde7.tar.gz gentoo-2-be40186438143ca5837ac563994c2a7a191bcde7.tar.bz2 gentoo-2-be40186438143ca5837ac563994c2a7a191bcde7.zip |
fix license/repoman
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libgcrypt/libgcrypt-1.1.8.ebuild | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/dev-libs/libgcrypt/libgcrypt-1.1.8.ebuild b/dev-libs/libgcrypt/libgcrypt-1.1.8.ebuild index 6094d4f3d5ac..a4efdbe327b8 100644 --- a/dev-libs/libgcrypt/libgcrypt-1.1.8.ebuild +++ b/dev-libs/libgcrypt/libgcrypt-1.1.8.ebuild @@ -1,31 +1,29 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.1.8.ebuild,v 1.4 2003/02/13 10:42:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.1.8.ebuild,v 1.5 2003/08/07 02:03:53 vapier Exp $ -S=${WORKDIR}/${P} -DESCRIPTION="libgcrypt is a general purpose crypto library based on the code used in GnuPG." +DESCRIPTION="general purpose crypto library based on the code used in GnuPG" +HOMEPAGE="http://www.gnupg.org/" SRC_URI="ftp://ftp.gnupg.org/gcrypt/alpha/libgcrypt/${P}.tar.gz" -HOMEPAGE="http://www.gnupg.org" -SLOT="0" LICENSE="LGPL-2.1" -KEYWORDS="~x86 ~ppc ~sparc " +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc" +IUSE="nls" DEPEND="app-text/jadetex app-text/docbook-sgml-utils" - RDEPEND="nls? ( sys-devel/gettext )" src_compile() { - local myconf use nls || myconf="${myconf} --disable-nls" econf ${myconf} || die - emake || die + emake || die } -src_install () { +src_install() { make DESTDIR=${D} install || die dodoc AUTHORS BUGS ChangeLog COPYING* NEWS README* THANKS TODO VERSION } |