Skip to Content.
Sympa Menu

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

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 (c982bb0ef301f55f1705abbe96ffcdd6f2359508)
  • Date: Tue, 3 Jun 2008 00:06:07 -0500

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

xfce/xfburn/DEPENDS | 35 +++++++++++++++++++++--------------
xfce/xfburn/DETAILS | 36 ++++++++++++++++++------------------
xfce/xfburn/HISTORY | 4 ++++
xfce/xfburn/PREPARE | 8 ++++----
xfce/xfburn/PRE_BUILD | 12 ++++++------
5 files changed, 53 insertions(+), 42 deletions(-)

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

xfburn: => 0.3.0, added missing deps, opt deps, fixed alreade added,
removed useless

diff --git a/xfce/xfburn/DEPENDS b/xfce/xfburn/DEPENDS
index b5a213b..3a15ce3 100755
--- a/xfce/xfburn/DEPENDS
+++ b/xfce/xfburn/DEPENDS
@@ -1,16 +1,23 @@
-depends READCD &&
-depends cdrdao &&
-depends exo &&
-depends glib2 &&
-depends gtk+2 &&
-depends intltool &&
-depends libxfcegui4 &&
+depends libburn-pykix &&
+depends libisofs &&
+depends exo &&
+depends glib2 &&
+depends gtk+2 &&
+depends intltool &&
+depends libxfcegui4 &&

-if [ "$XFBURN_SVN" == "y" ]; then
- depends subversion
-fi &&
+if [[ $XFBURN_SVN == y ]]; then
+ depends subversion
+fi &&

-optional_depends thunar \
- "--enable-thunar-vfs" \
- "--disable-thunar-vfs" \
- "for Thunar's VFS layer"
+optional_depends dbus-glib \
+ "--enable-dbus" "--disable-dbus" \
+ "for D-Bus support" &&
+
+optional_depends hal \
+ "--enable-hal" "--disable-hal" \
+ "for HAL support" &&
+
+optional_depends thunar \
+ "--enable-thunar-vfs" "--disable-thunar-vfs" \
+ "for Thunar's VFS layer"
diff --git a/xfce/xfburn/DETAILS b/xfce/xfburn/DETAILS
index a2bf82d..ccfa3a6 100755
--- a/xfce/xfburn/DETAILS
+++ b/xfce/xfburn/DETAILS
@@ -1,29 +1,29 @@
SPELL=xfburn
- if [[ "$XFBURN_SVN" == "y" ]]; then
- if [[ "$XFBURN_SVN_AUTOUPDATE" == "y" ]]; then
+if [[ $XFBURN_SVN == y ]]; then
+ if [[ $XFBURN_SVN_AUTOUPDATE == y ]]; then
VERSION=$(date +%Y%m%d)
- else
- VERSION=svn
- fi
- SOURCE=${SPELL}-svn.tar.bz2
- SOURCE_HINTS=old_svn_compat
- SOURCE_URL[0]=svn:///svn.xfce.org/svn/xfce/${SPELL}/trunk:${SPELL}-svn
- SOURCE_IGNORE='volatile'
-SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-svn
else
- VERSION=0.2.0
- SOURCE=${SPELL}-${VERSION}.tar.bz2
- SOURCE_URL[0]=http://foo-projects.org/~pollux/${SPELL}/${SOURCE}
-
SOURCE_HASH=sha512:14ba8edf1fc881dcfa853f96f36e5181ff6c86fba008bf60967500246846efc036c04aaec78f21a660c5135c5f3d2325bef12d7cd21ab78574d466ca75aadcfd
-SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
+ VERSION=svn
fi
+ SOURCE=$SPELL-svn.tar.bz2
+ SOURCE_HINTS=old_svn_compat
+ SOURCE_URL[0]=svn:///svn.xfce.org/svn/xfce/$SPELL/trunk:$SPELL-svn
+ SOURCE_IGNORE=volatile
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-svn
+else
+ VERSION=0.3.0
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ SOURCE_URL[0]=http://foo-projects.org/~pollux/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:93bc09157ebb0f9b53740f263898417018f5dcff2df1ffe4ae15e258f8959c57c07183b410bb32e48302c960f169240e2742f51fddbc7272a02375122957acc3
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
+fi
WEB_SITE=http://www.xfce.org/projects/xfburn/
ENTERED=20071005
LICENSE[0]=GPL
KEYWORDS="xfce disk"
SHORT="Xfburn is a GUI CD burning frontend for XFCE"
cat << EOF
-Xfburn is a simple CD burning tool acting as a front-end to mkisofs,
-cdrdao, readcd and cdrecord. It can blank CD-RW, copy CDs, burn and
-create iso images, and burn personal composition of data.
+Xfburn is a simple CD/DVD burning tool based on libburnia libraries. It can
+blank CD-RWs, burn and create iso images, as well as burn personal
compositions
+of data to either CD or DVD.
EOF
diff --git a/xfce/xfburn/HISTORY b/xfce/xfburn/HISTORY
index ead7cdb..3195bcb 100644
--- a/xfce/xfburn/HISTORY
+++ b/xfce/xfburn/HISTORY
@@ -1,3 +1,7 @@
+2008-06-03 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 0.3.0, cleaned up
+ * DEPENDS: added missing deps, fixed already added
+
2008-02-24 Ethan Grammatikidis <eekee57 AT fastmail.fm>
* DEPENDS: Changed CD-BURN-UTILITY to READCD as libburn-pykix
provides CD-BURN-UTILITY but not the readcd that xfburn requires.
diff --git a/xfce/xfburn/PREPARE b/xfce/xfburn/PREPARE
index 7b4b191..08d42e1 100755
--- a/xfce/xfburn/PREPARE
+++ b/xfce/xfburn/PREPARE
@@ -1,6 +1,6 @@
-config_query XFBURN_SVN "Use svn version?" n &&
+config_query XFBURN_SVN "Use svn version?" n &&

-if [ "$XFBURN_SVN" == "y" ]; then
- config_query XFBURN_SVN_AUTOUPDATE \
- "Queue for update on every system update?" n
+if [[ $XFBURN_SVN == y ]]; then
+ config_query XFBURN_SVN_AUTOUPDATE \
+ "Queue for update on every system update?" n
fi
diff --git a/xfce/xfburn/PRE_BUILD b/xfce/xfburn/PRE_BUILD
index 0f3feca..3e23a20 100755
--- a/xfce/xfburn/PRE_BUILD
+++ b/xfce/xfburn/PRE_BUILD
@@ -1,9 +1,9 @@
-default_pre_build &&
-cd ${SOURCE_DIRECTORY} &&
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&

-if [ "$XFBURN_SVN" == "y" ]; then
- aclocal &&
- autoheader &&
- autoconf &&
+if [[ $XFBURN_SVN == y ]]; then
+ aclocal &&
+ autoheader &&
+ autoconf &&
automake
fi



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (c982bb0ef301f55f1705abbe96ffcdd6f2359508), Vlad Glagolev, 06/03/2008

Archive powered by MHonArc 2.6.24.

Top of Page