Contents of /branches/magellan-next/extras/gvfs/gvfs-1.8.2-r2.smage2
Parent Directory | Revision Log
Revision 9149 -
(show annotations)
(download)
Mon Nov 7 22:39:27 2011 UTC (12 years, 11 months ago) by niro
File size: 1479 byte(s)
Mon Nov 7 22:39:27 2011 UTC (12 years, 11 months ago) by niro
File size: 1479 byte(s)
-fixed samba dependency
1 | # $Id$ |
2 | |
3 | PNAME="gvfs" |
4 | PVER="1.8.2" |
5 | PBUILD="r2" |
6 | |
7 | PCATEGORIE="gnome-base" |
8 | |
9 | DESCRIPTION="GNOME Virtual Filesystem Layer." |
10 | HOMEPAGE="http://www.gnome.org/" |
11 | |
12 | DEPEND=">= dev-libs/glib2-2.28 |
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.34 |
18 | >= net-misc/openssh-5.8 |
19 | >= net-dns/avahi-0.6.30 |
20 | >= net-fs/samba-3.6 |
21 | >= sys-fs/fuse-2.8 |
22 | >= sys-apps/dbus-1.4 |
23 | >= sys-apps/gnome-disk-utility-2.32 |
24 | >= sys-fs/udev-171" |
25 | |
26 | SDEPEND=">= dev-util/intltool-0.41 |
27 | >= dev-util/pkgconfig-0.25" |
28 | |
29 | sminclude gnome2 |
30 | |
31 | SRC_URI=( ${SRC_URI[*]} |
32 | mirror://${PNAME}/${PNAME}-${PVER}-expose-archive-backend.patch |
33 | ) |
34 | |
35 | UP2DATE="updatecmd_gnome ${PNAME}" |
36 | |
37 | src_prepare() |
38 | { |
39 | munpack ${SRCFILE} || die |
40 | cd ${SRCDIR} |
41 | |
42 | # add desktop file for the archive backend |
43 | mpatch ${PNAME}-${PVER}-expose-archive-backend.patch || die |
44 | echo "mount-archive.desktop.in" >> po/POTFILES.in || die |
45 | echo "mount-archive.desktop.in.in" >> po/POTFILES.in || die |
46 | |
47 | mautoreconf || die |
48 | } |
49 | |
50 | src_compile() |
51 | { |
52 | cd ${SRCDIR} |
53 | |
54 | gn2_configure \ |
55 | --with-dbus-service-dir=/usr/share/dbus-1/services \ |
56 | --disable-bash-completion \ |
57 | --disable-hal \ |
58 | --enable-udev \ |
59 | --enable-gudev \ |
60 | --enable-cdda \ |
61 | --enable-fuse \ |
62 | --enable-gphoto2 \ |
63 | --enable-http \ |
64 | --enable-samba \ |
65 | --enable-avahi \ |
66 | --enable-archive \ |
67 | --enable-gdu \ |
68 | --disable-afc \ |
69 | --disable-obexftp \ |
70 | --disable-gconf \ |
71 | --disable-keyring \ |
72 | --disable-gtk-doc \ |
73 | || die |
74 | |
75 | mmake || die |
76 | } |