Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Julien ROZO (28fc7d2284ad7888d56a00c25078ac95c81aeb75)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Julien ROZO <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Julien ROZO (28fc7d2284ad7888d56a00c25078ac95c81aeb75)
  • Date: Sat, 24 Oct 2009 02:36:01 -0500

GIT changes to master grimoire by Julien ROZO <julien AT rozo.org>:

ChangeLog | 4 ++++
graphics/ufraw/BUILD | 2 ++
graphics/ufraw/CONFIGURE | 11 +++++++++++
graphics/ufraw/DEPENDS | 30 +++++++++++++++++++-----------
graphics/ufraw/DETAILS | 4 ++--
graphics/ufraw/HISTORY | 8 ++++++++
libs/cfitsio/DETAILS | 18 ++++++++++++++++++
libs/cfitsio/HISTORY | 3 +++
8 files changed, 67 insertions(+), 13 deletions(-)

New commits:
commit 0d0be11bf447cd76ca47df77043f31712b5b6c55
Author: Julien ROZO <julien AT rozo.org>
Commit: Julien ROZO <julien AT rozo.org>

ufraw: updated version to 0.16
in DEPENDS: gtkimageview is mandatory for both versions,
added cinepaint as optional dependency to build cinepaint plugin,
added cfitsio as optional dependency to support FITS file format,
added --with/--without flag for optional dependencies if available
BUILD and CONFIGURE: added, to enable/disable some functionnalities

commit 53dbd3037547fd2a8b02a17f20f842a585c3abd7
Author: Julien ROZO <julien AT rozo.org>
Commit: Julien ROZO <julien AT rozo.org>

libs/cfitsio: new spell, C and Fortran libraries to read and write
data files in FITS (Flexible Image Transport System)

diff --git a/ChangeLog b/ChangeLog
index f7f6981..4997f80 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-10-23 Julien "_kaze_" ROZO <julien AT rozo.org>
+ * libs/cfitsio: new spell, C and Fortran libraries to read and write
+ data files in FITS (Flexible Image Transport System)
+
2009-10-22 Ladislav Hagara <hgr AT vabo.cz>
* e-17/elementary: new spell, a basic widget set based on EFL
* e-17/ethumb: new spell, thumbnail generator library
diff --git a/graphics/ufraw/BUILD b/graphics/ufraw/BUILD
new file mode 100755
index 0000000..e1b74fe
--- /dev/null
+++ b/graphics/ufraw/BUILD
@@ -0,0 +1,2 @@
+OPTS="$UFR_EXT $UFR_CRTST $UFR_HTPX $OPTS" &&
+default_build
diff --git a/graphics/ufraw/CONFIGURE b/graphics/ufraw/CONFIGURE
new file mode 100755
index 0000000..2663b92
--- /dev/null
+++ b/graphics/ufraw/CONFIGURE
@@ -0,0 +1,11 @@
+config_query_option UFR_EXT "build dcraw and nikon-curve ?" n \
+ "--enable-extras" \
+ "--disable-extras" &&
+
+config_query_option UFR_CRTST "enable the contrast setting option ?" n \
+ "--enable-contrast" \
+ "--disable-constrast" &&
+
+config_query_option UFR_HTPX "enable hot pixel elimination ?" n \
+ "--enable-hotpixels" \
+ "--disable-hotpixels"
diff --git a/graphics/ufraw/DEPENDS b/graphics/ufraw/DEPENDS
index a6714b3..5e671c2 100755
--- a/graphics/ufraw/DEPENDS
+++ b/graphics/ufraw/DEPENDS
@@ -1,13 +1,18 @@
depends gtk+2 &&
depends lcms &&
+depends gtkimageview &&
if [ "$UFRAW_CVS" == "y" ]; then
- depends CVS &&
- depends gtkimageview
+ depends CVS
fi &&
-optional_depends gimp \
- "" \
- "" \
+
+optional_depends gimp \
+ "--with-gimp" \
+ "--without-gimp" \
"for gimp plugin" &&
+optional_depends cinepaint \
+ "--with-cinepaint" \
+ "--without-cinepaint" \
+ "for cinepaint plugin" &&
optional_depends jpeg \
"" \
"" \
@@ -16,12 +21,15 @@ optional_depends tiff \
"" \
"" \
"for tiff support" &&
-optional_depends exiv2 \
- "" \
- "" \
+optional_depends exiv2 \
+ "--with-exiv2" \
+ "--without-exiv2" \
"for exif support" &&
-optional_depends lensfun \
+optional_depends lensfun \
"--with-lensfun" \
+ "--without-lensfun" \
+ "lensfun support" &&
+optional_depends cfitsio \
"" \
- "lensfun support"
-
+ "" \
+ "for FITS format support"
diff --git a/graphics/ufraw/DETAILS b/graphics/ufraw/DETAILS
index 4eb75e7..861b4eb 100755
--- a/graphics/ufraw/DETAILS
+++ b/graphics/ufraw/DETAILS
@@ -11,10 +11,10 @@ if [ "$UFRAW_CVS" == "y" ]; then
SOURCE_IGNORE=volatile
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-sfcvs
else
- VERSION=0.15
+ VERSION=0.16
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:90b45f1e3e52df9f4917879d4bf40e94551172b39f41574e5d9219f8a34b13820ab266c688766b15219d28908abe40ba19378ad77698ba787bb737664e2f1980
+
SOURCE_HASH=sha512:f98db6f2df22f47575e0178c7e25eae08b0019f0604e52720ad7636f655d1c0085618c420273ec6727d4631f7e464e815b5a459e44f4f70742d55474eaf49b86
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
fi
WEB_SITE=http://ufraw.sourceforge.net/
diff --git a/graphics/ufraw/HISTORY b/graphics/ufraw/HISTORY
index 8c7c4b2..557b315 100644
--- a/graphics/ufraw/HISTORY
+++ b/graphics/ufraw/HISTORY
@@ -1,3 +1,11 @@
+2009-10-24 Julien "_kaze_" ROZO <julien AT rozo.org>
+ * DETAILS: updated version to 0.16
+ * DEPENDS: gtkimageview is mandatory for both versions,
+ added cinepaint as optional dependency to build cinepaint plugin,
+ added cfitsio as optional dependency to support FITS file format,
+ added --with/--without flag for optional dependencies if available
+ * BUILD, CONFIGURE: added, to enable/disable some functionnalities
+
2009-08-17 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DEPENDS: added dependency on gtkimageview to the cvs version

diff --git a/libs/cfitsio/DETAILS b/libs/cfitsio/DETAILS
new file mode 100755
index 0000000..1ab4540
--- /dev/null
+++ b/libs/cfitsio/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=cfitsio
+ VERSION=3210
+ SOURCE="${SPELL}${VERSION}.tar.gz"
+ SOURCE_URL[0]=ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/${SOURCE}
+
SOURCE_HASH=sha512:b4b33576437da9e25d20ca322071efe8f4dce2890782c8f9ccb1de3c4bc9c92271b8678bbab04aa45194c87ad2eb5fa71fa294142c77ef9187c2beaf4725c6ea
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}"
+ WEB_SITE="http://heasarc.gsfc.nasa.gov/fitsio/";
+ LICENSE[0]=GPL
+ ENTERED=20091023
+ SHORT="C and Fortran libraries to read and write files in FITS"
+cat << EOF
+CFITSIO is a library of C and Fortran subroutines for reading and writing
+data files in FITS (Flexible Image Transport System) data format. CFITSIO
+provides simple high-level routines for reading and writing FITS files
+that insulate the programmer from the internal complexities of the FITS
+format. CFITSIO also provides many advanced features for manipulating and
+filtering the information in FITS files.
+EOF
diff --git a/libs/cfitsio/HISTORY b/libs/cfitsio/HISTORY
new file mode 100644
index 0000000..307a5e6
--- /dev/null
+++ b/libs/cfitsio/HISTORY
@@ -0,0 +1,3 @@
+2009-10-23 Julien "_kaze_" ROZO <julien AT rozo.org>
+ * DETAILS, HISTORY: created this spell
+



  • [SM-Commit] GIT changes to master grimoire by Julien ROZO (28fc7d2284ad7888d56a00c25078ac95c81aeb75), Julien ROZO, 10/24/2009

Archive powered by MHonArc 2.6.24.

Top of Page