Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/htag: htag-0.0.24.ebuild ChangeLog
Date: Sun, 03 Jan 2010 12:25:18
Message-Id: E1NRPWD-0008Oa-RD@stork.gentoo.org
1 tove 10/01/03 12:25:13
2
3 Modified: ChangeLog
4 Added: htag-0.0.24.ebuild
5 Log:
6 Version bump. Move perl module to vendorlib (#299230)
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 app-text/htag/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htag/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htag/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htag/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/htag/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 1 Aug 2009 17:53:54 -0000 1.13
23 +++ ChangeLog 3 Jan 2010 12:25:13 -0000 1.14
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-text/htag
26 -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/htag/ChangeLog,v 1.13 2009/08/01 17:53:54 darkside Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/htag/ChangeLog,v 1.14 2010/01/03 12:25:13 tove Exp $
30 +
31 +*htag-0.0.24 (03 Jan 2010)
32 +
33 + 03 Jan 2010; Torsten Veller <tove@g.o> +htag-0.0.24.ebuild:
34 + Version bump. Move perl module to vendorlib (#299230)
35
36 01 Aug 2009; Jeremy Olexa <darkside@g.o> -htag-0.0.22.ebuild:
37 remove old
38
39
40
41 1.1 app-text/htag/htag-0.0.24.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htag/htag-0.0.24.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htag/htag-0.0.24.ebuild?rev=1.1&content-type=text/plain
45
46 Index: htag-0.0.24.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-text/htag/htag-0.0.24.ebuild,v 1.1 2010/01/03 12:25:13 tove Exp $
51
52 inherit perl-app
53
54 DESCRIPTION="random signature maker"
55 HOMEPAGE="http://www.earth.li/projectpurple/progs/htag.html"
56 SRC_URI="http://www.earth.li/projectpurple/files/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
61 IUSE=""
62
63 RDEPEND="dev-lang/perl"
64 DEPEND="${RDEPEND}"
65
66 src_install() {
67 newbin htag.pl htag || die "newbin failed"
68
69 dodir /usr/share/doc/${PF}/
70 mv docs/sample-config "${D}"/usr/share/doc/${PF}/
71 dodoc docs/*
72 docinto example-scripts
73 dodoc example-scripts/*
74 prepalldocs
75
76 insinto /usr/share/htag/plugins
77 doins plugins/* || die "failed to install plugins"
78
79 insinto "${VENDOR_LIB}"
80 doins HtagPlugin/HtagPlugin.pm || die "failed to install perl module"
81 }