diff options
author | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-17 15:00:38 +0000 |
---|---|---|
committer | Gabriele Giorgetti <stroke@gentoo.org> | 2002-06-17 15:00:38 +0000 |
commit | 571b62a916e2136c33373a1180ea5a4e80e434e4 (patch) | |
tree | b5acf0303c3e07891c1885ab5205adc3b1fa6fba /app-crypt | |
parent | version bump - added license (diff) | |
download | historical-571b62a916e2136c33373a1180ea5a4e80e434e4.tar.gz historical-571b62a916e2136c33373a1180ea5a4e80e434e4.tar.bz2 historical-571b62a916e2136c33373a1180ea5a4e80e434e4.zip |
New version
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/gringotts/ChangeLog | 10 | ||||
-rw-r--r-- | app-crypt/gringotts/files/digest-gringotts-0.5.9 | 1 | ||||
-rw-r--r-- | app-crypt/gringotts/gringotts-0.5.9.ebuild | 49 |
3 files changed, 58 insertions, 2 deletions
diff --git a/app-crypt/gringotts/ChangeLog b/app-crypt/gringotts/ChangeLog index 1907494aa453..a67ffd6763bc 100644 --- a/app-crypt/gringotts/ChangeLog +++ b/app-crypt/gringotts/ChangeLog @@ -1,12 +1,18 @@ # 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.2 2002/06/15 03:37:44 stroke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/ChangeLog,v 1.3 2002/06/17 15:00:38 stroke Exp $ + +*gringotts-0.5.9 (17 Jun 2002) + + 17 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> ChangeLog : + + New version. *gringotts-0.5.6 (15 Jun 2002) 15 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> ChangeLog : - New version. (Huh just a day after ?) + New version. *gringotts-0.5.5 (14 Jun 2002) diff --git a/app-crypt/gringotts/files/digest-gringotts-0.5.9 b/app-crypt/gringotts/files/digest-gringotts-0.5.9 new file mode 100644 index 000000000000..09f782937ac3 --- /dev/null +++ b/app-crypt/gringotts/files/digest-gringotts-0.5.9 @@ -0,0 +1 @@ +MD5 24ca09631fce1f3e294b15b1bd49239d gringotts-0.5.9.tar.bz2 222967 diff --git a/app-crypt/gringotts/gringotts-0.5.9.ebuild b/app-crypt/gringotts/gringotts-0.5.9.ebuild new file mode 100644 index 000000000000..5b43094c7588 --- /dev/null +++ b/app-crypt/gringotts/gringotts-0.5.9.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gringotts/gringotts-0.5.9.ebuild,v 1.1 2002/06/17 15:00:38 stroke Exp $ + + +S=${WORKDIR}/${P} +DESCRIPTION="Gringotts is a 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/" +SLOT="0" +LICENSE="GPL-2" + + +RDEPEND=">=dev-libs/glib-2.0.3 + >=dev-libs/atk-1.0.2 + >=x11-libs/pango-1.0.2 + >=x11-libs/gtk+-2.0.5 + >=dev-libs/libmcrypt-2.4.19-r1 + >=app-crypt/mhash-0.8.16" + +DEPEND="${RDEPEND} + >=dev-util/intltool-0.17 + >=dev-util/pkgconfig-0.12.0" + +src_compile() { + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man || die + + emake || die +} + +src_install() { + + make DESTDIR=${D} install || die + + dodoc COPYING ChangeLog README AUTHORS + +} + + + + + + + + + |