public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Markos Chandras (hwoarang)" <hwoarang@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libfm: libfm-9999.ebuild metadata.xml ChangeLog
Date: Fri, 15 Oct 2010 00:20:09 +0000 (UTC)	[thread overview]
Message-ID: <20101015002009.2B3362004C@flycatcher.gentoo.org> (raw)

hwoarang    10/10/15 00:20:09

  Modified:             libfm-9999.ebuild metadata.xml ChangeLog
  Log:
  Add udisks useflag to choose the prefered backend and add udisks configure option. Bug #340120. Thanks to Michael Metsger <themixa@gmail.com for reporting
  
  (Portage version: 2.2_rc96/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  x11-libs/libfm/libfm-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild?r1=1.3&r2=1.4

Index: libfm-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libfm-9999.ebuild	1 Oct 2010 10:59:27 -0000	1.3
+++ libfm-9999.ebuild	15 Oct 2010 00:20:09 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v 1.3 2010/10/01 10:59:27 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v 1.4 2010/10/15 00:20:09 hwoarang Exp $
 
 EAPI="2"
 
@@ -13,11 +13,11 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
-IUSE="debug demo gnome hal udev"
+IUSE="debug demo gnome hal udev udisks"
 
 RDEPEND="dev-libs/glib:2
 	x11-libs/gtk+:2
-	sys-fs/udisks
+	udisks? ( sys-fs/udisks )
 	gnome? ( hal? ( gnome-base/gnome-mount ) )
 	gnome? ( gnome-base/gvfs[hal?,udev?] )
 	>=lxde-base/menu-cache-0.3.2"
@@ -41,7 +41,10 @@
 }
 
 src_configure() {
-	econf --sysconfdir=/etc $(use_enable debug) $(use_enable demo)
+	econf --sysconfdir=/etc \
+		$(use_enable debug) \
+		$(use_enable demo) \
+		$(use_enable udisks)
 }
 
 src_install() {



1.4                  x11-libs/libfm/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/metadata.xml?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/metadata.xml?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/metadata.xml?r1=1.3&r2=1.4

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libfm/metadata.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- metadata.xml	1 Oct 2010 10:59:27 -0000	1.3
+++ metadata.xml	15 Oct 2010 00:20:09 -0000	1.4
@@ -9,5 +9,6 @@
   <use>
     <flag name='demo'>Build demo</flag>
 	<flag name='udev'>Use sys-fs/udev to determine available devices</flag>
+	<flag name='udisks'>Use udisks backend to detect removal devices</flag>
   </use>
 </pkgmetadata>



1.15                 x11-libs/libfm/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libfm/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	1 Oct 2010 10:59:27 -0000	1.14
+++ ChangeLog	15 Oct 2010 00:20:09 -0000	1.15
@@ -1,6 +1,12 @@
 # ChangeLog for x11-libs/libfm
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.14 2010/10/01 10:59:27 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.15 2010/10/15 00:20:09 hwoarang Exp $
+
+  15 Oct 2010; Markos Chandras <hwoarang@gentoo.org> libfm-9999.ebuild,
+  metadata.xml:
+  Add udisks useflag to choose the prefered backend and add udisks configure
+  option. Bug #340120. Thanks to Michael Metsger <themixa@gmail.com for
+  reporting
 
   01 Oct 2010; Markos Chandras <hwoarang@gentoo.org> libfm-9999.ebuild,
   metadata.xml:






             reply	other threads:[~2010-10-15  0:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-15  0:20 Markos Chandras (hwoarang) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2010-10-01 10:59 [gentoo-commits] gentoo-x86 commit in x11-libs/libfm: libfm-9999.ebuild metadata.xml ChangeLog Markos Chandras (hwoarang)

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=20101015002009.2B3362004C@flycatcher.gentoo.org \
    --to=hwoarang@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