Gentoo Archives: gentoo-commits

From: "Chris Gianelloni (wolf31o2)" <wolf31o2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/hfsplusutils: hfsplusutils-1.0.4-r1.ebuild ChangeLog
Date: Tue, 05 Feb 2008 03:09:50
Message-Id: E1JMEBu-0000Ak-Ka@stork.gentoo.org
1 wolf31o2 08/02/05 03:09:46
2
3 Modified: hfsplusutils-1.0.4-r1.ebuild ChangeLog
4 Log:
5 QA cleanup: quoted variables, switched to autotools.eclass usage, and changed to using make DESTDIR="${D}" install.
6 (Portage version: 2.1.4)
7
8 Revision Changes Path
9 1.16 sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild?rev=1.16&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild?rev=1.16&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild?r1=1.15&r2=1.16
14
15 Index: hfsplusutils-1.0.4-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild,v
18 retrieving revision 1.15
19 retrieving revision 1.16
20 diff -u -r1.15 -r1.16
21 --- hfsplusutils-1.0.4-r1.ebuild 5 Feb 2008 02:48:35 -0000 1.15
22 +++ hfsplusutils-1.0.4-r1.ebuild 5 Feb 2008 03:09:46 -0000 1.16
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild,v 1.15 2008/02/05 02:48:35 wolf31o2 Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r1.ebuild,v 1.16 2008/02/05 03:09:46 wolf31o2 Exp $
28
29 WANT_AUTOMAKE=1.6
30 inherit autotools eutils libtool
31 @@ -22,34 +22,16 @@
32
33 src_unpack() {
34 unpack ${A}
35 - cd ${S}
36 - epatch ${FILESDIR}/${P}-glob.patch
37 - epatch ${FILESDIR}/${P}-errno.patch
38 - epatch ${FILESDIR}/${P}-gcc4.patch
39 - epatch ${FILESDIR}/${P}-string.patch
40 + cd "${S}"
41 + epatch "${FILESDIR}/${P}-glob.patch"
42 + epatch "${FILESDIR}/${P}-errno.patch"
43 + epatch "${FILESDIR}/${P}-gcc4.patch"
44 + epatch "${FILESDIR}/${P}-string.patch"
45 #let's avoid the Makefile.cvs since isn't working for us
46 - export WANT_AUTOCONF=2.5
47 - export WANT_AUTOMAKE=1.6
48 - aclocal
49 - autoconf
50 - autoheader
51 - automake -a
52 - libtoolize --force --copy
53 - elibtoolize
54 -}
55 -
56 -src_compile() {
57 - econf || die
58 - emake || die
59 + AM_OPTS="-a" eautoreconf
60 }
61
62 src_install() {
63 - dodir /usr/bin /usr/lib /usr/share/man
64 - make \
65 - prefix=${D}/usr \
66 - libdir=${D}/usr/lib \
67 - mandir=${D}/usr/share/man \
68 - infodir=${D}/usr/share/info \
69 - install || die
70 + make DESTDIR="${D}" install || die "make install failed"
71 newman doc/man/hfsp.man hfsp.1
72 }
73
74
75
76 1.12 sys-fs/hfsplusutils/ChangeLog
77
78 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/hfsplusutils/ChangeLog?rev=1.12&view=markup
79 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/hfsplusutils/ChangeLog?rev=1.12&content-type=text/plain
80 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-fs/hfsplusutils/ChangeLog?r1=1.11&r2=1.12
81
82 Index: ChangeLog
83 ===================================================================
84 RCS file: /var/cvsroot/gentoo-x86/sys-fs/hfsplusutils/ChangeLog,v
85 retrieving revision 1.11
86 retrieving revision 1.12
87 diff -u -r1.11 -r1.12
88 --- ChangeLog 5 Feb 2008 02:48:35 -0000 1.11
89 +++ ChangeLog 5 Feb 2008 03:09:46 -0000 1.12
90 @@ -1,6 +1,11 @@
91 # ChangeLog for sys-fs/hfsplusutils
92 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
93 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsplusutils/ChangeLog,v 1.11 2008/02/05 02:48:35 wolf31o2 Exp $
94 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/hfsplusutils/ChangeLog,v 1.12 2008/02/05 03:09:46 wolf31o2 Exp $
95 +
96 + 05 Feb 2008; Chris Gianelloni <wolf31o2@g.o>
97 + hfsplusutils-1.0.4-r1.ebuild:
98 + QA cleanup: quoted variables, switched to autotools.eclass usage, and
99 + changed to using make DESTDIR="${D}" install.
100
101 05 Feb 2008; Chris Gianelloni <wolf31o2@g.o>
102 hfsplusutils-1.0.4-r1.ebuild:
103
104
105
106 --
107 gentoo-commits@l.g.o mailing list