diff options
-rw-r--r-- | media-libs/lensfun/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/lensfun/lensfun-0.2.3.ebuild | 43 |
2 files changed, 4 insertions, 44 deletions
diff --git a/media-libs/lensfun/ChangeLog b/media-libs/lensfun/ChangeLog index 3eaa925388b3..ace61371ac87 100644 --- a/media-libs/lensfun/ChangeLog +++ b/media-libs/lensfun/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/lensfun # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.15 2010/01/31 17:41:23 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/ChangeLog,v 1.16 2010/02/14 10:29:06 maekke Exp $ + + 14 Feb 2010; Markus Meier <maekke@gentoo.org> -lensfun-0.2.3.ebuild: + old 31 Jan 2010; Raúl Porcel <armin76@gentoo.org> lensfun-0.2.4.ebuild: arm stable wrt #293850 diff --git a/media-libs/lensfun/lensfun-0.2.3.ebuild b/media-libs/lensfun/lensfun-0.2.3.ebuild deleted file mode 100644 index c733a0a68631..000000000000 --- a/media-libs/lensfun/lensfun-0.2.3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/lensfun-0.2.3.ebuild,v 1.7 2009/10/05 21:56:16 volkmar Exp $ - -inherit eutils - -DESCRIPTION="lensfun: A library for rectifying and simulating photographic lens -distortions" -HOMEPAGE="http://lensfun.berlios.de/" -SRC_URI="mirror://berlios/lensfun/${P}.tar.bz2" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86" -IUSE="doc" - -RDEPEND=" - >=dev-libs/glib-2.0 - >=media-libs/libpng-1.0" -DEPEND="${RDEPEND} - doc? ( >=app-doc/doxygen-1.5.0 )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-as-needed.patch - epatch "${FILESDIR}"/${P}-glibc-2.10.patch - - # disable stripping - sed -i -e 's:GCC.LDFLAGS.release = -s:GCC.LDFLAGS.release =:g' \ - build/mak/compiler/gcc.mak -} - -src_compile() { - # econf does NOT work - ./configure --prefix=/usr || die - emake all V=1 || die -} - -src_install() { - emake DESTDIR="${D}" install || die - # TODO remove docs if ! use doc -} |