diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2020-01-31 01:38:42 +0100 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2020-01-31 01:39:09 +0100 |
commit | ba7aef47a070873ae75c04b038040f27bd6320d1 (patch) | |
tree | 788ae23b92eef535fc940f370b61067d4adf8a3c /media-libs/simage | |
parent | sci-geosciences/qgis: Raise minimum sci-libs/gdal version to 3.0.4 (diff) | |
download | gentoo-ba7aef47a070873ae75c04b038040f27bd6320d1.tar.gz gentoo-ba7aef47a070873ae75c04b038040f27bd6320d1.tar.bz2 gentoo-ba7aef47a070873ae75c04b038040f27bd6320d1.zip |
media-libs/simage: removed old 1.7.0-r1
Package-Manager: Portage-2.3.86, Repoman-2.3.20
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-libs/simage')
-rw-r--r-- | media-libs/simage/Manifest | 1 | ||||
-rw-r--r-- | media-libs/simage/simage-1.7.0-r1.ebuild | 75 |
2 files changed, 0 insertions, 76 deletions
diff --git a/media-libs/simage/Manifest b/media-libs/simage/Manifest index 58cf77d47d71..dff8036465fa 100644 --- a/media-libs/simage/Manifest +++ b/media-libs/simage/Manifest @@ -1,2 +1 @@ -DIST simage-1.7.0.tar.gz 752602 BLAKE2B feca31f8d41ae67271e43c9c664243d872985068ffc8496d43c9b59a47ae5c3067956acced3ff9abbdc5a360aec662e3972a93d8523a704a72ac9d12dd4cfaa0 SHA512 944ec009dd7041692073ddd9795fdd633fe3bc9101f1c1234e8be3746487a9431aecf52abde01563e719153fbe1ca7d29f9b64042e4a64ea08d6cb14666dd89f DIST simage-1.7.1-src.zip 4145907 BLAKE2B 99f5f5f46530c2600d47ab0bb080d69281447ee96a2bb9b63ebe5a5c56e235f34ca8bd97b0d6adedf061fe221a61d144d4ccce00123941a9c74d72b1f190030d SHA512 b3c81fa363cd570b3512cd2984f154b83876353ec389dc35afcac4e4ddf8d301eef5b0f8df93c38b9caa6afd81fbe53d3943ad05e041b77734f03c26d2e12867 diff --git a/media-libs/simage/simage-1.7.0-r1.ebuild b/media-libs/simage/simage-1.7.0-r1.ebuild deleted file mode 100644 index f491e59cb38b..000000000000 --- a/media-libs/simage/simage-1.7.0-r1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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 ~hppa ~ia64 ppc ppc64 ~sparc x86" -SLOT="0" -IUSE="debug gif jpeg png sndfile static-libs tiff vorbis zlib" -RESTRICT="mirror bindist" #465086 - -RDEPEND=" - gif? ( media-libs/giflib ) - jpeg? ( virtual/jpeg:0= ) - 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) \ - --without-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 - - default - - # Remove libtool files when not needed. - if use static-libs; then - rm -f "${ED}"/usr/lib*/*.la || die - fi -} |