summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-07-10 08:47:45 +0100
committerSam James <sam@gentoo.org>2022-07-10 08:49:04 +0100
commit8bf3f0ba00beeeed54b5a735e09452caa6ddfb27 (patch)
tree509494325b5b68ce52ee482c26d64604aedb5902 /media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
parentmedia-gfx/potrace: drop 1.15 (diff)
downloadgentoo-8bf3f0ba00beeeed54b5a735e09452caa6ddfb27.tar.gz
gentoo-8bf3f0ba00beeeed54b5a735e09452caa6ddfb27.tar.bz2
gentoo-8bf3f0ba00beeeed54b5a735e09452caa6ddfb27.zip
media-libs/libdvbpsi: drop 1.3.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild')
-rw-r--r--media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild b/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
deleted file mode 100644
index f9e41b1f8950..000000000000
--- a/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="library for MPEG TS/DVB PSI tables decoding and generation"
-HOMEPAGE="https://www.videolan.org/libdvbpsi"
-SRC_URI="https://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-# Sublot == libdvbpsi.so major
-SLOT="0/10"
-KEYWORDS="~alpha amd64 arm arm64 ppc ppc64 sparc x86"
-IUSE="doc static-libs"
-
-RDEPEND=""
-DEPEND="
- doc? (
- app-doc/doxygen
- >=media-gfx/graphviz-2.26
- )"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-src_prepare() {
- sed -e '/CFLAGS/s:-O2::' -e '/CFLAGS/s:-O6::' -e '/CFLAGS/s:-Werror::' -i configure || die
- default
-}
-
-src_configure() {
- econf \
- $(use_enable static-libs static) \
- --enable-release
-}
-
-src_compile() {
- default
- use doc && emake doc
-}
-
-src_install() {
- use doc && local HTML_DOCS=( doc/doxygen/html/. )
- default
- find "${D}" -name '*.la' -delete || die
-}