Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/cvsps: cvsps-3.3-r1.ebuild ChangeLog cvsps-3.3.ebuild
Date: Tue, 01 Jan 2013 12:42:23
Message-Id: 20130101124213.E44272171D@flycatcher.gentoo.org
1 slyfox 13/01/01 12:42:13
2
3 Modified: ChangeLog
4 Added: cvsps-3.3-r1.ebuild
5 Removed: cvsps-3.3.ebuild
6 Log:
7 Change prefix from '/' to '/usr' (fixes binary and man locations).
8
9 (Portage version: 2.2.0_alpha149_p11/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
10
11 Revision Changes Path
12 1.14 dev-vcs/cvsps/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvsps/ChangeLog?rev=1.14&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvsps/ChangeLog?rev=1.14&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvsps/ChangeLog?r1=1.13&r2=1.14
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/cvsps/ChangeLog,v
21 retrieving revision 1.13
22 retrieving revision 1.14
23 diff -u -r1.13 -r1.14
24 --- ChangeLog 31 Dec 2012 20:36:09 -0000 1.13
25 +++ ChangeLog 1 Jan 2013 12:42:13 -0000 1.14
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-vcs/cvsps
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cvsps/ChangeLog,v 1.13 2012/12/31 20:36:09 slyfox Exp $
30 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/cvsps/ChangeLog,v 1.14 2013/01/01 12:42:13 slyfox Exp $
32 +
33 +*cvsps-3.3-r1 (01 Jan 2013)
34 +
35 + 01 Jan 2013; Sergei Trofimovich <slyfox@g.o> +cvsps-3.3-r1.ebuild,
36 + -cvsps-3.3.ebuild:
37 + Change prefix from '/' to '/usr' (fixes binary and man locations).
38
39 *cvsps-3.3 (31 Dec 2012)
40
41
42
43
44 1.1 dev-vcs/cvsps/cvsps-3.3-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvsps/cvsps-3.3-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/cvsps/cvsps-3.3-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: cvsps-3.3-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/cvsps/cvsps-3.3-r1.ebuild,v 1.1 2013/01/01 12:42:13 slyfox Exp $
54
55 EAPI="4"
56
57 inherit eutils toolchain-funcs
58
59 DESCRIPTION="Generates patchset information from a CVS repository"
60 HOMEPAGE="http://www.catb.org/~esr/cvsps/"
61 SRC_URI="http://www.catb.org/~esr/${PN}/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris"
66 IUSE=""
67
68 RDEPEND="sys-libs/zlib"
69 DEPEND="${RDEPEND}
70 app-text/asciidoc"
71
72 src_prepare() {
73 sed -i 's/ -lz/& $(LDFLAGS)/' Makefile || die
74
75 tc-export CC
76 export prefix=${D}/usr
77 }
78
79 src_install() {
80 default
81 dodoc README
82 }