Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdvbpsi/
Date: Tue, 20 Feb 2018 19:28:00
Message-Id: 1519154867.ef302aa940c57a08fa70bbb658ddba6a5edb8564.candrews@gentoo
1 commit: ef302aa940c57a08fa70bbb658ddba6a5edb8564
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 20 19:26:06 2018 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 20 19:27:47 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef302aa9
7
8 media-libs/libdvbpsi: 1.3.2 version bump
9
10 Closes: https://bugs.gentoo.org/648328
11 Package-Manager: Portage-2.3.24, Repoman-2.3.6
12
13 media-libs/libdvbpsi/Manifest | 1 +
14 media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild | 45 +++++++++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/media-libs/libdvbpsi/Manifest b/media-libs/libdvbpsi/Manifest
18 index e169df3fef6..31a919336a5 100644
19 --- a/media-libs/libdvbpsi/Manifest
20 +++ b/media-libs/libdvbpsi/Manifest
21 @@ -5,3 +5,4 @@ DIST libdvbpsi-1.1.2.tar.bz2 450573 BLAKE2B 118a8bad293c9186086cfeccfef444ff14c7
22 DIST libdvbpsi-1.2.0.tar.bz2 461372 BLAKE2B 1094c988d7db32736dc6b77d920432b642db11824c3e60622277057dc5ddbb70c1574f8e91a42a5fdc88fd59d36218e67482e3820afaa46994827abf778e07fa SHA512 951db13f5645d4d6a160719fc6ac97fd31a32d5d17cb8e26db94702e65b6fac3d4e7a99c3c417e09fe5ce33f3b0c0ef86206c77b36816dcd8a3bd5b0bb4a9684
23 DIST libdvbpsi-1.3.0.tar.bz2 459083 BLAKE2B 50e8e1780ddaf9a07bd8121d1e179464a6105eaad3d0aa162f9b217863cfc63168a84f60be9de071cf5ee8389a671fcd1375629d452ed77727bb3eaed19a7b19 SHA512 59f097a1032e8cf461210128c7468da4204f077a61f68f2be3310e60004774157335cd7cba82271fcc89b7b6b17a12a06b6214357227ec9976281d9b50565c54
24 DIST libdvbpsi-1.3.1.tar.bz2 479964 BLAKE2B a29522d39544d90b34915e2ca9fc9ca455a556097c63639d7604679275b57378822adfb4c022478884c897cdde2c0e5f84355fdecf35fd6bb305d1fc275eed8b SHA512 015d586d1ef1fd35fc4b6a5b79d1ce4570e07070840d7070938c38be64853fb987172ad225f000156166559709061de6f901237bfc0f7f26f219b5950b57c27a
25 +DIST libdvbpsi-1.3.2.tar.bz2 487807 BLAKE2B ea8d1e121e47d2257d8537beac792e3a420ac957dbf3ec6d89f0c4d063e249616bbc8f3e14ed37769b676ed18d5d4c3c6a33e2a706217854eb2ded91e7c503db SHA512 cb59c2e66a214cad7bb96aa1f80a178399fcd80da9fc05b22c72763f2cd818bfab3724d36eee4c6467fb8bc8bae18b1d8afec64c02e8e47cd7a6e887f0230309
26
27 diff --git a/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild b/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
28 new file mode 100644
29 index 00000000000..2edff06bb8a
30 --- /dev/null
31 +++ b/media-libs/libdvbpsi/libdvbpsi-1.3.2.ebuild
32 @@ -0,0 +1,45 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +DESCRIPTION="library for MPEG TS/DVB PSI tables decoding and generation"
39 +HOMEPAGE="https://www.videolan.org/libdvbpsi"
40 +SRC_URI="https://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
41 +
42 +LICENSE="LGPL-2.1"
43 +# Sublot == libdvbpsi.so major
44 +SLOT="0/10"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
46 +IUSE="doc static-libs"
47 +
48 +RDEPEND=""
49 +DEPEND="
50 + doc? (
51 + app-doc/doxygen
52 + >=media-gfx/graphviz-2.26
53 + )"
54 +
55 +DOCS=( AUTHORS ChangeLog NEWS README )
56 +
57 +src_prepare() {
58 + sed -e '/CFLAGS/s:-O2::' -e '/CFLAGS/s:-O6::' -e '/CFLAGS/s:-Werror::' -i configure || die
59 + default
60 +}
61 +
62 +src_configure() {
63 + econf \
64 + $(use_enable static-libs static) \
65 + --enable-release
66 +}
67 +
68 +src_compile() {
69 + default
70 + use doc && emake doc
71 +}
72 +
73 +src_install() {
74 + use doc && local HTML_DOCS=( doc/doxygen/html/. )
75 + default
76 + find "${D}" -name '*.la' -delete || die
77 +}