diff options
author | Craig Andrews <candrews@gentoo.org> | 2017-12-09 13:51:58 -0500 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2017-12-16 00:40:09 -0500 |
commit | 13f83e359897d22599bc21bf0959a7a67ed0adbe (patch) | |
tree | d1ca4266b3e1590ca7f34360aeda1d580fba7fb0 /media-libs/libdvbpsi/libdvbpsi-1.3.1.ebuild | |
parent | sys-apps/systemd: 236 version bump (diff) | |
download | gentoo-13f83e359897d22599bc21bf0959a7a67ed0adbe.tar.gz gentoo-13f83e359897d22599bc21bf0959a7a67ed0adbe.tar.bz2 gentoo-13f83e359897d22599bc21bf0959a7a67ed0adbe.zip |
media-libs/libdvbpsi: 1.3.1 version bump
Use EAPI=6
Closes: https://bugs.gentoo.org/640412
Package-Manager: Portage-2.3.17, Repoman-2.3.6
Diffstat (limited to 'media-libs/libdvbpsi/libdvbpsi-1.3.1.ebuild')
-rw-r--r-- | media-libs/libdvbpsi/libdvbpsi-1.3.1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/media-libs/libdvbpsi/libdvbpsi-1.3.1.ebuild b/media-libs/libdvbpsi/libdvbpsi-1.3.1.ebuild new file mode 100644 index 000000000000..ee86fd889ddd --- /dev/null +++ b/media-libs/libdvbpsi/libdvbpsi-1.3.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2017 Gentoo Foundation +# 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 ~amd64-fbsd ~x86-fbsd" +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 +} |