Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vasil Yonkov (e0a8f89d6ccdb57aca83e1a330d573d901c1605f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vasil Yonkov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vasil Yonkov (e0a8f89d6ccdb57aca83e1a330d573d901c1605f)
  • Date: Tue, 6 Apr 2010 10:18:51 -0500

GIT changes to master grimoire by Vasil Yonkov <spirtbrat AT sourcemage.org>:

audio-players/rhythmbox/BUILD | 6 +-
audio-players/rhythmbox/CONFIGURE | 10 +++
audio-players/rhythmbox/DEPENDS | 83
+++++++++++++++++++++++++++++--
audio-players/rhythmbox/HISTORY | 6 ++
gnome2-libs/gnome-control-center/DEPENDS | 6 --
gnome2-libs/gnome-control-center/HISTORY | 4 +
gnome2-libs/gnome-python2/BUILD | 5 +
gnome2-libs/gnome-python2/CONFIGURE | 7 ++
gnome2-libs/gnome-python2/DEPENDS | 21 ++++---
gnome2-libs/gnome-python2/HISTORY | 4 +
gnome2-libs/gnome-sharp/DEPENDS | 3 -
gnome2-libs/gnome-sharp/HISTORY | 3 +
12 files changed, 134 insertions(+), 24 deletions(-)

New commits:
commit e0a8f89d6ccdb57aca83e1a330d573d901c1605f
Author: Vasil Yonkov <spirtbrat AT sourcemage.org>
Commit: Vasil Yonkov <spirtbrat AT sourcemage.org>

gnome-python2: gnomevfsbonobo, pyvfsmodule modules moved to CONFIGURE

commit 8e939871689369bcf5258249f1e74bd2c6a39fca
Author: Vasil Yonkov <spirtbrat AT sourcemage.org>
Commit: Vasil Yonkov <spirtbrat AT sourcemage.org>

rhythmbox: added options RHYTHMBOX_DAAP, RHYTHMBOX_FM,
optionally depends on libnotify, libmusicbrainz3, lirc,
gtk-doc,
rarian, python (+pygtk2 +gst-python), vala, GECKO, hal, libmtp,
libgnome-keyring, avahi, brasero, nautilus-cd-burner

commit ae3dba906da477ec9727b4baaef7511eb1043777
Author: Vasil Yonkov <spirtbrat AT sourcemage.org>
Commit: Vasil Yonkov <spirtbrat AT sourcemage.org>

gnome-sharp: removed dependency on gconf2, libgnomeprintui, gnome-panel

commit b03083924ffa151fb95ee060826d0837c1bfc3c4
Author: Vasil Yonkov <spirtbrat AT sourcemage.org>
Commit: Vasil Yonkov <spirtbrat AT sourcemage.org>

gnome-control-center: removed dependency on eel2, gnome-panel,
depends on libxext, need libcanberra with GTK

diff --git a/audio-players/rhythmbox/BUILD b/audio-players/rhythmbox/BUILD
index 8595cb7..e42c295 100755
--- a/audio-players/rhythmbox/BUILD
+++ b/audio-players/rhythmbox/BUILD
@@ -1,5 +1,7 @@
-OPTS="$RHYTHMBOX_MMKEY \
- $OPTS" &&
+OPTS="$RHYTHMBOX_MMKEY \
+ $RHYTHMBOX_DAAP \
+ $RHYTHMBOX_FM \
+ $OPTS" &&

make_single &&
default_build &&
diff --git a/audio-players/rhythmbox/CONFIGURE
b/audio-players/rhythmbox/CONFIGURE
index a48bc83..cdb804d 100755
--- a/audio-players/rhythmbox/CONFIGURE
+++ b/audio-players/rhythmbox/CONFIGURE
@@ -1,2 +1,10 @@
config_query_option RHYTHMBOX_MMKEY "Enable Multimedia Keys support?" y \
- '--enable-mmkeys' '--disable-mmkeys'
+ '--enable-mmkeys' '--disable-mmkeys'
&&
+
+config_query_option RHYTHMBOX_DAAP \
+ "Enable Digital Audio Access Protocol sharing" y \
+ "--enable-daap" "--disable-daap" &&
+
+config_query_option RHYTHMBOX_FM \
+ "Enable FM radio support" y \
+ "--enable-fm-radio" "--disable-fm-radio"
diff --git a/audio-players/rhythmbox/DEPENDS b/audio-players/rhythmbox/DEPENDS
index 04a0ca3..ae91e78 100755
--- a/audio-players/rhythmbox/DEPENDS
+++ b/audio-players/rhythmbox/DEPENDS
@@ -5,7 +5,82 @@ depends dbus-glib &&
depends -sub PROFILES gnome-media2 &&
depends libsoup &&

-optional_depends "libgpod" \
- "--with-ipod" \
- "--without-ipod" \
- "for Apple iPod support"
+optional_depends libnotify \
+ "--enable-libnotify" \
+ "--disable-libnotify" \
+ "for libnotify support" &&
+
+optional_depends libmusicbrainz3 \
+ "--enable-musicbrainz" \
+ "--disable-musicbrainz" \
+ "for MusicBrainz support" &&
+
+optional_depends lirc \
+ "--enable-lirc" \
+ "--disable-lirc" \
+ "for lirc support" &&
+
+optional_depends gtk-doc \
+ "--enable-gtk-doc" \
+ "--disable-gtk-doc" \
+ "to build documentation" &&
+
+optional_depends rarian \
+ "--enable-scrollkeeper" \
+ "--disable-scrollkeeper" \
+ "to register with rarian" &&
+
+optional_depends python \
+ "--enable-python" \
+ "--disable-python" \
+ "+pygtk2, +gst-python, for python support" &&
+
+if is_depends_enabled $SPELL python; then
+ depends pygtk2 &&
+ depends gst-python
+fi
+
+optional_depends vala \
+ "--enable-vala" \
+ "--disable-vala" \
+ "for Vala plugin support" &&
+
+optional_depends GECKO \
+ "--enable-browser-plugin" \
+ "--disable-browser-plugin" \
+ "for iTunes detection browser plugin" &&
+
+optional_depends hal \
+ "--with-hal" \
+ "--without-hal" \
+ "for HAL support" &&
+
+optional_depends "libgpod" \
+ "--with-ipod" \
+ "--without-ipod" \
+ "for Apple iPod support" &&
+
+optional_depends libmtp \
+ "--with-mtp" \
+ "--without-mtp" \
+ "for MTP support" &&
+
+optional_depends libgnome-keyring \
+ "--with-gnome-keyring" \
+ "--without-gnome-keyring" \
+ "for gnome-keyring support" &&
+
+optional_depends avahi \
+ "--with-mdns=avahi" \
+ "--with-mdns=no" \
+ "for avahi support" &&
+
+optional_depends brasero \
+ "--with-libbrasero-media" \
+ "--without-libbrasero-media" \
+ "for libbrasero-media support" &&
+
+optional_depends nautilus-cd-burner \
+ "--with-libnautilus-burn" \
+ "--without-libnautilus-burn" \
+ "for libnautilus-burn support"
diff --git a/audio-players/rhythmbox/HISTORY b/audio-players/rhythmbox/HISTORY
index 88f1f4f..cd94ec5 100644
--- a/audio-players/rhythmbox/HISTORY
+++ b/audio-players/rhythmbox/HISTORY
@@ -1,3 +1,9 @@
+2010-04-06 Vasil Yonkov <spirtbrat AT sourcemage.org>
+ * BUILD, CONFIGURE: added RHYTHMBOX_DAAP, RHYTHMBOX_FM
+ * DEPENDS: added options for libnotify, libmusicbrainz3, lirc,
+ gtk-doc, rarian, python (+pygtk2 +gst-python), vala, GECKO,
+ hal, libmtp, libgnome-keyring, avahi, brasero, nautilus-cd-burner
+
2010-03-28 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 0.12.8

diff --git a/gnome2-libs/gnome-control-center/DEPENDS
b/gnome2-libs/gnome-control-center/DEPENDS
index 7e7fcfa..b3bb9ec 100755
--- a/gnome2-libs/gnome-control-center/DEPENDS
+++ b/gnome2-libs/gnome-control-center/DEPENDS
@@ -4,7 +4,7 @@ depends libxscrnsaver &&
depends libxxf86misc &&
depends libxft &&
depends libxcursor &&
-
+depends libxext &&
depends libxml2 &&
depends glib2 &&
depends gtk+2 &&
@@ -13,16 +13,14 @@ depends gnome-desktop &&
depends gnome-menus &&
depends librsvg2 &&
depends pango &&
-depends eel2 &&
-depends gnome-panel &&
depends dbus &&
depends dbus-glib &&
depends metacity &&
depends gnome-settings-daemon &&
depends libxklavier &&
depends libgnomekbd &&
-depends libcanberra &&
depends desktop-file-utils &&
+depends -sub GTK libcanberra &&
depends unique &&

optional_depends evolution-data-server \
diff --git a/gnome2-libs/gnome-control-center/HISTORY
b/gnome2-libs/gnome-control-center/HISTORY
index 45decbc..4edb928 100644
--- a/gnome2-libs/gnome-control-center/HISTORY
+++ b/gnome2-libs/gnome-control-center/HISTORY
@@ -1,3 +1,7 @@
+2010-04-06 Vasil Yonkov <spirtbrat AT sourcemage.org>
+ * DEPENDS: removed eel2, gnome-panel, added libxext,
+ need libcanberra with GTK
+
2010-03-30 Vasil Yonkov <spirtbrat AT sourcemage.org>
* DETAILS: updated spell to 2.30.0

diff --git a/gnome2-libs/gnome-python2/BUILD b/gnome2-libs/gnome-python2/BUILD
new file mode 100755
index 0000000..f8c9286
--- /dev/null
+++ b/gnome2-libs/gnome-python2/BUILD
@@ -0,0 +1,5 @@
+OPTS="$GPYTHON2_VFSBONOBO \
+ $GPYTHON2_PYVFS \
+ $OPTS" &&
+
+default_build
diff --git a/gnome2-libs/gnome-python2/CONFIGURE
b/gnome2-libs/gnome-python2/CONFIGURE
new file mode 100755
index 0000000..44b011f
--- /dev/null
+++ b/gnome2-libs/gnome-python2/CONFIGURE
@@ -0,0 +1,7 @@
+config_query_option GPYTHON2_VFSBONOBO \
+ "Build gnomevfsbonobo module?" y \
+ "--enable-gnomevfsbonobo" "--disable-gnomevfsbonobo" &&
+
+config_query_option GPYTHON2_PYVFS \
+ "Build pyvfsmodule [bridge] module?" y \
+ "--enable-pyvfsmodule" "--disable-pyvfsmodule"
diff --git a/gnome2-libs/gnome-python2/DEPENDS
b/gnome2-libs/gnome-python2/DEPENDS
index 0449700..75723b6 100755
--- a/gnome2-libs/gnome-python2/DEPENDS
+++ b/gnome2-libs/gnome-python2/DEPENDS
@@ -1,3 +1,14 @@
+if list_find "$GPYTHON2_VFSBONOBO" "--enable-gnomevfsbonobo"; then
+ depends gnome-vfs2 &&
+ depends libbonobo &&
+ depends pyorbit
+fi &&
+
+if list_find "$GPYTHON2_PYVFS" "--enable-pyvfsmodule"; then
+ depends gnome-vfs2 &&
+ depends libbonobo
+fi &&
+
depends pygobject &&
depends pygtk2 &&

@@ -26,16 +37,6 @@ optional_depends gnome-vfs2 \
"--disable-gnomevfs" \
"to build gnomevfs module" &&

-optional_depends gnome-vfs2 \
- "--enable-gnomevfsbonobo" \
- "--disable-gnomevfsbonobo" \
- "+libbonobo +pyorbit, to build gnomevfsbonobo module" &&
-
-optional_depends gnome-vfs2 \
- "--enable-pyvfsmodule" \
- "--disable-pyvfsmodule" \
- "+libbonobo, to build pyvfsmodule module" &&
-
optional_depends gconf2 \
"--enable-gconf" \
"--disable-gconf" \
diff --git a/gnome2-libs/gnome-python2/HISTORY
b/gnome2-libs/gnome-python2/HISTORY
index a9567c9..88b8ef4 100644
--- a/gnome2-libs/gnome-python2/HISTORY
+++ b/gnome2-libs/gnome-python2/HISTORY
@@ -1,3 +1,7 @@
+2010-04-06 Vasil Yonkov <spirtbrat AT sourcemage.org>
+ * BUILD, CONFIGURE: added
+ * DEPENDS: gnomevfsbonobo, pyvfsmodule modules moved to CONFIGURE
+
2010-04-05 Vasil Yonkov <spirtbrat AT sourcemage.org>
* DEPENDS: added optional dependencies for all modules

diff --git a/gnome2-libs/gnome-sharp/DEPENDS b/gnome2-libs/gnome-sharp/DEPENDS
index 2e79c58..8772510 100755
--- a/gnome2-libs/gnome-sharp/DEPENDS
+++ b/gnome2-libs/gnome-sharp/DEPENDS
@@ -5,10 +5,7 @@ depends mono &&
depends gtk-sharp-2 &&
depends glib2 &&
depends gtk+2 &&
-depends gconf2 &&
depends libgnomecanvas &&
depends libgnomeui &&
-depends libgnomeprintui &&
-depends gnome-panel &&
depends libart_lgpl &&
depends gnome-vfs2
diff --git a/gnome2-libs/gnome-sharp/HISTORY b/gnome2-libs/gnome-sharp/HISTORY
index 9587066..0029a8d 100644
--- a/gnome2-libs/gnome-sharp/HISTORY
+++ b/gnome2-libs/gnome-sharp/HISTORY
@@ -1,3 +1,6 @@
+2010-04-06 Vasil Yonkov <spirtbrat AT sourcemage.org>
+ * DEPENDS: removed gconf2, libgnomeprintui, gnome-panel
+
2009-03-19 Eric Sandall <sandalle AT sourcemage.org>
* PRE_BUILD: Fix compilation with libtool 2.2.6a (Bug #15126)




  • [SM-Commit] GIT changes to master grimoire by Vasil Yonkov (e0a8f89d6ccdb57aca83e1a330d573d901c1605f), Vasil Yonkov, 04/06/2010

Archive powered by MHonArc 2.6.24.

Top of Page