summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Bakker <guidob@gentoo.org>2002-09-11 12:25:55 +0000
committerGuido Bakker <guidob@gentoo.org>2002-09-11 12:25:55 +0000
commitc037d13198887e97942864c3ff6998926614b251 (patch)
tree5dd31b8798b372ce590a9bf2516b1fce1c212445 /app-misc/tinyca
parentbugfix2 (diff)
downloadgentoo-2-c037d13198887e97942864c3ff6998926614b251.tar.gz
gentoo-2-c037d13198887e97942864c3ff6998926614b251.tar.bz2
gentoo-2-c037d13198887e97942864c3ff6998926614b251.zip
Stable update
Diffstat (limited to 'app-misc/tinyca')
-rw-r--r--app-misc/tinyca/ChangeLog8
-rw-r--r--app-misc/tinyca/files/digest-tinyca-0.4.21
-rw-r--r--app-misc/tinyca/tinyca-0.4.2.ebuild37
3 files changed, 45 insertions, 1 deletions
diff --git a/app-misc/tinyca/ChangeLog b/app-misc/tinyca/ChangeLog
index 30514891ed00..23eb122c5154 100644
--- a/app-misc/tinyca/ChangeLog
+++ b/app-misc/tinyca/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for home/tinyca
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tinyca/ChangeLog,v 1.1 2002/06/24 17:48:47 lamer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tinyca/ChangeLog,v 1.2 2002/09/11 12:25:55 guidob Exp $
+
+*tinyca-tinyca-0.4.2.ebuild (11 Sep 2002)
+
+ 11 Sep 2002; Guido Bakker <guidob@gentoo.org> ChangeLog :
+
+ Stable update.
*tinyca-tinyca-0.3.4.ebuild (24 Jun 2002)
diff --git a/app-misc/tinyca/files/digest-tinyca-0.4.2 b/app-misc/tinyca/files/digest-tinyca-0.4.2
new file mode 100644
index 000000000000..20420d329997
--- /dev/null
+++ b/app-misc/tinyca/files/digest-tinyca-0.4.2
@@ -0,0 +1 @@
+MD5 445962a21f25b4a2520216a79fa3a0d6 tinyca-0.4.2.tar.bz2 21275
diff --git a/app-misc/tinyca/tinyca-0.4.2.ebuild b/app-misc/tinyca/tinyca-0.4.2.ebuild
new file mode 100644
index 000000000000..3729faf5a690
--- /dev/null
+++ b/app-misc/tinyca/tinyca-0.4.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+
+S="${WORKDIR}/TinyCA"
+DESCRIPTION="Simple Perl/Tk GUI to manage a small certification authority"
+SRC_URI="http://tinyca.sm-zone.net/${P}.tar.bz2"
+HOMEPAGE="http://tinyca.sm-zone.net"
+
+SLOT="0"
+LICENSE="Artistic"
+KEYWORDS="x86"
+
+DEPEND=">=dev-libs/openssl-0.9.6b
+ >=dev-perl/MIME-Base64-2.12
+ >=dev-perl/perl-tk-800.024"
+
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ # this app was written to be run from cwd and not meant to be installed
+ # this little hack fixes that... pretty silly if you ask me
+ cat tinyca | sed -e "s:\./lib:/usr/share/tinyca/lib:" \
+ -e "s:\./template:/usr/share/tinyca/template:" > tinyca
+}
+
+
+src_install () {
+ dodir /usr/bin
+ exeinto /usr/share/tinyca/
+ doexe tinyca
+ dosym /usr/share/tinyca/tinyca /usr/bin/tinyca
+ insinto /usr/share/tinyca/lib
+ doins lib/*
+ insinto /usr/share/tinyca/templates
+ doins templates/*
+}