summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Meier <maekke@gentoo.org>2015-07-18 06:40:53 +0000
committerMarkus Meier <maekke@gentoo.org>2015-07-18 06:40:53 +0000
commit733bcac866762ec80fe4a6e69d4e82af9e5b499a (patch)
tree08deafa13495142bfb06d80d9015c0af0c244169 /media-libs/lensfun/lensfun-0.2.8-r1.ebuild
parentStable for HPPA (bug #552014). (diff)
downloadhistorical-733bcac866762ec80fe4a6e69d4e82af9e5b499a.tar.gz
historical-733bcac866762ec80fe4a6e69d4e82af9e5b499a.tar.bz2
historical-733bcac866762ec80fe4a6e69d4e82af9e5b499a.zip
remove old
Package-Manager: portage-2.2.20/cvs/Linux x86_64 Manifest-Sign-Key: 0x072AD062
Diffstat (limited to 'media-libs/lensfun/lensfun-0.2.8-r1.ebuild')
-rw-r--r--media-libs/lensfun/lensfun-0.2.8-r1.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/media-libs/lensfun/lensfun-0.2.8-r1.ebuild b/media-libs/lensfun/lensfun-0.2.8-r1.ebuild
deleted file mode 100644
index 8ead78dcea39..000000000000
--- a/media-libs/lensfun/lensfun-0.2.8-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/lensfun/lensfun-0.2.8-r1.ebuild,v 1.9 2015/05/01 19:15:46 jer Exp $
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit multilib python-single-r1 cmake-utils
-
-DESCRIPTION="lensfun: A library for rectifying and simulating photographic lens distortions"
-HOMEPAGE="http://lensfun.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="LGPL-3 CC-BY-SA-3.0" # See README for reasoning.
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
-IUSE="doc cpu_flags_x86_sse cpu_flags_x86_sse2"
-
-RDEPEND=">=dev-libs/glib-2.28
- media-libs/libpng:0=
- sys-libs/zlib:="
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-PATCHES=(
- "${FILESDIR}"/${PF}-build.patch
- "${FILESDIR}"/${P}-x32.patch
- "${FILESDIR}"/${P}-support-clang-visibility-as-gcc.patch
-)
-
-DOCS=( README docs/mounts.txt )
-
-src_configure() {
- local mycmakeargs=(
- -DDOCDIR="${EPREFIX}"/usr/share/doc/${PF}/html
- -DLIBDIR=$(get_libdir)
- -DBUILD_AUXFUN=ON
- $(cmake-utils_use_build doc)
- $(cmake-utils_use_build cpu_flags_x86_sse FOR_SSE)
- $(cmake-utils_use_build cpu_flags_x86_sse2 FOR_SSE2)
- -DBUILD_STATIC=OFF
- -DBUILD_TESTS=OFF
- )
-
- cmake-utils_src_configure
-}