Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/libtabe: ChangeLog libtabe-0.2.6.1.2.ebuild
Date: Tue, 02 Jun 2009 09:38:57
Message-Id: E1MBQSM-0001RT-PG@stork.gentoo.org
1 flameeyes 09/06/02 09:38:54
2
3 Modified: ChangeLog
4 Added: libtabe-0.2.6.1.2.ebuild
5 Log:
6 Bump debian patch (make it semi-automatic to bump, too) so that it does not fail with --as-needed; use sequential calls to make to avoid failing with parallel make.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 app-i18n/libtabe/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/libtabe/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/libtabe/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/libtabe/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-i18n/libtabe/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 1 May 2008 14:35:10 -0000 1.13
23 +++ ChangeLog 2 Jun 2009 09:38:54 -0000 1.14
24 @@ -1,6 +1,14 @@
25 # ChangeLog for app-i18n/libtabe
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/libtabe/ChangeLog,v 1.13 2008/05/01 14:35:10 maekke Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/libtabe/ChangeLog,v 1.14 2009/06/02 09:38:54 flameeyes Exp $
30 +
31 +*libtabe-0.2.6.1.2 (02 Jun 2009)
32 +
33 + 02 Jun 2009; Diego E. Pettenò <flameeyes@g.o>
34 + +libtabe-0.2.6.1.2.ebuild:
35 + Bump debian patch (make it semi-automatic to bump, too) so that it does
36 + not fail with --as-needed; use sequential calls to make to avoid failing
37 + with parallel make.
38
39 01 May 2008; Markus Meier <maekke@g.o>
40 -files/libtabe-0.2.5-db3.patch, -libtabe-0.2.5.ebuild:
41
42
43
44 1.1 app-i18n/libtabe/libtabe-0.2.6.1.2.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/libtabe/libtabe-0.2.6.1.2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/libtabe/libtabe-0.2.6.1.2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libtabe-0.2.6.1.2.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-i18n/libtabe/libtabe-0.2.6.1.2.ebuild,v 1.1 2009/06/02 09:38:54 flameeyes Exp $
54
55 inherit eutils libtool autotools multilib versionator
56
57 DEBIAN_PV=$(replace_version_separator 3 '-')
58 DEBIAN_PATCH=${PN}_${DEBIAN_PV}.diff
59 ORIG_PV=${DEBIAN_PV%-*}
60 ORIG_P=${PN}-${ORIG_PV}
61
62 DESCRIPTION="Libtabe provides bimsphone support for xcin-2.5+"
63 HOMEPAGE="http://packages.qa.debian.org/libt/libtabe.html"
64 SRC_URI="mirror://debian/pool/main/${PN:0:4}/${PN}/${PN}_${ORIG_PV}.orig.tar.gz
65 mirror://debian/pool/main/${PN:0:4}/libtabe/${DEBIAN_PATCH}.gz"
66
67 LICENSE="BSD"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ppc ~x86"
70 IUSE="debug"
71
72 DEPEND=">=sys-libs/db-4.5
73 x11-libs/libX11"
74
75 S=${WORKDIR}/${ORIG_P}.orig
76
77 src_unpack() {
78 unpack ${A}
79 cd "${S}"
80 epatch "${WORKDIR}"/${DEBIAN_PATCH}
81 epatch "${FILESDIR}"/${ORIG_P}-fabs.patch
82
83 ln -s script/configure.in . || die
84 eautoreconf
85 }
86
87 src_compile() {
88 myconf="--with-db-inc=/usr/include
89 --with-db-lib=/usr/$(get_libdir)
90 --with-db-bin=/usr/bin
91 --with-db-name=db
92 --enable-shared
93 --disable-static
94 $(use_enable debug)"
95
96 econf ${myconf}
97
98 # We execute this serially because the Makefiles don't handle
99 # proper cross-directory references.
100 for dir in src util tsi-src; do
101 emake -C ${dir} || die "make failed"
102 done
103 }
104
105 src_install() {
106 emake DESTDIR="${D}" install || die "emake install failed."
107 dodoc doc/* || die
108 }