diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2003-01-14 07:38:37 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2003-01-14 07:38:37 +0000 |
commit | 2a707b7555ec44ec65ed88614214410339e99905 (patch) | |
tree | 6b2950f33cad16f8372cca2b46b7dbe49d2118df /app-crypt/gringotts | |
parent | new version (diff) | |
download | historical-2a707b7555ec44ec65ed88614214410339e99905.tar.gz historical-2a707b7555ec44ec65ed88614214410339e99905.tar.bz2 historical-2a707b7555ec44ec65ed88614214410339e99905.zip |
new version
Diffstat (limited to 'app-crypt/gringotts')
-rw-r--r-- | app-crypt/gringotts/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/gringotts/files/digest-gringotts-1.2.2 | 1 | ||||
-rw-r--r-- | app-crypt/gringotts/files/digest-gringotts-1.2.3 | 1 | ||||
-rw-r--r-- | app-crypt/gringotts/gringotts-1.2.3.ebuild (renamed from app-crypt/gringotts/gringotts-1.2.2.ebuild) | 26 |
4 files changed, 23 insertions, 13 deletions
diff --git a/app-crypt/gringotts/ChangeLog b/app-crypt/gringotts/ChangeLog index c2711b93a016..e467d3722a6e 100644 --- a/app-crypt/gringotts/ChangeLog +++ b/app-crypt/gringotts/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-crypt/gringotts # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/ChangeLog,v 1.8 2002/12/13 10:56:01 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/ChangeLog,v 1.9 2003/01/14 07:38:32 leonardop Exp $ + +*gringotts-1.2.3 (14 Jan 2003) + + 14 Jan 2003; L. Boshell <leonardop@gentoo.org> : Version bump. Thanks to + Alastair Tse for his contribution on bug #11920 regarding dependencies + for this package. 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/app-crypt/gringotts/files/digest-gringotts-1.2.2 b/app-crypt/gringotts/files/digest-gringotts-1.2.2 deleted file mode 100644 index c16bcdda1424..000000000000 --- a/app-crypt/gringotts/files/digest-gringotts-1.2.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 2f4f77392384336d5930825b5ea3ebf1 gringotts-1.2.2.tar.bz2 161322 diff --git a/app-crypt/gringotts/files/digest-gringotts-1.2.3 b/app-crypt/gringotts/files/digest-gringotts-1.2.3 new file mode 100644 index 000000000000..5e07b8e4bafc --- /dev/null +++ b/app-crypt/gringotts/files/digest-gringotts-1.2.3 @@ -0,0 +1 @@ +MD5 272977f4ab002c19ab3700aa219c4cf9 gringotts-1.2.3.tar.bz2 172239 diff --git a/app-crypt/gringotts/gringotts-1.2.2.ebuild b/app-crypt/gringotts/gringotts-1.2.3.ebuild index 6339809a0750..b0d6e0f9c46c 100644 --- a/app-crypt/gringotts/gringotts-1.2.2.ebuild +++ b/app-crypt/gringotts/gringotts-1.2.3.ebuild @@ -1,31 +1,35 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/gringotts-1.2.2.ebuild,v 1.3 2002/12/18 14:16:10 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/gringotts-1.2.3.ebuild,v 1.1 2003/01/14 07:38:33 leonardop Exp $ DESCRIPTION="Utility that allows you to jot down sensitive data" SRC_URI="http://devel.pluto.linux.it/projects/Gringotts/current/${P}.tar.bz2" HOMEPAGE="http://devel.pluto.linux.it/projects/Gringotts/" -IUSE="" +IUSE="X" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86" -RDEPEND=">=dev-libs/glib-2.0.6-r1 +DEPEND=">=dev-util/pkgconfig-0.12.0 + >=dev-libs/libgringotts-1.1.1 + dev-libs/popt >=x11-libs/gtk+-2.0.6-r1 - >=dev-libs/libmcrypt-2.5.1 - >=app-crypt/mhash-0.8.16" -DEPEND="${RDEPEND} - >=dev-util/intltool-0.17 - >=dev-util/pkgconfig-0.12.0 - >=dev-libs/libgringotts-1.1.1" + sys-apps/textutils + X? ( x11-base/xfree )" src_compile() { - econf + local myconf="" + + use X && myconf="--with-x" || myconf="--without-x" + + econf ${myconf} + emake || die "Compilation failed" } src_install() { einstall - dodoc AUTHORS BUGS ChangeLog COPYING TODO + + dodoc AUTHORS BUGS ChangeLog COPYING FAQ README TODO } |