Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-base/gnome-vfs: ChangeLog gnome-vfs-2.24.4-r1.ebuild
Date: Thu, 24 Feb 2011 19:20:02
Message-Id: 20110224191953.5892A20054@flycatcher.gentoo.org
1 ssuominen 11/02/24 19:19:53
2
3 Modified: ChangeLog
4 Added: gnome-vfs-2.24.4-r1.ebuild
5 Log:
6 Remove USE="hal" and pass --disable-hal wrt #350516.
7
8 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.337 gnome-base/gnome-vfs/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-vfs/ChangeLog?rev=1.337&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-vfs/ChangeLog?rev=1.337&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-vfs/ChangeLog?r1=1.336&r2=1.337
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/gnome-base/gnome-vfs/ChangeLog,v
20 retrieving revision 1.336
21 retrieving revision 1.337
22 diff -u -r1.336 -r1.337
23 --- ChangeLog 24 Feb 2011 19:01:05 -0000 1.336
24 +++ ChangeLog 24 Feb 2011 19:19:53 -0000 1.337
25 @@ -1,6 +1,12 @@
26 # ChangeLog for gnome-base/gnome-vfs
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-vfs/ChangeLog,v 1.336 2011/02/24 19:01:05 tomka Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-vfs/ChangeLog,v 1.337 2011/02/24 19:19:53 ssuominen Exp $
30 +
31 +*gnome-vfs-2.24.4-r1 (24 Feb 2011)
32 +
33 + 24 Feb 2011; Samuli Suominen <ssuominen@g.o>
34 + +gnome-vfs-2.24.4-r1.ebuild:
35 + Remove USE="hal" and pass --disable-hal wrt #350516.
36
37 24 Feb 2011; Thomas Kahle <tomka@g.o> gnome-vfs-2.24.4.ebuild:
38 x86 stable per bug 353436
39
40
41
42 1.1 gnome-base/gnome-vfs/gnome-vfs-2.24.4-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-vfs/gnome-vfs-2.24.4-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-base/gnome-vfs/gnome-vfs-2.24.4-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gnome-vfs-2.24.4-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-vfs/gnome-vfs-2.24.4-r1.ebuild,v 1.1 2011/02/24 19:19:53 ssuominen Exp $
52
53 EAPI="3"
54 GCONF_DEBUG="no"
55
56 inherit autotools eutils gnome2 virtualx
57
58 DESCRIPTION="Gnome Virtual Filesystem"
59 HOMEPAGE="http://www.gnome.org/"
60
61 LICENSE="GPL-2 LGPL-2"
62 SLOT="2"
63 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE="acl avahi doc fam gnutls ipv6 kerberos samba ssl"
65
66 RDEPEND=">=gnome-base/gconf-2
67 >=dev-libs/glib-2.9.3
68 >=dev-libs/libxml2-2.6
69 app-arch/bzip2
70 gnome-base/gnome-mime-data
71 >=x11-misc/shared-mime-info-0.14
72 >=dev-libs/dbus-glib-0.71
73 acl? (
74 sys-apps/acl
75 sys-apps/attr )
76 avahi? ( >=net-dns/avahi-0.6 )
77 kerberos? ( virtual/krb5 )
78 fam? ( virtual/fam )
79 samba? ( >=net-fs/samba-3 )
80 ssl? (
81 gnutls? (
82 net-libs/gnutls
83 !gnome-extra/gnome-vfs-sftp )
84 !gnutls? (
85 >=dev-libs/openssl-0.9.5
86 !gnome-extra/gnome-vfs-sftp ) )
87 "
88 DEPEND="${RDEPEND}
89 sys-devel/gettext
90 gnome-base/gnome-common
91 >=dev-util/intltool-0.40
92 >=dev-util/pkgconfig-0.9
93 >=dev-util/gtk-doc-am-1.13
94 doc? ( >=dev-util/gtk-doc-1 )"
95
96 DOCS="AUTHORS ChangeLog HACKING NEWS README TODO"
97
98 pkg_setup() {
99 G2CONF="${G2CONF}
100 --disable-schemas-install
101 --disable-static
102 --disable-cdda
103 --disable-howl
104 $(use_enable acl)
105 $(use_enable avahi)
106 $(use_enable fam)
107 $(use_enable gnutls)
108 --disable-hal
109 $(use_enable ipv6)
110 $(use_enable kerberos krb5)
111 $(use_enable samba)
112 $(use_enable ssl openssl)"
113 # Useless ? --enable-http-neon
114
115 # this works because of the order of configure parsing
116 # so should always be behind the use_enable options
117 # foser <foser@g.o 19 Apr 2004
118 use gnutls && use ssl && G2CONF="${G2CONF} --disable-openssl"
119 }
120
121 src_prepare() {
122 gnome2_src_prepare
123
124 # Allow the Trash on afs filesystems (#106118)
125 epatch "${FILESDIR}"/${PN}-2.12.0-afs.patch
126
127 # Fix compiling with headers missing
128 epatch "${FILESDIR}"/${PN}-2.15.2-headers-define.patch
129
130 # Fix for crashes running programs via sudo
131 epatch "${FILESDIR}"/${PN}-2.16.0-no-dbus-crash.patch
132
133 # Fix automagic dependencies, upstream bug #493475
134 epatch "${FILESDIR}"/${PN}-2.20.0-automagic-deps.patch
135 epatch "${FILESDIR}"/${PN}-2.20.1-automagic-deps.patch
136
137 # Fix to identify ${HOME} (#200897)
138 # thanks to debian folks
139 epatch "${FILESDIR}"/${PN}-2.24.4-home_dir_fakeroot.patch
140
141 # Configure with gnutls-2.7, bug #253729
142 epatch "${FILESDIR}"/${PN}-2.24.0-gnutls27.patch
143
144 # Prevent duplicated volumes, bug #193083
145 epatch "${FILESDIR}"/${PN}-2.24.0-uuid-mount.patch
146
147 # Do not build tests with FEATURES="-test", bug #226221
148 epatch "${FILESDIR}"/${PN}-2.24.4-build-tests-asneeded.patch
149
150 # Disable broken test, bug #285706
151 epatch "${FILESDIR}"/${PN}-2.24.4-disable-test-async-cancel.patch
152
153 # Fix deprecated API disabling in used libraries - this is not future-proof, bug 212163
154 # upstream bug #519632
155 sed -i -e '/DISABLE_DEPRECATED/d' \
156 daemon/Makefile.am daemon/Makefile.in \
157 libgnomevfs/Makefile.am libgnomevfs/Makefile.in \
158 modules/Makefile.am modules/Makefile.in \
159 test/Makefile.am test/Makefile.in || die
160 sed -i -e 's:-DG_DISABLE_DEPRECATED:$(NULL):g' \
161 programs/Makefile.am programs/Makefile.in || die
162
163 intltoolize --force --copy --automake || die "intltoolize failed"
164 eautoreconf
165 }
166
167 src_test() {
168 unset DISPLAY
169 # Fix bug #285706
170 unset XAUTHORITY
171 Xemake check || die "tests failed"
172 }
173
174 src_install() {
175 gnome2_src_install
176 find "${ED}/usr/$(get_libdir)/gnome-vfs-2.0/modules/" -name "*.la" -delete || die
177 }