Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/htag: htag-0.0.24-r1.ebuild ChangeLog
Date: Thu, 29 Aug 2013 14:45:42
Message-Id: 20130829144535.8121D2004C@flycatcher.gentoo.org
1 idella4 13/08/29 14:45:35
2
3 Modified: ChangeLog
4 Added: htag-0.0.24-r1.ebuild
5 Log:
6 revbump -> EAPI 5
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.22 app-text/htag/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htag/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htag/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htag/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/htag/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 2 Feb 2012 07:23:30 -0000 1.21
24 +++ ChangeLog 29 Aug 2013 14:45:35 -0000 1.22
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/htag
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/htag/ChangeLog,v 1.21 2012/02/02 07:23:30 jlec Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/htag/ChangeLog,v 1.22 2013/08/29 14:45:35 idella4 Exp $
31 +
32 +*htag-0.0.24-r1 (29 Aug 2013)
33 +
34 + 29 Aug 2013; Ian Delaney <idella4@g.o> +htag-0.0.24-r1.ebuild:
35 + revbump -> EAPI 5
36
37 02 Feb 2012; Justin Lecher <jlec@g.o> -htag-0.0.23.ebuild,
38 htag-0.0.24.ebuild:
39
40
41
42 1.1 app-text/htag/htag-0.0.24-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htag/htag-0.0.24-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htag/htag-0.0.24-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: htag-0.0.24-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-text/htag/htag-0.0.24-r1.ebuild,v 1.1 2013/08/29 14:45:35 idella4 Exp $
52
53 EAPI=5
54
55 inherit perl-module
56
57 DESCRIPTION="random signature maker"
58 HOMEPAGE="http://www.earth.li/projectpurple/progs/htag.html"
59 SRC_URI="http://www.earth.li/projectpurple/files/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
64 IUSE=""
65
66 RDEPEND=""
67 DEPEND="${RDEPEND}"
68
69 src_install() {
70 newbin htag.pl htag || die "newbin failed"
71 # establish "${D}"usr/share/doc/${PF}, mv 2 folders in 1 line
72 perl-module_src_install
73 mv ./{example-scripts,docs/sample-config/} "${D}"usr/share/doc/${PF}/ || die
74 dodoc docs/{MACRO_DESCRIPTION,README}
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 }