Magellan Linux

Contents of /trunk/extras/gvfs/gvfs-1.14.0-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13417 - (show annotations) (download)
Sat Oct 6 19:47:21 2012 UTC (11 years, 8 months ago) by niro
File size: 1578 byte(s)
auto added: ver bump to 1.14.0-r1
1 # $Id$
2
3 PNAME="gvfs"
4 PVER="1.14.0"
5 PBUILD="r1"
6
7 PCAT="gnome-base"
8
9 DESCRIPTION="GNOME Virtual Filesystem Layer."
10 HOMEPAGE="http://www.gnome.org/"
11
12 DEPEND=">= dev-libs/glib2-2.34
13 >= dev-libs/libxml2-2.7
14 >= dev-libs/libcdio-0.83
15 >= app-arch/libarchive-2.8
16 >= media-libs/libgphoto2-2.4.13
17 >= net-libs/libsoup-2.40
18 >= net-misc/openssh-6.0
19 >= net-dns/avahi-0.6.31
20 >= net-fs/samba-3.6
21 >= sys-fs/fuse-2.8
22 >= sys-apps/dbus-1.6
23 >= sys-apps/gnome-disk-utility-3.6
24 >= sys-fs/udev-185
25 >= sys-fs/udisks2-2.0"
26
27 SDEPEND=">= dev-util/intltool-0.50
28 >= dev-util/pkgconfig-0.25"
29
30 SRCFILE="${PNAME}-${PVER}.tar.xz"
31
32 sminclude gnome2
33
34 SRC_URI=( ${SRC_URI[*]}
35 mirror://${PNAME}/${PNAME}-1.8.2-expose-archive-backend.patch
36 )
37
38 UP2DATE="updatecmd_gnome ${PNAME}"
39
40 src_prepare()
41 {
42 munpack ${SRCFILE} || die
43 cd ${SRCDIR}
44
45 # add desktop file for the archive backend
46 mpatch ${PNAME}-1.8.2-expose-archive-backend.patch || die
47 echo "mount-archive.desktop.in" >> po/POTFILES.in || die
48 echo "mount-archive.desktop.in.in" >> po/POTFILES.in || die
49
50 mautoreconf || die
51 }
52
53 src_compile()
54 {
55 cd ${SRCDIR}
56
57 gn2_configure \
58 --with-dbus-service-dir=/usr/share/dbus-1/services \
59 --disable-bash-completion \
60 --disable-schemas-compile \
61 --disable-hal \
62 --enable-udev \
63 --enable-gudev \
64 --enable-cdda \
65 --enable-fuse \
66 --enable-gphoto2 \
67 --enable-http \
68 --enable-samba \
69 --enable-avahi \
70 --enable-archive \
71 --enable-gdu \
72 --enable-udisks2 \
73 --disable-afp \
74 --disable-obexftp \
75 --disable-gconf \
76 --disable-keyring \
77 --disable-gtk-doc \
78 || die
79
80 mmake || die
81 }