Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libdvbpsi: libdvbpsi-0.1.7.ebuild ChangeLog
Date: Fri, 23 Apr 2010 11:40:32
Message-Id: 20100423114025.07ED8317E1@corvid.gentoo.org
1 aballier 10/04/23 11:40:24
2
3 Modified: ChangeLog
4 Added: libdvbpsi-0.1.7.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.41 media-libs/libdvbpsi/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvbpsi/ChangeLog?rev=1.41&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvbpsi/ChangeLog?rev=1.41&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvbpsi/ChangeLog?r1=1.40&r2=1.41
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libdvbpsi/ChangeLog,v
19 retrieving revision 1.40
20 retrieving revision 1.41
21 diff -u -r1.40 -r1.41
22 --- ChangeLog 13 Nov 2009 00:35:31 -0000 1.40
23 +++ ChangeLog 23 Apr 2010 11:40:24 -0000 1.41
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libdvbpsi
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvbpsi/ChangeLog,v 1.40 2009/11/13 00:35:31 josejx Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvbpsi/ChangeLog,v 1.41 2010/04/23 11:40:24 aballier Exp $
30 +
31 +*libdvbpsi-0.1.7 (23 Apr 2010)
32 +
33 + 23 Apr 2010; Alexis Ballier <aballier@g.o> +libdvbpsi-0.1.7.ebuild:
34 + version bump
35
36 13 Nov 2009; Joseph Jezak <josejx@g.o> libdvbpsi-0.1.6.ebuild:
37 Marked ppc64 stable.
38
39
40
41 1.1 media-libs/libdvbpsi/libdvbpsi-0.1.7.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvbpsi/libdvbpsi-0.1.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvbpsi/libdvbpsi-0.1.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libdvbpsi-0.1.7.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libdvbpsi/libdvbpsi-0.1.7.ebuild,v 1.1 2010/04/23 11:40:24 aballier Exp $
51
52 IUSE="doc"
53
54 DESCRIPTION="library for MPEG TS/DVB PSI tables decoding and generation"
55 HOMEPAGE="http://www.videolan.org/libdvbpsi"
56 SRC_URI="http://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 # doxygen missing: ~ia64
61 KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
62
63 DEPEND="doc? (
64 >=app-doc/doxygen-1.2.16
65 media-gfx/graphviz
66 )"
67 RDEPEND=""
68
69 pkg_setup() {
70 if use doc; then
71 # Making the documentation requires that /usr/bin/dot from
72 # media-libs/graphviz supports PNG output.
73 # This is an automagic dependency :(, Bug #181147
74 # Check that /usr/bin/dot supports png by calling it with
75 # an unsupported format (-Txxx) to get a list of supported formats
76
77 if /usr/bin/dot -Txxx 2>&1 | grep -q png ; then
78 # dot supports png
79 :
80 else
81 die "You need to recompile media-gfx/graphviz with png support."
82 fi
83 fi
84 }
85
86 src_compile() {
87 econf --enable-release
88
89 emake || die "emake failed"
90
91 if use doc; then
92 einfo "Attempting to build documentation"
93 emake doc || die "Could not build documentation."
94 else
95 einfo "Documentation was not built"
96 fi
97 }
98
99 src_install () {
100 emake DESTDIR="${D}" install || die
101 use doc && dohtml "${S}"/doc/doxygen/html/*
102 dodoc AUTHORS INSTALL README NEWS
103 }