diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-05-29 12:15:01 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-05-29 12:15:01 +0000 |
commit | e01d7f199e8f08da912fc640d15b85853c4a41f9 (patch) | |
tree | c2591bf4efa8e5b09a48fcfa7ed567efacc6bff1 /media-libs/libopenraw | |
parent | fix compatability with scons >=0.98.3 as reported by coldwind in bug 223997 (diff) | |
download | gentoo-2-e01d7f199e8f08da912fc640d15b85853c4a41f9.tar.gz gentoo-2-e01d7f199e8f08da912fc640d15b85853c4a41f9.tar.bz2 gentoo-2-e01d7f199e8f08da912fc640d15b85853c4a41f9.zip |
old
(Portage version: 2.1.5.2)
Diffstat (limited to 'media-libs/libopenraw')
-rw-r--r-- | media-libs/libopenraw/files/libopenraw-0.0.4-disable-ljpegtest.patch | 29 | ||||
-rw-r--r-- | media-libs/libopenraw/libopenraw-0.0.4.ebuild | 40 |
2 files changed, 0 insertions, 69 deletions
diff --git a/media-libs/libopenraw/files/libopenraw-0.0.4-disable-ljpegtest.patch b/media-libs/libopenraw/files/libopenraw-0.0.4-disable-ljpegtest.patch deleted file mode 100644 index 551744e5b1a3..000000000000 --- a/media-libs/libopenraw/files/libopenraw-0.0.4-disable-ljpegtest.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff -ur libopenraw-0.0.4.orig/test/Makefile.am libopenraw-0.0.4/test/Makefile.am ---- libopenraw-0.0.4.orig/test/Makefile.am 2008-01-02 06:37:16.000000000 +0200 -+++ libopenraw-0.0.4/test/Makefile.am 2008-01-20 16:47:30.000000000 +0200 -@@ -1,5 +1,5 @@ - --TESTS = fileio ljpegtest -+TESTS = fileio - TESTS_ENVIRONMENT = - - OPENRAW_LIB = $(top_builddir)/lib/libopenraw.la -@@ -8,9 +8,7 @@ - -I$(top_srcdir)/include \ - -I$(top_srcdir)/lib - --check_PROGRAMS = fileio ciffcontainertest ljpegtest -- --EXTRA_DIST = ljpegtest1.jpg -+check_PROGRAMS = fileio ciffcontainertest - - fileio_LDFLAGS = -L$(top_builddir)/lib/io - fileio_LDADD = -lio -@@ -18,7 +16,3 @@ - - ciffcontainertest_SOURCES = ciffcontainertest.cpp - ciffcontainertest_LDADD = $(OPENRAW_LIB) -- --ljpegtest_SOURCES = ljpegtest.cpp --ljpegtest_LDFLAGS = -static @BOOST_UNIT_TEST_FRAMEWORK_LDFLAGS@ --ljpegtest_LDADD = $(OPENRAW_LIB) @BOOST_UNIT_TEST_FRAMEWORK_LIBS@ diff --git a/media-libs/libopenraw/libopenraw-0.0.4.ebuild b/media-libs/libopenraw/libopenraw-0.0.4.ebuild deleted file mode 100644 index 00612837f895..000000000000 --- a/media-libs/libopenraw/libopenraw-0.0.4.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libopenraw/libopenraw-0.0.4.ebuild,v 1.8 2008/03/23 18:16:16 armin76 Exp $ - -inherit autotools eutils - -DESCRIPTION="Decoding library for RAW image formats" -HOMEPAGE="http://libopenraw.freedesktop.org" -SRC_URI="http://${PN}.freedesktop.org/download/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86" -IUSE="gtk" - -RDEPEND="dev-libs/boost - media-libs/jpeg - gtk? ( >=x11-libs/gtk+-2 )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_unpack() { - unpack ${A} - cd "${S}" - - # http://bugs.freedesktop.org/show_bug.cgi?id=13659 - epatch "${FILESDIR}"/${P}-disable-ljpegtest.patch - - AT_M4DIR="m4" eautoreconf -} - -src_compile() { - econf $(use_enable gtk gnome) - emake || die "emake failed." -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc AUTHORS ChangeLog NEWS README TODO -} |