Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Robin Cook (7e49fe8657781e4e7f44e78cbc3dcddc76943cf1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Robin Cook <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Robin Cook (7e49fe8657781e4e7f44e78cbc3dcddc76943cf1)
  • Date: Fri, 2 Jul 2010 09:58:44 -0500

GIT changes to master grimoire by Robin Cook <rcook AT wyrms.net>:

ChangeLog | 3 +++
gnome2-apps/gnote/DEPENDS | 2 +-
gnome2-apps/gnote/HISTORY | 1 +
utils/dbus-c++/DEPENDS | 18 ++++++++++++++++++
utils/dbus-c++/DETAILS | 23 +++++++++++++++++++++++
utils/dbus-c++/HISTORY | 3 +++
utils/dbus-c++/PREPARE | 2 ++
utils/dbus-c++/PRE_BUILD | 6 ++++++
8 files changed, 57 insertions(+), 1 deletion(-)

New commits:
commit fc2335e072eb6b0c0f657ececb5ce407dffab815
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

gnote: changed depends on dbus to dbus-c++

commit fd3090deaea570f1189c2f7f6f96db0f443448e4
Author: Robin Cook <rcook AT wyrms.net>
Commit: Robin Cook <rcook AT wyrms.net>

dbus-c++: new spell: C++ API for DBUS

diff --git a/ChangeLog b/ChangeLog
index dfcaaa9..64fa827 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2010-07-02 Robin Cook <rcook AT wyrms.net>
+ * utils/dbus-c++: new spell, C++ API for DBUS
+
2010-07-01 Ladislav Hagara <hgr AT vabo.cz>
* audio-players/minitunes: new spell, just another music player

diff --git a/gnome2-apps/gnote/DEPENDS b/gnome2-apps/gnote/DEPENDS
index 6736d1b..e0a3efa 100755
--- a/gnome2-apps/gnote/DEPENDS
+++ b/gnome2-apps/gnote/DEPENDS
@@ -15,7 +15,7 @@ optional_depends libpanelappletmm \
"" \
"For GNOME panel applet" &&

-optional_depends dbus \
+optional_depends dbus-c++ \
"--enable-dbus" \
"--disable-dbus" \
"to compile with dbus support" &&
diff --git a/gnome2-apps/gnote/HISTORY b/gnome2-apps/gnote/HISTORY
index 12c081c..aec1124 100644
--- a/gnome2-apps/gnote/HISTORY
+++ b/gnome2-apps/gnote/HISTORY
@@ -1,5 +1,6 @@
2010-07-02 Robin Cook <rcook AT wyrms.net>
* DETAILS: updated VERSION to 0.7.2
+ * DEPENDS: changed dbus to dbus-c++
* PRE_BUILD: added to apply deprecate-GTK.patch
http://patch-tracker.debian.org/package/gnote/0.7.1-1.1

diff --git a/utils/dbus-c++/DEPENDS b/utils/dbus-c++/DEPENDS
new file mode 100755
index 0000000..a800aff
--- /dev/null
+++ b/utils/dbus-c++/DEPENDS
@@ -0,0 +1,18 @@
+depends g++ &&
+depends dbus &&
+depends expat &&
+
+optional_depends glib2 \
+ "--enable-glib" \
+ "--disable-glib" \
+ "Enable glib support?" &&
+
+optional_depends ecore \
+ "--enable-ecore" \
+ "--disable-ecore" \
+ "Enable ecore support?" &&
+
+optional_depends doxygen \
+ "--enable-doxygen-docs" \
+ "--disable-doxygen-docs" \
+ "Generate doxygen docs?"
diff --git a/utils/dbus-c++/DETAILS b/utils/dbus-c++/DETAILS
new file mode 100755
index 0000000..482c3e3
--- /dev/null
+++ b/utils/dbus-c++/DETAILS
@@ -0,0 +1,23 @@
+ SPELL=dbus-c++
+ if [[ $DBUS_CPP_AUTOUPDATE == y ]]; then
+ VERSION=$(date +%Y%m%d)
+ SOURCE=$SPELL-$VERSION.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+ else
+ VERSION=git
+ SOURCE=$SPELL-git.tar.bz2
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-git
+ fi
+ SOURCE_URL[0]=git://gitorious.org/dbus-cplusplus/mainline.git
+ SOURCE_IGNORE=volatile
+ FORCE_DOWNLOAD=1
+# SOURCE_GPG="gurus.gpg:${SOURCE}.sig:WORKS_FOR_ME"
+
WEB_SITE=http://sourceforge.net/apps/mediawiki/dbus-cplusplus/index.php?title=Main_Page
+ ENTERED=20100702
+ LICENSE[0]=GPL
+ KEYWORDS="utils"
+ SHORT="C++ API for D-BUS"
+cat << EOF
+dbus-c++ attempts to provide a C++ API for D-BUS. The library has a glib/gtk
+and an Ecore mainloop integration. It also offers an optional own main loop.
+EOF
diff --git a/utils/dbus-c++/HISTORY b/utils/dbus-c++/HISTORY
new file mode 100644
index 0000000..29c46c1
--- /dev/null
+++ b/utils/dbus-c++/HISTORY
@@ -0,0 +1,3 @@
+2010-07-02 Robin Cook <rcook AT wyrms.net>
+ * new spell: DETAILS, DEPENDS, PREPARE, PRE_BUILD
+
diff --git a/utils/dbus-c++/PREPARE b/utils/dbus-c++/PREPARE
new file mode 100755
index 0000000..10728e7
--- /dev/null
+++ b/utils/dbus-c++/PREPARE
@@ -0,0 +1,2 @@
+config_query DBUS_CPP_AUTOUPDATE "Automatically update on every system
update?" n
+
diff --git a/utils/dbus-c++/PRE_BUILD b/utils/dbus-c++/PRE_BUILD
new file mode 100755
index 0000000..cd9bd9e
--- /dev/null
+++ b/utils/dbus-c++/PRE_BUILD
@@ -0,0 +1,6 @@
+default_pre_build &&
+
+cd $SOURCE_DIRECTORY &&
+
+NOCONFIGURE=Y ./autogen.sh
+



  • [SM-Commit] GIT changes to master grimoire by Robin Cook (7e49fe8657781e4e7f44e78cbc3dcddc76943cf1), Robin Cook, 07/02/2010

Archive powered by MHonArc 2.6.24.

Top of Page