media-libs/libgig: Security cleanup
authorAndreas Sturmlechner <asturm@gentoo.org>
Sun, 30 Sep 2018 16:06:59 +0000 (18:06 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Sun, 30 Sep 2018 16:06:59 +0000 (18:06 +0200)
Bug: https://bugs.gentoo.org/634878
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

media-libs/libgig/Manifest
media-libs/libgig/libgig-3.3.0.ebuild [deleted file]
media-libs/libgig/libgig-4.0.0-r1.ebuild [deleted file]

index c23e0ff51dc6fa10c4fe366b9f53d60f52b96144..f1eb0a69026b89d87172629169b130a182fdcbd5 100644 (file)
@@ -1,3 +1 @@
-DIST libgig-3.3.0.tar.bz2 338119 BLAKE2B 71135ae9296977925e7c351579643d1d950e87525072a2210e33a67cdf427ca06d38f7ccfb35df5c2a60158f7e3fb9c01a5adf3c81446576fa2b35e4a031121e SHA512 e46c3746eed234303618cef68e21aee86cfc4be785bbacbb4483169450cd98d379a2598b44c1f90c4d9fb8d87f3fea74e5faa45291561b52c1d0d02de46a52a7
-DIST libgig-4.0.0.tar.bz2 700905 BLAKE2B 909e4c88de0859be29ff52ed2dc366b056388252fefe426add8937ebf9630c6767ef179de6f92176ce2031877c4d4839734ce461396d5bfbdf118157c78cf3f3 SHA512 171eb322a913447708881edad8da5d0d12b873bf36d191cd181dddf67a82446c8400cb4b7a6386b62ac20df8571a1597c6765fa0ef6d443957b5aae03afb345c
 DIST libgig-4.1.0.tar.bz2 538345 BLAKE2B c05a1dfb5a7a3f358008cbde10dc081c9d8593a01bf4458585609cf5736eea3c8cdcedef85d3be6fc3208f27feb253174458f982b51e2e9c7f7b10a81da4c264 SHA512 e88500f5d60d597b383093f904a2356aba7505a3a22b4852fe3fbbe71723fddbfc81029a82edf3c18e46ade519343cdbe87c06c652f982ffd4cfb4c35d5a9a0a
diff --git a/media-libs/libgig/libgig-3.3.0.ebuild b/media-libs/libgig/libgig-3.3.0.ebuild
deleted file mode 100644 (file)
index a9607e0..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DESCRIPTION="a C++ library for loading Gigasampler files and DLS (Downloadable Sounds) Level 1/2 files"
-HOMEPAGE="http://www.linuxsampler.org/libgig/"
-SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="doc"
-
-RDEPEND=">=media-libs/libsndfile-1.0.2
-       >=media-libs/audiofile-0.2.3"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig
-       doc? ( app-doc/doxygen )"
-
-src_compile() {
-       econf
-       emake -j1 || die "emake failed."
-
-       if use doc; then
-               emake -j1 docs || die "emake docs failed."
-       fi
-}
-
-src_install() {
-       emake DESTDIR="${D}" install || die "emake install failed"
-       dodoc AUTHORS ChangeLog NEWS README TODO
-
-       if use doc; then
-               dohtml -r doc/html/*
-       fi
-}
diff --git a/media-libs/libgig/libgig-4.0.0-r1.ebuild b/media-libs/libgig/libgig-4.0.0-r1.ebuild
deleted file mode 100644 (file)
index 74520ea..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib
-
-DESCRIPTION="a C++ library for loading Gigasampler files and DLS (Downloadable Sounds) Level 1/2 files"
-HOMEPAGE="http://www.linuxsampler.org/libgig/"
-SRC_URI="http://download.linuxsampler.org/packages/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc"
-
-RDEPEND=">=media-libs/libsndfile-1.0.2
-       >=media-libs/audiofile-0.2.3"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig
-       doc? ( app-doc/doxygen )"
-
-src_compile() {
-       emake
-
-       if use doc ; then
-               emake docs
-       fi
-}
-
-src_install() {
-       emake DESTDIR="${D}" install
-       dodoc AUTHORS ChangeLog NEWS README TODO
-
-       # For libgig.so to be found at runtime
-       printf "LDPATH=\"${EPREFIX}/usr/$(get_libdir)/libgig/\"" > 99${PN}
-       doenvd "99${PN}"
-
-       if use doc ; then
-               dohtml -r doc/html/*
-       fi
-}