Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/star: ChangeLog star-1.5.1.ebuild
Date: Sat, 30 Jan 2010 09:00:09
Message-Id: E1Nb9BV-0000MV-1M@stork.gentoo.org
1 pva 10/01/30 09:00:05
2
3 Modified: ChangeLog star-1.5.1.ebuild
4 Log:
5 Fixed automagic deps on libacl and libattr.
6 (Portage version: 2.2_rc61/cvs/Linux i686)
7
8 Revision Changes Path
9 1.84 app-arch/star/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/star/ChangeLog?rev=1.84&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/star/ChangeLog?rev=1.84&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/star/ChangeLog?r1=1.83&r2=1.84
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-arch/star/ChangeLog,v
18 retrieving revision 1.83
19 retrieving revision 1.84
20 diff -u -r1.83 -r1.84
21 --- ChangeLog 21 Jan 2010 18:08:51 -0000 1.83
22 +++ ChangeLog 30 Jan 2010 09:00:04 -0000 1.84
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-arch/star
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-arch/star/ChangeLog,v 1.83 2010/01/21 18:08:51 billie Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-arch/star/ChangeLog,v 1.84 2010/01/30 09:00:04 pva Exp $
28 +
29 + 30 Jan 2010; Peter Volkov <pva@g.o> star-1.5.1.ebuild:
30 + Fixed automagic deps on libacl and libattr.
31
32 21 Jan 2010; Daniel Pielmeier <billie@g.o> star-1.5.1.ebuild,
33 metadata.xml:
34
35
36
37 1.3 app-arch/star/star-1.5.1.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/star/star-1.5.1.ebuild?rev=1.3&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/star/star-1.5.1.ebuild?rev=1.3&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/star/star-1.5.1.ebuild?r1=1.2&r2=1.3
42
43 Index: star-1.5.1.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/app-arch/star/star-1.5.1.ebuild,v
46 retrieving revision 1.2
47 retrieving revision 1.3
48 diff -u -r1.2 -r1.3
49 --- star-1.5.1.ebuild 21 Jan 2010 18:08:51 -0000 1.2
50 +++ star-1.5.1.ebuild 30 Jan 2010 09:00:04 -0000 1.3
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/app-arch/star/star-1.5.1.ebuild,v 1.2 2010/01/21 18:08:51 billie Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/app-arch/star/star-1.5.1.ebuild,v 1.3 2010/01/30 09:00:04 pva Exp $
56
57 EAPI="2"
58
59 @@ -13,7 +13,11 @@
60 LICENSE="GPL-2 LGPL-2.1 CDDL-Schily"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
63 -IUSE=""
64 +IUSE="acl xattr"
65 +
66 +DEPEND="acl? ( sys-apps/acl )
67 + xattr? ( sys-apps/attr )"
68 +RDEPEND="${DEPEND}"
69
70 S=${WORKDIR}/${P/_alpha[0-9][0-9]}
71
72 @@ -24,8 +28,14 @@
73 -e 's:/usr/src/linux/include:/usr/include:' \
74 DEFAULTS/Defaults.linux || die
75
76 + # Disable libacl autodependency (hacky build system, hacky fix...)
77 + use acl || sed -e 's:[$]ac_cv_header_sys_acl_h:disable acl:' \
78 + -i "${S}/autoconf/configure"
79 + use xattr || sed -e 's:[$]ac_cv_header_attr_xattr_h:disable xattr:' \
80 + -i "${S}/autoconf/configure"
81 +
82 # Create additional symlinks needed for some archs.
83 - cd "${S}"/RULES
84 + cd "${S}/RULES"
85 local t
86 for t in ppc64 s390x ; do
87 ln -s i586-linux-cc.rul ${t}-linux-cc.rul || die