Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/bibutils: ChangeLog bibutils-4.7.ebuild bibutils-3.40.ebuild bibutils-4.2.ebuild
Date: Thu, 07 Jan 2010 02:21:29
Message-Id: E1NSi05-0008LT-Mz@stork.gentoo.org
1 bicatali 10/01/07 02:21:25
2
3 Modified: ChangeLog
4 Added: bibutils-4.7.ebuild
5 Removed: bibutils-3.40.ebuild bibutils-4.2.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc61/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 app-text/bibutils/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/bibutils/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/bibutils/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/bibutils/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/bibutils/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 8 Nov 2009 12:59:44 -0000 1.7
24 +++ ChangeLog 7 Jan 2010 02:21:24 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/bibutils
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/bibutils/ChangeLog,v 1.7 2009/11/08 12:59:44 patrick Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/bibutils/ChangeLog,v 1.8 2010/01/07 02:21:24 bicatali Exp $
31 +
32 +*bibutils-4.7 (07 Jan 2010)
33 +
34 + 07 Jan 2010; Sébastien Fabbro <bicatali@g.o> +bibutils-4.7.ebuild:
35 + Version bump
36
37 *bibutils-4.6 (08 Nov 2009)
38
39
40
41
42 1.1 app-text/bibutils/bibutils-4.7.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/bibutils/bibutils-4.7.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/bibutils/bibutils-4.7.ebuild?rev=1.1&content-type=text/plain
46
47 Index: bibutils-4.7.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-text/bibutils/bibutils-4.7.ebuild,v 1.1 2010/01/07 02:21:24 bicatali Exp $
52
53 EAPI=2
54 inherit toolchain-funcs
55
56 MY_P="${PN}_${PV}"
57 DESCRIPTION="Interconverts between various bibliography formats using a common XML intermediate"
58 HOMEPAGE="http://www.scripps.edu/~cdputnam/software/bibutils"
59 SRC_URI="http://www.scripps.edu/~cdputnam/software/bibutils/${MY_P}_src.tgz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 S="${WORKDIR}/${MY_P}"
67
68 src_prepare() {
69 # The custom configure script sucks, so we'll just do its
70 # job ourselves
71 rm -f Makefile configure || die "Failed to purge old Makefile"
72 sed \
73 -e "s:REPLACE_CC:CC=\"$(tc-getCC) ${CFLAGS}\":g" \
74 -e "s:REPLACE_RANLIB:RANLIB=\"$(tc-getRANLIB)\":g" \
75 -e "s:REPLACE_INSTALLDIR:\"${D}/usr/bin\":g" \
76 -e 's:REPLACE_POSTFIX::g' \
77 -e 's:make:$(MAKE):g' \
78 Makefile_start > Makefile \
79 || die "Failed to set upt Makefile"
80 }
81
82 src_install() {
83 dodir /usr/bin
84 emake install || die "emake install failed"
85 dodoc ChangeLog
86 }