From 2a707b7555ec44ec65ed88614214410339e99905 Mon Sep 17 00:00:00 2001 From: Leonardo Boshell Date: Tue, 14 Jan 2003 07:38:37 +0000 Subject: new version --- app-crypt/gringotts/ChangeLog | 8 +++++- app-crypt/gringotts/files/digest-gringotts-1.2.2 | 1 - app-crypt/gringotts/files/digest-gringotts-1.2.3 | 1 + app-crypt/gringotts/gringotts-1.2.2.ebuild | 31 --------------------- app-crypt/gringotts/gringotts-1.2.3.ebuild | 35 ++++++++++++++++++++++++ 5 files changed, 43 insertions(+), 33 deletions(-) delete mode 100644 app-crypt/gringotts/files/digest-gringotts-1.2.2 create mode 100644 app-crypt/gringotts/files/digest-gringotts-1.2.3 delete mode 100644 app-crypt/gringotts/gringotts-1.2.2.ebuild create mode 100644 app-crypt/gringotts/gringotts-1.2.3.ebuild (limited to 'app-crypt/gringotts') 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 : Version bump. Thanks to + Alastair Tse for his contribution on bug #11920 regarding dependencies + for this package. 06 Dec 2002; Rodney Rees : 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.2.ebuild deleted file mode 100644 index 6339809a0750..000000000000 --- a/app-crypt/gringotts/gringotts-1.2.2.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# 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 $ - -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="" -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~x86" - -RDEPEND=">=dev-libs/glib-2.0.6-r1 - >=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" - -src_compile() { - econf - emake || die "Compilation failed" -} - -src_install() { - einstall - dodoc AUTHORS BUGS ChangeLog COPYING TODO -} diff --git a/app-crypt/gringotts/gringotts-1.2.3.ebuild b/app-crypt/gringotts/gringotts-1.2.3.ebuild new file mode 100644 index 000000000000..b0d6e0f9c46c --- /dev/null +++ b/app-crypt/gringotts/gringotts-1.2.3.ebuild @@ -0,0 +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.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="X" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND=">=dev-util/pkgconfig-0.12.0 + >=dev-libs/libgringotts-1.1.1 + dev-libs/popt + >=x11-libs/gtk+-2.0.6-r1 + sys-apps/textutils + X? ( x11-base/xfree )" + +src_compile() { + local myconf="" + + use X && myconf="--with-x" || myconf="--without-x" + + econf ${myconf} + + emake || die "Compilation failed" +} + +src_install() { + einstall + + dodoc AUTHORS BUGS ChangeLog COPYING FAQ README TODO +} -- cgit v1.2.3-65-gdbad