Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11960 - (show annotations) (download)
Mon Apr 30 16:58:36 2012 UTC (12 years, 1 month ago) by niro
File size: 1579 byte(s)
-fixed SRCFILE
1 # $Id$
2
3 PNAME="gvfs"
4 PVER="1.12.2"
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.32
13 >= dev-libs/libxml2-2.7
14 >= dev-libs/libcdio-0.83
15 >= app-arch/libarchive-2.8
16 >= media-libs/libgphoto2-2.4.11
17 >= net-libs/libsoup-2.38
18 >= net-misc/openssh-6.0
19 >= net-dns/avahi-0.6.30
20 >= net-fs/samba-3.6
21 >= sys-fs/fuse-2.8
22 >= sys-apps/dbus-1.5
23 >= sys-apps/gnome-disk-utility-3.4
24 >= sys-fs/udev-181
25 >= sys-fs/udisks2-1.94"
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 }