diff options
author | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-08-16 10:48:49 +0000 |
---|---|---|
committer | Sascha Schwabbauer <cybersystem@gentoo.org> | 2002-08-16 10:48:49 +0000 |
commit | 5f3b2a7683e8de7446c16fdbc80da05ca6e3eefe (patch) | |
tree | 6a3eaa6177988a87ff080f7337f7d76ece31e7ea /app-text/htag | |
parent | modernised (diff) | |
download | gentoo-2-5f3b2a7683e8de7446c16fdbc80da05ca6e3eefe.tar.gz gentoo-2-5f3b2a7683e8de7446c16fdbc80da05ca6e3eefe.tar.bz2 gentoo-2-5f3b2a7683e8de7446c16fdbc80da05ca6e3eefe.zip |
added new ebuild, htag
Diffstat (limited to 'app-text/htag')
-rw-r--r-- | app-text/htag/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/htag/files/digest-htag-0.0.22 | 1 | ||||
-rw-r--r-- | app-text/htag/htag-0.0.22.ebuild | 23 |
3 files changed, 34 insertions, 0 deletions
diff --git a/app-text/htag/ChangeLog b/app-text/htag/ChangeLog new file mode 100644 index 000000000000..bf1132ce9a16 --- /dev/null +++ b/app-text/htag/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-text/htag +# Copyright 2001-2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-text/htag/ChangeLog,v 1.1 2002/08/16 10:48:49 cybersystem Exp $ + +* htag-0.0.22 (16 August 2002) + + 16 August 2002; Sascha Schwabbauer <cybersystem@gentoo.org> ChangeLog, htag-0.0.22.ebuild, files/digest-htag-0.0.22 + + Initial version in Portage now.. + Initial ebuild by Lim Swee Tat <st_lim@stlim.net>.. diff --git a/app-text/htag/files/digest-htag-0.0.22 b/app-text/htag/files/digest-htag-0.0.22 new file mode 100644 index 000000000000..9d998d80b045 --- /dev/null +++ b/app-text/htag/files/digest-htag-0.0.22 @@ -0,0 +1 @@ +MD5 76d8bd0c7e65e60665e018d8c4c0f137 htag-0.0.22.tar.gz 33655 diff --git a/app-text/htag/htag-0.0.22.ebuild b/app-text/htag/htag-0.0.22.ebuild new file mode 100644 index 000000000000..49e13bc87e4f --- /dev/null +++ b/app-text/htag/htag-0.0.22.ebuild @@ -0,0 +1,23 @@ +# 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-text/htag/htag-0.0.22.ebuild,v 1.1 2002/08/16 10:48:49 cybersystem Exp $ + +S="${WORKDIR}/htag-${PV}" + +DESCRIPTION="HTag is a random signature maker for linux" +HOMEPAGE="http://www.earth.li/projectpurple/progs/htag.html" +SRC_URI="http://www.earth.li/projectpurple/files/htag-${PV}.tar.gz" +SLOT="0" +KEYWORDS="x86" + +RDEPEND="sys-devel/perl" +LICENSE="GPL-2" + +src_install () { + mkdir -p $D/usr/{bin,lib/perl5/site_perl,share/htag/plugins,share/doc/htag-${PV},man/man1} || die + install -o root -g root -m 755 htag.pl $D/usr/bin/htag || die + cp -a docs/* $D/usr/share/doc/htag-${PV}/ || die + find $D/usr/share/doc -type f ! -path '$D/usr/share/doc/htag-${PV}/sample-config/' | xargs gzip || die + cp -a plugins/* $D/usr/share/htag/plugins/ || die + install -o root -g root -m 644 HtagPlugin/HtagPlugin.pm $D/usr/lib/perl5/site_perl || die +} |