Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (fa3f780abd7113f4124de5777d81b39608500fd0)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (fa3f780abd7113f4124de5777d81b39608500fd0)
  • Date: Sun, 6 Apr 2008 08:41:47 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

mobile/gnokii/BUILD | 3 ---
mobile/gnokii/DEPENDS | 35 +++++++++++++++++++----------------
mobile/gnokii/DETAILS | 21 ++++++++++-----------
mobile/gnokii/HISTORY | 7 +++++++
mobile/gnokii/PREPARE | 9 ++++-----
mobile/gnokii/PRE_BUILD | 8 ++++----
6 files changed, 44 insertions(+), 39 deletions(-)

New commits:
commit fa3f780abd7113f4124de5777d81b39608500fd0
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

gnokii: => 0.6.24 + some fixes

diff --git a/mobile/gnokii/BUILD b/mobile/gnokii/BUILD
deleted file mode 100755
index d22e99f..0000000
--- a/mobile/gnokii/BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-make_single &&
-default_build &&
-make_normal
diff --git a/mobile/gnokii/DEPENDS b/mobile/gnokii/DEPENDS
index 24c5c43..de933dc 100755
--- a/mobile/gnokii/DEPENDS
+++ b/mobile/gnokii/DEPENDS
@@ -1,16 +1,19 @@
-optional_depends X11-LIBS \
- '--with-x' \
- '--without-x' \
- 'to use the X window system' &&
-optional_depends libical \
- '--enable-libical' \
- '--disable-libical' \
- 'For iCal support' &&
-optional_depends libusb \
- '--enable-libusb' \
- '--disable-libusb' \
- 'For libusb support' &&
-optional_depends bluez-libs \
- '--enable-bluetooth' \
- '--disable-bluetooth' \
- 'For bluetooth support'
+optional_depends X11-LIBS \
+ "--with-x" "--without-x" \
+ "For GUI support" &&
+
+optional_depends libusb \
+ "--enable-libusb" "--disable-libusb" \
+ "For libusb support" &&
+
+optional_depends bluez-libs \
+ "--enable-bluetooth" "--disable-bluetooth" \
+ "For bluetooth support" &&
+
+optional_depends libical \
+ "--enable-libical" "--disable-libical" \
+ "For iCal support" &&
+
+if is_depends_enabled $SPELL X11-LIBS; then
+ depends gtk+2
+fi
diff --git a/mobile/gnokii/DETAILS b/mobile/gnokii/DETAILS
index 137167e..266af1c 100755
--- a/mobile/gnokii/DETAILS
+++ b/mobile/gnokii/DETAILS
@@ -1,22 +1,21 @@
SPELL=gnokii
-if [[ "${GNOKII_SCM}" == "y" ]]; then
-if [[ "${GNOKII_SCM_AUTOUPDATE}" == "y" ]]; then
+if [[ $GNOKII_SCM == y ]]; then
+ if [[ $GNOKII_SCM_AUTOUPDATE == y ]]; then
VERSION=$(date +%Y%m%d)
-else
+ else
VERSION=cvs
-fi
- SOURCE=${SPELL}-cvs.tar.bz2
+ fi
+ SOURCE=$SPELL-cvs.tar.bz2
FORCE_DOWNLOAD=ON

SOURCE_URL[0]=cvs://:pserver:anonymous AT cvs.sv.nongnu.org:/sources/gnokii:gnokii
SOURCE_IGNORE=volatile
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-cvs
else
- VERSION=0.6.22
- SOURCE="$SPELL-$VERSION.tar.bz2"
- SOURCE_URL[0]=http://www.$SPELL.org/download/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:b09b6339a4f991c3011e31d5e70fe523f9f43f4b84ffb8d8ad6c2af4e84199072619d2ec9144790e3b45d6321c9fd9627cd1d4983908515538541f99d82535d3
-
-SOURCE_DIRECTORY="${BUILD_DIRECTORY}/$SPELL-$VERSION"
+ VERSION=0.6.24
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE_URL[0]=http://www.gnokii.org/download/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:f8b92aacbd02cedb78f0fc675c6c3d72016095807d7bc581f4950571b00672333f74f0ff268f445b9f19804b8ae3a5a6192e9d23693d83f933466b0fd9d2f5a7
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
fi
WEB_SITE=http://www.gnokii.org/
LICENSE[0]=GPL
diff --git a/mobile/gnokii/HISTORY b/mobile/gnokii/HISTORY
index f222c73..579d722 100644
--- a/mobile/gnokii/HISTORY
+++ b/mobile/gnokii/HISTORY
@@ -1,3 +1,10 @@
+2008-04-06 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD: removed, multijob OK
+ * DETAILS: updated spell to 0.6.24, cleaned up, fixed SOURCE_URL
+ * DEPENDS: added missing gtk+2 dep, cleaned up
+ * PREPARE: cleaned up
+ * PRE_BUILD: `sedit' => `sed -i', cleaned up
+
2008-02-12 Thomas Orgis <sobukus AT sourcemage.org>
* DETAILS: update to 0.6.22

diff --git a/mobile/gnokii/PREPARE b/mobile/gnokii/PREPARE
index 906cf56..4f51511 100755
--- a/mobile/gnokii/PREPARE
+++ b/mobile/gnokii/PREPARE
@@ -1,7 +1,6 @@
config_query GNOKII_SCM "Do you want SCM version" n &&
-if [[ "${GNOKII_SCM}" == "y" ]]
-then
-config_query GNOKII_SCM_AUTOUPDATE \
- "Automaticaly update the spell on sorcery queue/system-update?" \
- n
+
+if [[ $GNOKII_SCM == y ]]; then
+ config_query GNOKII_SCM_AUTOUPDATE \
+ "Automaticaly update the spell on sorcery queue/system-update?" n
fi
diff --git a/mobile/gnokii/PRE_BUILD b/mobile/gnokii/PRE_BUILD
index fc88c9b..c745206 100755
--- a/mobile/gnokii/PRE_BUILD
+++ b/mobile/gnokii/PRE_BUILD
@@ -1,7 +1,7 @@
default_pre_build &&
-cd ${SOURCE_DIRECTORY} &&
-if [[ "${GNOKII_SCM}" == "y" ]]
-then
- sedit "s:^\./configure:true:" autogen.sh &&
+cd $SOURCE_DIRECTORY &&
+
+if [[ $GNOKII_SCM == y ]]; then
+ sed -i "s:^\./configure:true:" autogen.sh &&
NOCONFIGURE=1 ./autogen.sh
fi




Archive powered by MHonArc 2.6.24.

Top of Page