summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-03-12 10:28:18 +0000
committerTim Harder <radhermit@gentoo.org>2011-03-12 10:28:18 +0000
commit3132d90fcdf58d5f971abd5d311166f739672d73 (patch)
treee0ac99afb778181a785f4f0203a263e493639536 /media-gfx
parentVersion bump. Drop older. (diff)
downloadgentoo-2-3132d90fcdf58d5f971abd5d311166f739672d73.tar.gz
gentoo-2-3132d90fcdf58d5f971abd5d311166f739672d73.tar.bz2
gentoo-2-3132d90fcdf58d5f971abd5d311166f739672d73.zip
Remove old.
(Portage version: 2.2.0_alpha26/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r--media-gfx/ufraw/ChangeLog8
-rw-r--r--media-gfx/ufraw/files/ufraw-0.15-configure.patch164
-rw-r--r--media-gfx/ufraw/files/ufraw-0.15-glibc-2.10.patch12
-rw-r--r--media-gfx/ufraw/ufraw-0.15-r1.ebuild60
4 files changed, 6 insertions, 238 deletions
diff --git a/media-gfx/ufraw/ChangeLog b/media-gfx/ufraw/ChangeLog
index 34658c84e625..8ce6d8660c1b 100644
--- a/media-gfx/ufraw/ChangeLog
+++ b/media-gfx/ufraw/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-gfx/ufraw
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/ufraw/ChangeLog,v 1.84 2010/12/27 01:27:58 mattst88 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/ufraw/ChangeLog,v 1.85 2011/03/12 10:28:18 radhermit Exp $
+
+ 12 Mar 2011; Tim Harder <radhermit@gentoo.org> -ufraw-0.15-r1.ebuild,
+ -files/ufraw-0.15-configure.patch, -files/ufraw-0.15-glibc-2.10.patch:
+ Remove old.
27 Dec 2010; Matt Turner <mattst88@gentoo.org> ufraw-0.15-r1.ebuild:
Drop mips keywords, bug 312819
diff --git a/media-gfx/ufraw/files/ufraw-0.15-configure.patch b/media-gfx/ufraw/files/ufraw-0.15-configure.patch
deleted file mode 100644
index 5c5d6f93e00d..000000000000
--- a/media-gfx/ufraw/files/ufraw-0.15-configure.patch
+++ /dev/null
@@ -1,164 +0,0 @@
---- configure.ac.orig 2009-02-11 21:33:33.000000000 +0100
-+++ configure.ac 2009-02-14 22:52:35.000000000 +0100
-@@ -83,13 +83,27 @@
- PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.6)
- PKG_CHECK_MODULES(GLIB, glib-2.0)
- PKG_CHECK_MODULES(LCMS, lcms)
--PKG_CHECK_MODULES(GTKIMAGEVIEW, gtkimageview >= 1.3,
-- [ have_gtkimageview=yes
-- GTK_LIBS=$GTKIMAGEVIEW_LIBS
-- GTK_CFLAGS=$GTKIMAGEVIEW_CFLAGS
-- AC_DEFINE(HAVE_GTKIMAGEVIEW, 1, have gtk image view) ],
-- [ have_gtkimageview=no
-- AC_MSG_RESULT($GTKIMAGEVIEW_PKG_ERRORS) ] )
-+
-+AC_ARG_WITH([gtkimageview],
-+ [AS_HELP_STRING([--with-gtkimageview],
-+ [use gtkimageview for previews @<:@default=check@:>@])],
-+ [],
-+ [with_gtkimageview=check])
-+
-+have_gtkimageview=no
-+AS_IF([test "x$with_gtkimageview" != xno],
-+ [PKG_CHECK_MODULES(GTKIMAGEVIEW, gtkimageview >= 1.3,
-+ [ have_gtkimageview=yes
-+ GTK_LIBS=$GTKIMAGEVIEW_LIBS
-+ GTK_CFLAGS=$GTKIMAGEVIEW_CFLAGS
-+ AC_DEFINE(HAVE_GTKIMAGEVIEW, 1, have gtk image view) ],
-+ [ have_gtkimageview=no
-+ if test "x$with_gtkimageview" != xcheck; then
-+ AC_MSG_FAILURE(
-+ [--with-gtkimageview was given, but test for gtkimageview failed])
-+ fi
-+ ] ) ] )
-+
- AC_SUBST(GTK_LIBS)
- if test "$have_gtkimageview" = "yes"; then
- PKG_CHECK_MODULES(gtk_image_view_damage_pixels, gtkimageview > 1.5.0,
-@@ -106,12 +120,25 @@
- test $prefix = NONE || pkg_prefix="$pkg_prefix --define-variable=prefix=$prefix"
- test $exec_prefix = NONE || pkg_prefix="$pkg_prefix --define-variable=exec_prefix=$exec_prefix"
-
--PKG_CHECK_MODULES(GIMP, gimpui-2.0,
-- [ have_gimp=yes
-- GIMP_LIBDIR=`$pkg_prefix --variable=gimplibdir gimp-2.0` ],
-- [ have_gimp=no
-- GIMP_LIBDIR=
-- AC_MSG_RESULT($GIMP_PKG_ERRORS) ] )
-+AC_ARG_WITH([gimp],
-+ [AS_HELP_STRING([--with-gimp],
-+ [build gimp plugin @<:@default=check@:>@])],
-+ [],
-+ [with_gimp=check])
-+
-+have_gimp=no
-+AS_IF([test "x$with_gimp" != xno],
-+ [PKG_CHECK_MODULES(GIMP, gimpui-2.0,
-+ [ have_gimp=yes
-+ GIMP_LIBDIR=`$pkg_prefix --variable=gimplibdir gimp-2.0` ],
-+ [ have_gimp=no
-+ GIMP_LIBDIR=
-+ if test "x$with_gimp" != xcheck; then
-+ AC_MSG_FAILURE(
-+ [--with-gimp was given, but test for gimp failed])
-+ fi
-+ ] ) ] )
-+
- AM_CONDITIONAL(MAKE_GIMP, test $have_gimp = yes)
- AC_SUBST(GIMP_CFLAGS)
- AC_SUBST(GIMP_LIBS)
-@@ -122,14 +149,27 @@
- [ AC_DEFINE_UNQUOTED(HAVE_GIMP_2_6, 0, have Gimp 2.6 or later) ])
- fi
-
--PKG_CHECK_MODULES(CINEPAINT, cinepaint-gtk >= 0.22,
-- [ have_cinepaint=yes
-- CINEPAINT_LIBDIR=`$pkg_prefix --variable=libdir cinepaint-gtk`
-- CINEPAINT_PROGRAMPLUGINDIR=`$pkg_prefix --variable=programplugindir cinepaint-gtk` ],
-- [ have_cinepaint=no
-- CINEPAINT_LIBDIR=
-- CINEPAINT_PROGRAMPLUGINDIR=
-- AC_MSG_RESULT($CINEPAINT_PKG_ERRORS) ] )
-+AC_ARG_WITH([cinepaint],
-+ [AS_HELP_STRING([--with-cinepaint],
-+ [build cinepaint plugin @<:@default=check@:>@])],
-+ [],
-+ [with_cinepaint=check])
-+
-+have_cinepaint=no
-+AS_IF([test "x$with_cinepaint" != xno],
-+ [PKG_CHECK_MODULES(CINEPAINT, cinepaint-gtk >= 0.22,
-+ [ have_cinepaint=yes
-+ CINEPAINT_LIBDIR=`$pkg_prefix --variable=libdir cinepaint-gtk`
-+ CINEPAINT_PROGRAMPLUGINDIR=`$pkg_prefix --variable=programplugindir cinepaint-gtk` ],
-+ [ have_cinepaint=no
-+ CINEPAINT_LIBDIR=
-+ CINEPAINT_PROGRAMPLUGINDIR=
-+ if test "x$with_cinepaint" != xcheck; then
-+ AC_MSG_FAILURE(
-+ [--with-cinepaint was given, but test for cinepaint failed])
-+ fi
-+ ] ) ] )
-+
- AM_CONDITIONAL(MAKE_CINEPAINT, test $have_cinepaint = yes)
- AC_SUBST(CINEPAINT_CFLAGS)
- AC_SUBST(CINEPAINT_LIBS)
-@@ -189,23 +229,43 @@
- AC_CHECK_LIB(cfitsio, ffcmsg))
- have_fits=${ac_cv_lib_cfitsio_ffcmsg:-no}
-
--PKG_CHECK_MODULES(EXIV2, exiv2 >= 0.11,
-- [ have_exiv2=yes
-- AC_DEFINE(HAVE_EXIV2, 1, have exiv2) ],
-- [ have_exiv2=no
-- AC_MSG_RESULT($EXIV2_PKG_ERRORS) ] )
-+# check for exiv2 library
-+AC_ARG_WITH([exiv2],
-+ [AS_HELP_STRING([--with-exiv2],
-+ [use exiv2 library for exif information extraction @<:@default=check@:>@])],
-+ [],
-+ [with_exiv2=check])
-+
-+have_exiv2=no
-+AS_IF([test "x$with_exiv2" != xno],
-+ [PKG_CHECK_MODULES(EXIV2, exiv2 >= 0.11,
-+ [ have_exiv2=yes
-+ AC_DEFINE(HAVE_EXIV2, 1, have exiv2) ],
-+ [ have_exiv2=no
-+ if test "x$with_exiv2" != xcheck; then
-+ AC_MSG_FAILURE(
-+ [--with-exiv2 was given, but test for exiv2 failed])
-+ fi
-+ ] ) ] )
-
- # Check for the lensfun library
--AC_MSG_CHECKING(whether to use lensfun)
--AC_ARG_WITH(lensfun,
-- [ --with-lensfun use the lensfun library - experimental feature,
-- read http://ufraw.sourceforge.net/lensfun.html before using it. ],
-- [ AC_MSG_RESULT(yes)
-- PKG_CHECK_MODULES(LENSFUN, lensfun >= 0.2.3,
-- [ have_lensfun=yes
-- AC_DEFINE(HAVE_LENSFUN, 1, have lensfun library) ] ) ],
-- [ have_lensfun=no
-- AC_MSG_RESULT($have_lensfun) ] )
-+AC_ARG_WITH([lensfun],
-+ [AS_HELP_STRING([--with-lensfun],
-+ [use the lensfun library - experimental feature, read http://ufraw.sourceforge.net/lensfun.html before using it. @<:@default=check@:>@])],
-+ [],
-+ [with_lensfun=check])
-+
-+have_lensfun=no
-+AS_IF([test "x$with_lensfun" != xno],
-+ [PKG_CHECK_MODULES(LENSFUN, lensfun >= 0.2.3,
-+ [ have_lensfun=yes
-+ AC_DEFINE(HAVE_LENSFUN, 1, have lensfun library) ],
-+ [ have_lensfun=no
-+ if test "x$with_lensfun" != xcheck; then
-+ AC_MSG_FAILURE(
-+ [--with-lensfun was given, but test for lensfun failed])
-+ fi
-+ ] ) ] )
-
- # UFRAW_CPPFLAGS is added to the preprocessor flags AM_CPPFLAGS,
- # affecting also the C and C++ compilers.
diff --git a/media-gfx/ufraw/files/ufraw-0.15-glibc-2.10.patch b/media-gfx/ufraw/files/ufraw-0.15-glibc-2.10.patch
deleted file mode 100644
index 5c29b31599ca..000000000000
--- a/media-gfx/ufraw/files/ufraw-0.15-glibc-2.10.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- ufraw-0.15.old/dcraw.cc 2008-12-23 07:19:41.000000000 +0000
-+++ ufraw-0.15/dcraw.cc 2009-05-28 15:25:51.000000000 +0100
-@@ -8401,7 +8401,7 @@
- argv[argc] = "";
- for (arg=1; (((opm = argv[arg][0]) - 2) | 2) == '+'; ) {
- opt = argv[arg++][1];
-- if ((cp = strchr (sp="nbrkStqmHAC", opt)))
-+ if ((cp = (char*) strchr (sp="nbrkStqmHAC", opt)))
- for (i=0; i < "11411111142"[cp-sp]-'0'; i++)
- if (!isdigit(argv[arg+i][0])) {
- dcraw_message (DCRAW_ERROR,_("Non-numeric argument to \"-%c\"\n"), opt);
-
diff --git a/media-gfx/ufraw/ufraw-0.15-r1.ebuild b/media-gfx/ufraw/ufraw-0.15-r1.ebuild
deleted file mode 100644
index b903ee1b4297..000000000000
--- a/media-gfx/ufraw/ufraw-0.15-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/ufraw/ufraw-0.15-r1.ebuild,v 1.12 2010/12/27 01:27:58 mattst88 Exp $
-
-inherit fdo-mime gnome2-utils autotools
-
-DESCRIPTION="RAW Image format viewer and GIMP plugin"
-HOMEPAGE="http://ufraw.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
-IUSE="contrast exif gimp gnome openmp timezone"
-
-RDEPEND="virtual/jpeg
- =media-libs/lcms-1*
- media-libs/tiff
- >=x11-libs/gtk+-2.4.0
- exif? ( >=media-libs/libexif-0.6.13
- media-gfx/exiv2 )
- gimp? ( >=media-gfx/gimp-2.0 )
- gnome? ( gnome-base/gconf )"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-configure.patch
- epatch "${FILESDIR}"/${P}-glibc-2.10.patch
- eautoreconf
-}
-
-src_compile() {
- econf \
- --without-cinepaint \
- --without-gtkimageview \
- --without-lensfun \
- $(use_enable contrast) \
- $(use_with exif exiv2) \
- $(use_with gimp) \
- $(use_enable gnome mime) \
- $(use_enable openmp) \
- $(use_enable timezone dst-correction)
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc README TODO || die "doc installation failed"
-}
-
-pkg_postinst() {
- if use gnome ; then
- fdo-mime_mime_database_update
- gnome2_gconf_install
- fdo-mime_desktop_database_update
- fi
-}