summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-03-05 20:42:20 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2018-03-05 23:13:39 +0100
commitca7a3ad21e59987f1673fb098b0a8ef654ff7a78 (patch)
treef3053be9ef05037827d0f1f4e4dcc344c25d3ca1 /media-libs/simage
parentsci-geosciences/liblas: Drop old (diff)
downloadgentoo-ca7a3ad21e59987f1673fb098b0a8ef654ff7a78.tar.gz
gentoo-ca7a3ad21e59987f1673fb098b0a8ef654ff7a78.tar.bz2
gentoo-ca7a3ad21e59987f1673fb098b0a8ef654ff7a78.zip
media-libs/simage: Drop old
EAPI2-- Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'media-libs/simage')
-rw-r--r--media-libs/simage/simage-1.7.0.ebuild76
1 files changed, 0 insertions, 76 deletions
diff --git a/media-libs/simage/simage-1.7.0.ebuild b/media-libs/simage/simage-1.7.0.ebuild
deleted file mode 100644
index 52c69c5549a7..000000000000
--- a/media-libs/simage/simage-1.7.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-
-inherit base
-
-DESCRIPTION="Image and video texturing library"
-HOMEPAGE="https://bitbucket.org/Coin3D/simage"
-SRC_URI="https://bitbucket.org/Coin3D/coin/downloads/${P}.tar.gz"
-
-LICENSE="public-domain mpeg2enc"
-KEYWORDS="amd64 ~arm ppc x86"
-SLOT="0"
-IUSE="debug gif jpeg jpeg2k png sndfile static-libs tiff vorbis zlib"
-RESTRICT="mirror bindist" #465086
-
-RDEPEND="
- gif? ( media-libs/giflib )
- jpeg? ( virtual/jpeg )
- jpeg2k? ( media-libs/jasper )
- png? ( media-libs/libpng:0 )
- sndfile? ( media-libs/libsndfile )
- tiff? ( media-libs/tiff:0 )
- vorbis? (
- media-libs/libogg
- media-libs/libvorbis
- )
- zlib? ( sys-libs/zlib )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-
-DOCS=(AUTHORS ChangeLog NEWS README)
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.7.0-pkgconfig-partial.patch
- "${FILESDIR}"/${PN}-1.7.0-libpng15.patch
-)
-
-# --with-pic, two defined (PIC and one for image format, sillyt), no not pass
-# --enable-qimage, broken Qt checks, unable to locate FHS-compliant Qt install
-# --with-x, not used anywhere
-src_configure() {
- econf \
- --disable-qimage \
- --disable-quicktime \
- --with-eps \
- --with-mpeg2enc \
- --with-rgb \
- --with-targa \
- --with-xwd \
- --without-x \
- $(use_with gif) \
- $(use_enable debug) \
- $(use_enable debug symbols) \
- $(use_with jpeg) \
- $(use_with jpeg2k jasper) \
- $(use_with png) \
- $(use_with sndfile libsndfile) \
- $(use_enable static-libs static) \
- $(use_with tiff) \
- $(use_with vorbis oggvorbis) \
- $(use_with zlib)
-}
-
-src_install() {
- # Remove simage from Libs.private
- sed -e '/Libs.private/s/ -lsimage//' -i simage.pc || die
-
- base_src_install
-
- # Remove libtool files when not needed.
- use static-libs || rm -f "${D}"/usr/lib*/*.la
-}