Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by David Kowis (f837feaaa5f2a3e08d67f1204f5d3f07d1a6268d)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Kowis <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Kowis (f837feaaa5f2a3e08d67f1204f5d3f07d1a6268d)
  • Date: Mon, 12 Nov 2007 09:26:27 -0600

GIT changes to master grimoire by David Kowis <dkowis AT shlrm.org>:

graphics-libs/sane-backends/BUILD | 8 ++++----
graphics-libs/sane-backends/HISTORY | 3 +++
printer/cups/BUILD | 4 ++--
printer/cups/HISTORY | 4 ++++
4 files changed, 13 insertions(+), 6 deletions(-)

New commits:
commit f837feaaa5f2a3e08d67f1204f5d3f07d1a6268d
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

sane-backends: fixing bug in build with [] vs [[ ]]

commit 5f6d3037fa17eb52dcb5a626981a1158e612429c
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

cups: Fixing broken BUILD file

diff --git a/graphics-libs/sane-backends/BUILD
b/graphics-libs/sane-backends/BUILD
index b55740a..cd13bb6 100755
--- a/graphics-libs/sane-backends/BUILD
+++ b/graphics-libs/sane-backends/BUILD
@@ -1,22 +1,22 @@
create_group scanner &&
-if [ "$USEFORK" == "y" ]; then
+if [[ "$USEFORK" == "y" ]]; then
OPTS="$OPTS --enable-fork-process"
else
OPTS="$OPTS --disable-fork-process"
fi &&

-if [ "$IPV6" == "y" ]; then
+if [[ "$IPV6" == "y" ]]; then
OPTS="$OPTS --enable-ipv6"
else
OPTS="$OPTS --disable-ipv6"
fi &&

-if [ "$HP5400NVSM" == "y" ]; then
+if [[ "$HP5400NVSM" == "y" ]]; then
echo "patching HP5400 for NO_STRING_VERSION_MATCH"
echo '#define NO_STRING_VERSION_MATCH
' >> $SOURCE_DIRECTORY/backend/hp5400_internal.h
fi &&
-if [ $SANE_LOCAL == none ];then
+if [[ $SANE_LOCAL == none ]];then
OPTS="$OPTS --disable-local-backends"
else
export BACKENDS=$SANE_LOCAL
diff --git a/graphics-libs/sane-backends/HISTORY
b/graphics-libs/sane-backends/HISTORY
index 530db3f..9c6c7fb 100644
--- a/graphics-libs/sane-backends/HISTORY
+++ b/graphics-libs/sane-backends/HISTORY
@@ -1,3 +1,6 @@
+2007-11-11 David Kowis <dkowis AT shlrm.org>
+ * BUILD: broken again, due to incorrect usage of [ ]
+
2007-01-29 Treeve Jelbert <treeve AT sourcemage.org>
* DEPENDS: add optional tetex, remove hotplug
* INSTALL: hotplug files are optional
diff --git a/printer/cups/BUILD b/printer/cups/BUILD
index 1c03a55..fdfad32 100755
--- a/printer/cups/BUILD
+++ b/printer/cups/BUILD
@@ -1,10 +1,10 @@
# prevent install of init scripts
OPTS="$OPTS --without-rcdir" &&
# Set language options
-if [ ${EXTRA_LANG} == "n" ]; then
+if [[ ${EXTRA_LANG} == "n" ]]; then
OPTS="--without-languages $OPTS"
else
- if [ ${CUPS_LANG} == "all" ]; then
+ if [[ ${CUPS_LANG} == "all" ]]; then
OPTS="--with-languages $OPTS"
else
OPTS="--with-languages=$CUPS_LANG $OPTS"
diff --git a/printer/cups/HISTORY b/printer/cups/HISTORY
index ab20e4e..9c3d8ba 100644
--- a/printer/cups/HISTORY
+++ b/printer/cups/HISTORY
@@ -1,3 +1,7 @@
+2007-11-11 David Kowis <dkowis AT shlrm.org>
+ * BUILD was very much broke. Not sure if it's even the right spot
+ for what's there.
+
2007-10-31 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 1.3.4




  • [SM-Commit] GIT changes to master grimoire by David Kowis (f837feaaa5f2a3e08d67f1204f5d3f07d1a6268d), David Kowis, 11/12/2007

Archive powered by MHonArc 2.6.24.

Top of Page