diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-10-05 11:48:23 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-10-05 11:48:23 +0000 |
commit | 5ec0fd25f13112bdfb90216b7d23a25f37296945 (patch) | |
tree | 12ea8b0f20d9876dd8a91caa6f1eec7af8dbc529 /app-crypt | |
parent | eclasses v3.3, mosfet's liquid widgets, misc fixes (diff) | |
download | gentoo-2-5ec0fd25f13112bdfb90216b7d23a25f37296945.tar.gz gentoo-2-5ec0fd25f13112bdfb90216b7d23a25f37296945.tar.bz2 gentoo-2-5ec0fd25f13112bdfb90216b7d23a25f37296945.zip |
added, Gtk+ frontend to GnuPG
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gpa/files/digest-gpa-0.4.1 | 1 | ||||
-rw-r--r-- | app-crypt/gpa/gpa-0.4.1.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/app-crypt/gpa/files/digest-gpa-0.4.1 b/app-crypt/gpa/files/digest-gpa-0.4.1 new file mode 100644 index 000000000000..a406ae48e519 --- /dev/null +++ b/app-crypt/gpa/files/digest-gpa-0.4.1 @@ -0,0 +1 @@ +MD5 f82709520e6b57d07c24afcb56276935 gpa-0.4.1.tar.gz diff --git a/app-crypt/gpa/gpa-0.4.1.ebuild b/app-crypt/gpa/gpa-0.4.1.ebuild new file mode 100644 index 000000000000..dfc709a41ecb --- /dev/null +++ b/app-crypt/gpa/gpa-0.4.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Mikael Hallendal <micke@hallendal.net> +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpa/gpa-0.4.1.ebuild,v 1.1 2001/10/05 11:48:23 hallski Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Standard GUI for GnuPG" +SRC_URI="ftp://ftp.gnupg.org/gcrypt/alpha/${PN}/${A}" +HOMEPAGE="http://www.gnupg.org/gpa.html" + +DEPEND=">=x11-libs/gtk+-1.2.1 + nls? ( sys-devel/gettext )" + + +src_compile() { + local myconf + + if [ -z "`use nls`" ] ; then + myconf="--disable-nls" + fi + + ./configure --host=${CHOST} --prefix=/usr \ + --sysconfdir=/etc $myconf || die + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + + dodoc AUTHORS COPYING ChangeLog README NEWS TODO +} + + + + + |