Gentoo Archives: gentoo-commits

From: "Markus Duft (mduft)" <mduft@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/confix: ChangeLog confix-9999.ebuild
Date: Tue, 03 Nov 2009 17:09:02
Message-Id: E1N5MsN-0001Ra-SO@stork.gentoo.org
1 mduft 09/11/03 17:08:59
2
3 Modified: ChangeLog
4 Added: confix-9999.ebuild
5 Log:
6 added live svn ebuild for upcoming confix-2.2
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.11 dev-util/confix/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/confix/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/confix/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/confix/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/confix/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 16 Oct 2009 08:18:00 -0000 1.10
23 +++ ChangeLog 3 Nov 2009 17:08:59 -0000 1.11
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/confix
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/confix/ChangeLog,v 1.10 2009/10/16 08:18:00 haubi Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/confix/ChangeLog,v 1.11 2009/11/03 17:08:59 mduft Exp $
29 +
30 +*confix-9999 (03 Nov 2009)
31 +
32 + 03 Nov 2009; Markus Duft <mduft@g.o> +files/2.2.0/exeext.patch,
33 + +confix-9999.ebuild, +files/2.2.0/ext-ac-archive.patch:
34 + added live ebuild for new confix-2.2
35
36 16 Oct 2009; Michael Haubenwallner <haubi@g.o>
37 confix-2.1.0-r3.ebuild:
38
39
40
41 1.1 dev-util/confix/confix-9999.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/confix/confix-9999.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/confix/confix-9999.ebuild?rev=1.1&content-type=text/plain
45
46 Index: confix-9999.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/confix/confix-9999.ebuild,v 1.1 2009/11/03 17:08:59 mduft Exp $
51
52 EAPI=2
53
54 inherit distutils subversion
55
56 DESCRIPTION="Confix: A Build Tool on Top of GNU Automake"
57 HOMEPAGE="http://confix.sourceforge.net"
58
59 ESVN_REPO_URI="https://confix.svn.sourceforge.net/svnroot/confix/confix/trunk"
60 ESVN_PROJECT="${PN}"
61
62 LICENSE="GPL-2"
63 SLOT="2"
64 KEYWORDS=""
65 IUSE=""
66
67 DEPEND="dev-lang/python"
68 RDEPEND="${DEPEND}
69 sys-devel/automake
70 sys-devel/libtool
71 sys-devel/autoconf-archive
72 dev-util/confix-wrapper
73 "
74
75 PYTHON_MODNAME="libconfix tests"
76
77 src_prepare() {
78 # find jni-include dirs on hpux.
79 epatch "${FILESDIR}"/2.1.0/jni-hpux.patch
80 # hack to ignore duplicate files in rescan
81 # does not apply to trunk anymore
82 # epatch "${FILESDIR}"/2.1.0/CALL_RESCAN_HACK.patch
83 # add .exe extension to TESTS
84 epatch "${FILESDIR}"/2.2.0/exeext.patch
85 # use external autoconf archive
86 epatch "${FILESDIR}"/2.2.0/ext-ac-archive.patch
87 # enable SET_FILE_PROPERTIES(file, { 'PRIVATE_CINCLUDE', 1 })
88 # does not apply to trunk anymore
89 # epatch "${FILESDIR}"/2.1.0/private-headers.patch
90 # enable fast installation rules.
91 # does not apply to trunk anymore
92 # epatch "${FILESDIR}"/2.1.0/fast-install.patch
93
94 # need to store repos in exact versioned share/confix-PV/repo
95 sed -i -e "s,'confix2','confix-${PV}'," \
96 libconfix/plugins/automake/repo_automake.py \
97 libconfix/core/machinery/repo.py \
98 || die "cannot adjust repo dir"
99
100 # adjust version-printing to have same version as share/confix-PV/repo,
101 # to ease revdep-rebuild-alike scripts for rebuilding confix-packages.
102 sed -i -e "/^CONFIX_VERSION[ ]*=/s,.*,CONFIX_VERSION = '${PV}'," \
103 libconfix/core/utils/const.py \
104 || die "cannot adjust confix version"
105 }