Skip to Content.
Sympa Menu

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

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 (8958aa6bb0ac3b1facaf9583f4085c4b36d4fa39)
  • Date: Thu, 1 Jan 2009 17:17:29 -0600

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

graphics-libs/gegl/DEPENDS | 61
+++++++++++++++++++++++++++++----------------
graphics-libs/gegl/HISTORY | 2 -
graphics/gimp/DETAILS | 8 ++---
graphics/gimp/HISTORY | 3 ++
4 files changed, 48 insertions(+), 26 deletions(-)

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

gimp: => 2.6.4

commit 4560e4e46834076d7a95c97b0e388510bfa27e54
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

gegl: working on deps..

diff --git a/graphics-libs/gegl/DEPENDS b/graphics-libs/gegl/DEPENDS
index b0402df..5c13773 100755
--- a/graphics-libs/gegl/DEPENDS
+++ b/graphics-libs/gegl/DEPENDS
@@ -1,48 +1,67 @@
depends glib2 &&
depends babl &&
-depends libpng &&

optional_depends gtk+2 \
- "" \
- "" \
+ "--with-gtk" \
+ "--without-gtk" \
"for a GUI" &&

optional_depends sdl \
- "" \
- "" \
- "" &&
+ "--with-sdl" \
+ "--without-sdl" \
+ "for SDL support" &&
+
+optional_depends libpng \
+ "--with-libpng" \
+ "--without-libpng" \
+ "for PNG file format support" &&

optional_depends jpeg \
- "" \
- "" \
+ "--with-libjpeg" \
+ "--without-libjpeg" \
"for JPG file format support" &&

optional_depends openexr \
- "" \
- "" \
+ "--with-openexr" \
+ "--without-openexr" \
"for EXR file format support" &&

optional_depends cairo \
- "" \
- "" \
+ "--with-cairo" \
+ "--without-cairo" \
"for font handling" &&

optional_depends pango \
- "" \
- "" \
+ "--with-pango" \
+ "--without-pango" \
"for font handling" &&

optional_depends librsvg2 \
- "" \
- "" \
+ "--with-librsvg" \
+ "--without-librsvg" \
"for SVG support" &&

+optional_depends lua \
+ "--with-lua" \
+ "--without-lua" \
+ "for Lua support" &&
+
optional_depends asciidoc \
- "" \
- "" \
+ "--enable-docs" \
+ "--disable-docs" \
"for documentation" &&

optional_depends LIBAVCODEC \
- "" \
- "" \
- "for ffmpeg support"
+ "--with-libavformat" \
+ "--without-libavformat" \
+ "for ffmpeg support" &&
+
+optional_depends graphviz \
+ "--with-graphviz" \
+ "--without-graphviz" \
+ "for graphviz support" &&
+
+optional_depends gtk-doc \
+ "--enable-gtk-doc" \
+ "--disable-gtk-doc" \
+ "build documentation with gtk-doc"
diff --git a/graphics-libs/gegl/HISTORY b/graphics-libs/gegl/HISTORY
index e79e80a..a195bf3 100644
--- a/graphics-libs/gegl/HISTORY
+++ b/graphics-libs/gegl/HISTORY
@@ -1,7 +1,7 @@
2009-01-02 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 0.0.22; fixed desc, website; cleaned up
* PRE_BUILD: cleaned up
- * DEPENDS: fixed line-spacing
+ * DEPENDS: fixed line-spacing; added missing deps, flags; libpng ->
opt

2008-10-06 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 0.0.20
diff --git a/graphics/gimp/DETAILS b/graphics/gimp/DETAILS
index db56582..b3aa294 100755
--- a/graphics/gimp/DETAILS
+++ b/graphics/gimp/DETAILS
@@ -1,13 +1,13 @@
SPELL=gimp
if [[ $GIMP_DEVEL == y ]]; then
- VERSION=2.6.3
+ VERSION=2.6.4
SOURCE=$SPELL-$VERSION.tar.bz2
-
SOURCE_HASH=sha512:59c820877974c9a7b69e06ad41cd0eb68beeac069ea33f6fa0a0f1cc8e8221006b1968359baf9846dc873db4a7456d1a679b2ec0c7b9106f7bab21737b129f8f
+
SOURCE_HASH=sha512:1381261db6030f774e441e5de0b913088e1f5c92fe6cf8360b9fc20479c38fce578cbec0a1c8f76c413db8a0ef8cab8cefa1179ed76eb97ebec18099573b0231
SOURCE_URL[0]=ftp://ftp.gimp.org/pub/gimp/v${VERSION%.*}/$SOURCE
else
- VERSION=2.6.3
+ VERSION=2.6.4
SOURCE=$SPELL-$VERSION.tar.bz2
-
SOURCE_HASH=sha512:59c820877974c9a7b69e06ad41cd0eb68beeac069ea33f6fa0a0f1cc8e8221006b1968359baf9846dc873db4a7456d1a679b2ec0c7b9106f7bab21737b129f8f
+
SOURCE_HASH=sha512:1381261db6030f774e441e5de0b913088e1f5c92fe6cf8360b9fc20479c38fce578cbec0a1c8f76c413db8a0ef8cab8cefa1179ed76eb97ebec18099573b0231
SOURCE_URL[0]=ftp://ftp.gimp.org/pub/gimp/v${VERSION%.*}/$SOURCE
# SOURCE_GPG=gurus.gpg:$SOURCE.sig
fi
diff --git a/graphics/gimp/HISTORY b/graphics/gimp/HISTORY
index ce36ec7..1e4c0a0 100644
--- a/graphics/gimp/HISTORY
+++ b/graphics/gimp/HISTORY
@@ -1,3 +1,6 @@
+2009-01-02 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 2.6.4
+
2008-11-22 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 2.6.3




  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (8958aa6bb0ac3b1facaf9583f4085c4b36d4fa39), Vlad Glagolev, 01/01/2009

Archive powered by MHonArc 2.6.24.

Top of Page