Skip to Content.
Sympa Menu

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

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 (18835c07d972f242bdf5235facc7075b90956ea8)
  • Date: Fri, 10 May 2013 03:35:29 -0500

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

dev/null |binary
x11-toolkits/fox/BUILD | 13 +++-
x11-toolkits/fox/DEPENDS | 102
+++++++++++++++++++++++++++------
x11-toolkits/fox/DETAILS | 2
x11-toolkits/fox/HISTORY | 7 ++
x11-toolkits/fox/PREPARE | 5 +
x11-toolkits/fox/PRE_BUILD | 4 +
x11-toolkits/fox/fox-1.6.49.tar.gz.sig |binary
8 files changed, 112 insertions(+), 21 deletions(-)

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

fox: => 1.6.49

diff --git a/x11-toolkits/fox/BUILD b/x11-toolkits/fox/BUILD
index e8d72fb..e18df8b 100755
--- a/x11-toolkits/fox/BUILD
+++ b/x11-toolkits/fox/BUILD
@@ -1,4 +1,11 @@
-OPTS="${OPTS} --enable-release --disable-static" &&
-sed -i "s/-O2/${CFLAGS}/" configure &&
-default_build
+OPTS="--enable-release \
+ --disable-static \
+ ${FOX_OPTS} \
+ ${OPTS}" &&
+
+if is_depends_enabled $SPELL $(get_spell_provider $SPELL CUPS); then
+ CXXFLAGS="-DHAVE_CUPS_H=1 ${CXXFLAGS}" &&
+ LDFLAGS="-lcups ${LDFLAGS}"
+fi &&

+default_build
diff --git a/x11-toolkits/fox/DEPENDS b/x11-toolkits/fox/DEPENDS
index 645e8de..b34cf6c 100755
--- a/x11-toolkits/fox/DEPENDS
+++ b/x11-toolkits/fox/DEPENDS
@@ -1,16 +1,86 @@
-depends -sub CXX gcc &&
-depends autoconf &&
-depends automake &&
-depends zlib &&
-
-optional_depends "xorg-libs" "--with-opengl=opengl" "--disable-opengl"
"for gui support" &&
-optional_depends "CUPS" "" ""
"for printing support" &&
-optional_depends "JPEG" "--enable-jpeg=yes" "--disable-jpeg"
"for JPEG image support" &&
-optional_depends "tiff" "--enable-tiff=yes" "--disable-tiff"
"for TIFF image support" &&
-optional_depends "libpng" "--enable-png=yes" "--disable-png"
"for PNG image support" &&
-
-
-optional_depends "libxft" \
- "--with-xft=yes" \
- "--without-xft" \
- "for XFT anti-aliased font support"
+depends -sub CXX gcc &&
+depends autoconf &&
+depends automake &&
+depends imake &&
+
+optional_depends zlib \
+ "--enable-zlib" \
+ "--disable-zlib" \
+ "for zlib support" &&
+
+optional_depends bzip2 \
+ "--enable-bz2lib" \
+ "--disable-bz2lib" \
+ "for bz2lib support" &&
+
+optional_depends JPEG \
+ "--enable-jpeg" \
+ "--disable-jpeg" \
+ "for JPEG image support" &&
+
+optional_depends tiff \
+ "--enable-tiff" \
+ "--disable-tiff" \
+ "for TIFF image support" &&
+
+optional_depends libpng \
+ "--enable-png" \
+ "--disable-png" \
+ "for PNG image support" &&
+
+optional_depends libxft \
+ "--with-xft" \
+ "--without-xft" \
+ "for XFT anti-aliased font support" &&
+
+if is_depends_enabled $SPELL libxft; then
+ depends freetype2
+fi &&
+
+optional_depends libxext \
+ "--with-xshm" \
+ "--without-xshm" \
+ "to enable XShm support" &&
+
+optional_depends libxext \
+ "--with-shape" \
+ "--without-shape" \
+ "to enable XShape support" &&
+
+optional_depends libxfixes \
+ "--with-xfixes" \
+ "--without-xfixes" \
+ "for XFixes support" &&
+
+optional_depends libxcursor \
+ "--with-xcursor" \
+ "--without-xcursor" \
+ "for Xcursor support" &&
+
+optional_depends libxrender \
+ "--with-xrender" \
+ "--without-xrender" \
+ "for XRender support" &&
+
+optional_depends libxrandr \
+ "--with-xrandr" \
+ "--without-xrandr" \
+ "for XRandR support" &&
+
+optional_depends libxi \
+ "--with-xinput" \
+ "--without-xinput" \
+ "for XInput support" &&
+
+if is_depends_enabled $SPELL libxi; then
+ config_query_option FOX_OPTS "Enable XIM support?" y \
+ "--with-xim" \
+ "--without-xim"
+fi &&
+
+optional_depends OPENGL \
+ "--with-opengl" \
+ "--without-opengl" \
+ "for OpenGL support" &&
+
+optional_depends CUPS "" "" "for printing support"
diff --git a/x11-toolkits/fox/DETAILS b/x11-toolkits/fox/DETAILS
index 3a7e1a9..f22fcb5 100755
--- a/x11-toolkits/fox/DETAILS
+++ b/x11-toolkits/fox/DETAILS
@@ -7,7 +7,7 @@ case "$FOX_REL" in
VERSION=1.4.35
;;
*)
- VERSION=1.6.44
+ VERSION=1.6.49
;;
esac
SOURCE=$SPELL-$VERSION.tar.gz
diff --git a/x11-toolkits/fox/HISTORY b/x11-toolkits/fox/HISTORY
index 8ea12c2..dda345a 100644
--- a/x11-toolkits/fox/HISTORY
+++ b/x11-toolkits/fox/HISTORY
@@ -1,3 +1,10 @@
+2013-05-10 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 1.6.49 (stable)
+ * PREPARE: readability++
+ * BUILD: cleaned up
+ * DEPENDS: rewritten dependency tree
+ * PRE_BUILD: added, for flags modification
+
2012-01-04 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 1.7.32

diff --git a/x11-toolkits/fox/PREPARE b/x11-toolkits/fox/PREPARE
index f527935..a251a4d 100755
--- a/x11-toolkits/fox/PREPARE
+++ b/x11-toolkits/fox/PREPARE
@@ -1 +1,4 @@
-config_query_list FOX_REL "Which release?" current-1.6.x prev-1.4.x
test-1.7.x
+config_query_list FOX_REL "Which release?" \
+ current-1.6.x \
+ prev-1.4.x \
+ test-1.7.x
diff --git a/x11-toolkits/fox/PRE_BUILD b/x11-toolkits/fox/PRE_BUILD
new file mode 100755
index 0000000..606b851
--- /dev/null
+++ b/x11-toolkits/fox/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+sedit "s/-O2/${CFLAGS}/" configure
diff --git a/x11-toolkits/fox/fox-1.6.44.tar.gz.sig
b/x11-toolkits/fox/fox-1.6.44.tar.gz.sig
deleted file mode 100644
index 175a51a..0000000
Binary files a/x11-toolkits/fox/fox-1.6.44.tar.gz.sig and /dev/null differ
diff --git a/x11-toolkits/fox/fox-1.6.49.tar.gz.sig
b/x11-toolkits/fox/fox-1.6.49.tar.gz.sig
new file mode 100644
index 0000000..4df3870
Binary files /dev/null and b/x11-toolkits/fox/fox-1.6.49.tar.gz.sig differ



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (18835c07d972f242bdf5235facc7075b90956ea8), Vlad Glagolev, 05/10/2013

Archive powered by MHonArc 2.6.24.

Top of Page