diff options
author | Torsten Veller <tove@gentoo.org> | 2010-01-03 12:25:13 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2010-01-03 12:25:13 +0000 |
commit | 86886496c39295c643d73cbbb1d22c45a98a5893 (patch) | |
tree | cbfbfea8fa159688cda4516a38678e6859e42bc3 /app-text/htag | |
parent | Transfer Prefix keywords (diff) | |
download | gentoo-2-86886496c39295c643d73cbbb1d22c45a98a5893.tar.gz gentoo-2-86886496c39295c643d73cbbb1d22c45a98a5893.tar.bz2 gentoo-2-86886496c39295c643d73cbbb1d22c45a98a5893.zip |
Version bump. Move perl module to vendorlib (#299230)
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'app-text/htag')
-rw-r--r-- | app-text/htag/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/htag/htag-0.0.24.ebuild | 34 |
2 files changed, 41 insertions, 2 deletions
diff --git a/app-text/htag/ChangeLog b/app-text/htag/ChangeLog index 14b98075dee5..17480d718fdc 100644 --- a/app-text/htag/ChangeLog +++ b/app-text/htag/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/htag -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/htag/ChangeLog,v 1.13 2009/08/01 17:53:54 darkside Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/htag/ChangeLog,v 1.14 2010/01/03 12:25:13 tove Exp $ + +*htag-0.0.24 (03 Jan 2010) + + 03 Jan 2010; Torsten Veller <tove@gentoo.org> +htag-0.0.24.ebuild: + Version bump. Move perl module to vendorlib (#299230) 01 Aug 2009; Jeremy Olexa <darkside@gentoo.org> -htag-0.0.22.ebuild: remove old diff --git a/app-text/htag/htag-0.0.24.ebuild b/app-text/htag/htag-0.0.24.ebuild new file mode 100644 index 000000000000..33d936997c87 --- /dev/null +++ b/app-text/htag/htag-0.0.24.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/htag/htag-0.0.24.ebuild,v 1.1 2010/01/03 12:25:13 tove Exp $ + +inherit perl-app + +DESCRIPTION="random signature maker" +HOMEPAGE="http://www.earth.li/projectpurple/progs/htag.html" +SRC_URI="http://www.earth.li/projectpurple/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="dev-lang/perl" +DEPEND="${RDEPEND}" + +src_install() { + newbin htag.pl htag || die "newbin failed" + + dodir /usr/share/doc/${PF}/ + mv docs/sample-config "${D}"/usr/share/doc/${PF}/ + dodoc docs/* + docinto example-scripts + dodoc example-scripts/* + prepalldocs + + insinto /usr/share/htag/plugins + doins plugins/* || die "failed to install plugins" + + insinto "${VENDOR_LIB}" + doins HtagPlugin/HtagPlugin.pm || die "failed to install perl module" +} |