diff options
author | Markus Meier <maekke@gentoo.org> | 2010-04-02 14:34:28 +0000 |
---|---|---|
committer | Markus Meier <maekke@gentoo.org> | 2010-04-02 14:34:28 +0000 |
commit | e3e945fab867b0157d8d1a3b9d0cb0cb634be02c (patch) | |
tree | 946ff6261c2cded7958a76e31d0160a27eab0df8 /media-gfx/ufraw/files | |
parent | Fix compatibility with Mono 2.6. Fixes bug 310371. (diff) | |
download | gentoo-2-e3e945fab867b0157d8d1a3b9d0cb0cb634be02c.tar.gz gentoo-2-e3e945fab867b0157d8d1a3b9d0cb0cb634be02c.tar.bz2 gentoo-2-e3e945fab867b0157d8d1a3b9d0cb0cb634be02c.zip |
version bump, drop some keywords as some deps changed. fix automagic dep on cfitsio based on a patch of Xarthisius in bug #311339
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'media-gfx/ufraw/files')
-rw-r--r-- | media-gfx/ufraw/files/ufraw-0.17-cfitsio-automagic.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/media-gfx/ufraw/files/ufraw-0.17-cfitsio-automagic.patch b/media-gfx/ufraw/files/ufraw-0.17-cfitsio-automagic.patch new file mode 100644 index 000000000000..aff7c5a25930 --- /dev/null +++ b/media-gfx/ufraw/files/ufraw-0.17-cfitsio-automagic.patch @@ -0,0 +1,28 @@ +diff -ru ufraw-0.17.orig/configure.ac ufraw-0.17/configure.ac +--- ufraw-0.17.orig/configure.ac 2010-04-02 16:16:08.000000000 +0200 ++++ ufraw-0.17/configure.ac 2010-04-02 16:19:33.000000000 +0200 +@@ -246,11 +246,19 @@ + [ have_png=no + AC_MSG_RESULT($LIBPNG_PKG_ERRORS) ] ) + +-PKG_CHECK_MODULES(CFITSIO, cfitsio, +- [ have_cfitsio=yes +- AC_DEFINE(HAVE_LIBCFITSIO, 1, have the cfitsio library) ], +- [ have_cfitsio=no +- AC_MSG_RESULT($CFITSIO_PKG_ERRORS) ] ) ++AC_ARG_WITH([cfitsio], ++ [AS_HELP_STRING([--with-cfitsio], ++ [build fits support @<:@default=check@:>@])], ++ [], ++ [with_cfitsio=check]) ++ ++have_cfitsio=no ++AS_IF([test "x$with_cfitsio" != xno], ++ [PKG_CHECK_MODULES(CFITSIO, cfitsio, ++ [ have_cfitsio=yes ++ AC_DEFINE(HAVE_LIBCFITSIO, 1, have the cfitsio library) ], ++ [ have_cfitsio=no ++ AC_MSG_RESULT($CFITSIO_PKG_ERRORS) ] ) ] ) + + PKG_CHECK_MODULES(EXIV2, exiv2 >= 0.16, + [ have_exiv2=yes |