Gentoo Archives: gentoo-commits

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