From: "Alexandre Rostovtsev" <tetromino@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gnome:master commit in: gnome-base/gvfs/
Date: Thu, 27 Dec 2012 23:02:45 +0000 (UTC) [thread overview]
Message-ID: <1356649348.7ef5c7cad9b8000a00f23dc84434e57b043a52bf.tetromino@gentoo> (raw)
commit: 7ef5c7cad9b8000a00f23dc84434e57b043a52bf
Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 27 23:02:28 2012 +0000
Commit: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
CommitDate: Thu Dec 27 23:02:28 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=7ef5c7ca
gnome-base/gvfs: sync with gx86, add metadata.xml
---
gnome-base/gvfs/gvfs-9999.ebuild | 65 ++++++++++++++++++++------------------
gnome-base/gvfs/metadata.xml | 28 ++++++++++++++++
2 files changed, 62 insertions(+), 31 deletions(-)
diff --git a/gnome-base/gvfs/gvfs-9999.ebuild b/gnome-base/gvfs/gvfs-9999.ebuild
index 7a6a42e..f8516fa 100644
--- a/gnome-base/gvfs/gvfs-9999.ebuild
+++ b/gnome-base/gvfs/gvfs-9999.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="4"
+EAPI="5"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
@@ -36,8 +36,8 @@ RDEPEND=">=dev-libs/glib-2.33.12:2
sys-apps/dbus
dev-libs/libxml2:2
net-misc/openssh
- afp? ( >=dev-libs/libgcrypt-1.2.2 )
- archive? ( app-arch/libarchive )
+ afp? ( >=dev-libs/libgcrypt-1.2.2:= )
+ archive? ( app-arch/libarchive:= )
avahi? ( >=net-dns/avahi-0.6 )
bluetooth? (
>=app-mobilephone/obex-data-server-0.4.5
@@ -51,7 +51,7 @@ RDEPEND=">=dev-libs/glib-2.33.12:2
=sys-apps/gnome-disk-utility-3.0.2-r300
=sys-apps/gnome-disk-utility-3.0.2-r200 ) )
gnome-keyring? ( app-crypt/libsecret )
- gphoto2? ( >=media-libs/libgphoto2-2.4.7 )
+ gphoto2? ( >=media-libs/libgphoto2-2.4.7:= )
gtk? ( >=x11-libs/gtk+-3.0:3 )
http? ( >=net-libs/libsoup-gnome-2.26.0 )
ios? (
@@ -60,24 +60,48 @@ RDEPEND=">=dev-libs/glib-2.33.12:2
samba? ( >=net-fs/samba-3.4.6[smbclient] )
systemd? ( sys-apps/systemd )
udev? (
- virtual/udev[gudev]
- cdda? ( >=dev-libs/libcdio-0.78.2[-minimal] ) )
+ cdda? ( >=dev-libs/libcdio-0.78.2[-minimal] )
+ virtual/udev[gudev] )
udisks? ( >=sys-fs/udisks-1.97:2[systemd?] )"
DEPEND="${RDEPEND}
dev-libs/libxslt
>=dev-util/intltool-0.40
virtual/pkgconfig
+ dev-util/gdbus-codegen
dev-util/gtk-doc-am
doc? ( >=dev-util/gtk-doc-1 )"
REQUIRED_USE="cdda? ( udev )"
-pkg_setup() {
+src_prepare() {
+ if use archive; then
+ epatch "${FILESDIR}"/${PN}-1.2.2-expose-archive-backend.patch
+ echo mount-archive.desktop.in >> po/POTFILES.in
+ echo mount-archive.desktop.in.in >> po/POTFILES.in
+ fi
+
+ if ! use udev; then
+ sed -e 's/gvfsd-burn/ /' \
+ -e 's/burn.mount.in/ /' \
+ -e 's/burn.mount/ /' \
+ -i daemon/Makefile.am || die
+ fi
+
+ if use archive || ! use udev; then
+ # libgcrypt.m4 needed for eautoreconf, bug #399043
+ mv "${WORKDIR}/libgcrypt.m4" "${S}"/ || die
+
+ [[ ${PV} = 9999 ]] || AT_M4DIR=. eautoreconf
+ fi
+
+ gnome2_src_prepare
+}
+
+src_configure() {
# --enable-documentation installs man pages
G2CONF="${G2CONF}
--disable-bash-completion
--disable-hal
- --disable-schemas-compile
--with-dbus-service-dir="${EPREFIX}"/usr/share/dbus-1/services
--enable-documentation
$(use_enable afp)
@@ -86,6 +110,7 @@ pkg_setup() {
$(use_enable bluetooth obexftp)
$(use_enable bluray)
$(use_enable cdda)
+ $(use_enable doc gtk-doc)
$(use_enable fuse)
$(use_enable gdu)
$(use_enable gphoto2)
@@ -98,29 +123,7 @@ pkg_setup() {
$(use_enable samba)
$(use_enable systemd libsystemd-login)
$(use_enable udisks udisks2)"
-}
-
-src_prepare() {
- if use archive; then
- epatch "${FILESDIR}"/${PN}-1.2.2-expose-archive-backend.patch
- echo mount-archive.desktop.in >> po/POTFILES.in
- echo mount-archive.desktop.in.in >> po/POTFILES.in
- fi
-
- if ! use udev; then
- sed -i -e 's/gvfsd-burn/ /' daemon/Makefile.am || die
- sed -i -e 's/burn.mount.in/ /' daemon/Makefile.am || die
- sed -i -e 's/burn.mount/ /' daemon/Makefile.am || die
- fi
-
- if use archive || ! use udev; then
- # libgcrypt.m4 needed for eautoreconf, bug #399043
- mv "${WORKDIR}/libgcrypt.m4" "${S}"/ || die
-
- [[ ${PV} = 9999 ]] || AT_M4DIR=. eautoreconf
- fi
-
- gnome2_src_prepare
+ gnome2_src_configure
}
src_install() {
diff --git a/gnome-base/gvfs/metadata.xml b/gnome-base/gvfs/metadata.xml
new file mode 100644
index 0000000..46acb9c
--- /dev/null
+++ b/gnome-base/gvfs/metadata.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>gnome</herd>
+<longdescription lang="en">
+gvfs is a userspace virtual filesystem designed to work with the i/o
+abstractions of gio (a library availible in glib >= 2.15.1). It
+installs several modules that are automatically used by applications
+using the APIs of libgio. There is also fuse support that allows
+applications not using gio to access the gvfs filesystems.
+</longdescription>
+<use>
+ <flag name='afp'>Enables support for accessing AFP (Apple Filing Protocol)
+ network shares</flag>
+ <flag name='archive'>Enables support for accessing files in archives
+ transparently via <pkg>app-arch/libarchive</pkg></flag>
+ <flag name='bluray'>Enable playback of Blu-ray filesystems using <pkg>media-libs/libbluray</pkg></flag>
+ <flag name='fuse'>Enables fuse mount points in $HOME/.gvfs for legacy
+ application access</flag>
+ <flag name="gdu">Enable <pkg>sys-apps/gnome-disk-utility</pkg> integration</flag>
+ <flag name="http">Enable the HTTP/DAV backend using <pkg>net-libs/libsoup-gnome</pkg></flag>
+ <flag name="systemd">Use <pkg>sys-apps/systemd</pkg> seat information
+ for tracking owners of removable volumes</flag>
+ <flag name="udev">Enable udev base replacement code for cdda feature</flag>
+ <flag name="udisks">Enable volume monitoring using <pkg>sys-fs/udisks</pkg></flag>
+</use>
+</pkgmetadata>
+
next reply other threads:[~2012-12-27 23:02 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-27 23:02 Alexandre Rostovtsev [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-09-14 8:44 [gentoo-commits] proj/gnome:master commit in: gnome-base/gvfs/ Mart Raudsepp
2018-09-10 21:33 Gilles Dartiguelongue
2018-07-31 14:34 Sobhan Mohammadpour
2018-02-14 19:56 Sobhan Mohammadpour
2018-01-12 13:20 Dennis Lamm
2015-10-13 20:03 Ole Reifschneider
2015-05-17 15:39 Gilles Dartiguelongue
2014-12-22 23:11 Gilles Dartiguelongue
2014-11-23 22:27 Gilles Dartiguelongue
2014-04-21 14:40 Gilles Dartiguelongue
2014-02-12 20:58 Gilles Dartiguelongue
2013-12-18 22:49 Gilles Dartiguelongue
2013-03-27 0:37 Priit Laes
2013-03-25 9:46 Nirbheek Chauhan
2013-01-22 8:12 Alexandre Rostovtsev
2012-09-25 15:59 Alexandre Rostovtsev
2012-09-22 15:54 Nirbheek Chauhan
2012-04-24 3:58 Alexandre Restovtsev
2011-10-18 7:57 Alexandre Restovtsev
2011-06-27 20:25 Alexandre Restovtsev
2011-05-30 17:43 Nirbheek Chauhan
2011-04-27 22:22 Gilles Dartiguelongue
2011-04-10 18:04 Gilles Dartiguelongue
2011-04-05 0:57 Nirbheek Chauhan
2011-03-22 1:18 Nirbheek Chauhan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1356649348.7ef5c7cad9b8000a00f23dc84434e57b043a52bf.tetromino@gentoo \
--to=tetromino@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox