summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2011-11-04 12:09:35 +0000
committerAlexis Ballier <aballier@gentoo.org>2011-11-04 12:09:35 +0000
commitd9c890df65b1354df24c2f911e215727a2c2158c (patch)
tree62b18316a393cd15390619550e260cadae43eef5 /media-libs
parentAdd ~x86-fbsd (diff)
downloadgentoo-2-d9c890df65b1354df24c2f911e215727a2c2158c.tar.gz
gentoo-2-d9c890df65b1354df24c2f911e215727a2c2158c.tar.bz2
gentoo-2-d9c890df65b1354df24c2f911e215727a2c2158c.zip
version bump
(Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/libdvbpsi/ChangeLog7
-rw-r--r--media-libs/libdvbpsi/libdvbpsi-0.2.2.ebuild44
2 files changed, 50 insertions, 1 deletions
diff --git a/media-libs/libdvbpsi/ChangeLog b/media-libs/libdvbpsi/ChangeLog
index e5593d1a055f..8f25b8a518cd 100644
--- a/media-libs/libdvbpsi/ChangeLog
+++ b/media-libs/libdvbpsi/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-libs/libdvbpsi
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvbpsi/ChangeLog,v 1.50 2011/10/17 20:59:13 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvbpsi/ChangeLog,v 1.51 2011/11/04 12:09:35 aballier Exp $
+
+*libdvbpsi-0.2.2 (04 Nov 2011)
+
+ 04 Nov 2011; Alexis Ballier <aballier@gentoo.org> +libdvbpsi-0.2.2.ebuild:
+ version bump
17 Oct 2011; Markus Meier <maekke@gentoo.org> libdvbpsi-0.2.1.ebuild:
arm stable, bug #386701
diff --git a/media-libs/libdvbpsi/libdvbpsi-0.2.2.ebuild b/media-libs/libdvbpsi/libdvbpsi-0.2.2.ebuild
new file mode 100644
index 000000000000..2dbd0590e47d
--- /dev/null
+++ b/media-libs/libdvbpsi/libdvbpsi-0.2.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvbpsi/libdvbpsi-0.2.2.ebuild,v 1.1 2011/11/04 12:09:35 aballier Exp $
+
+EAPI=4
+
+DESCRIPTION="library for MPEG TS/DVB PSI tables decoding and generation"
+HOMEPAGE="http://www.videolan.org/libdvbpsi"
+SRC_URI="http://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="doc static-libs"
+
+RDEPEND=""
+DEPEND="
+ doc? (
+ app-doc/doxygen
+ >=media-gfx/graphviz-2.26
+ )" # Require recent enough graphviz wrt #181147
+
+DOCS=( AUTHORS ChangeLog NEWS README TODO )
+
+src_prepare() {
+ sed -e '/CFLAGS/s:-O2::' -e '/CFLAGS/s:-O6::' -i configure || die
+}
+
+src_configure() {
+ econf \
+ $(use_enable static-libs static) \
+ --enable-release
+}
+
+src_compile() {
+ emake
+ use doc && emake doc
+}
+
+src_install() {
+ default
+ use doc && dohtml doc/doxygen/html/*
+ rm -f "${ED}"usr/lib*/${PN}.la
+}