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/libdvdcss: ChangeLog libdvdcss-1.2.10.ebuild
Date: Fri, 29 Aug 2008 21:50:34
Message-Id: E1KZBrS-00062M-Nu@stork.gentoo.org
1 aballier 08/08/29 21:50:30
2
3 Modified: ChangeLog
4 Added: libdvdcss-1.2.10.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26.3 x86_64)
8
9 Revision Changes Path
10 1.75 media-libs/libdvdcss/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvdcss/ChangeLog?rev=1.75&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvdcss/ChangeLog?rev=1.75&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvdcss/ChangeLog?r1=1.74&r2=1.75
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libdvdcss/ChangeLog,v
19 retrieving revision 1.74
20 retrieving revision 1.75
21 diff -u -r1.74 -r1.75
22 --- ChangeLog 16 Jun 2008 11:31:15 -0000 1.74
23 +++ ChangeLog 29 Aug 2008 21:50:30 -0000 1.75
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libdvdcss
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdcss/ChangeLog,v 1.74 2008/06/16 11:31:15 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdcss/ChangeLog,v 1.75 2008/08/29 21:50:30 aballier Exp $
29 +
30 +*libdvdcss-1.2.10 (29 Aug 2008)
31 +
32 + 29 Aug 2008; Alexis Ballier <aballier@g.o>
33 + +libdvdcss-1.2.10.ebuild:
34 + version bump
35
36 16 Jun 2008; Diego Pettenò <flameeyes@g.o>
37 libdvdcss-1.2.9-r1.ebuild:
38
39
40
41 1.1 media-libs/libdvdcss/libdvdcss-1.2.10.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvdcss/libdvdcss-1.2.10.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libdvdcss/libdvdcss-1.2.10.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libdvdcss-1.2.10.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdcss/libdvdcss-1.2.10.ebuild,v 1.1 2008/08/29 21:50:30 aballier Exp $
51
52 inherit eutils autotools
53
54 DESCRIPTION="A portable abstraction library for DVD decryption"
55 HOMEPAGE="http://www.videolan.org/developers/libdvdcss.html"
56 SRC_URI="http://www.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="1.2"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
61 IUSE="doc"
62
63 DEPEND="doc? ( app-doc/doxygen )"
64 RDEPEND=""
65
66 src_unpack() {
67 unpack ${A}
68 cd "${S}"
69
70 sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' \
71 "${S}"/test/Makefile.am \
72 || die "unable to disable tests building"
73
74 eautoreconf
75 }
76
77 src_compile() {
78 # See bug #98854, requires access to fonts cache for TeX
79 # No need to use addwrite, just set TeX font cache in the sandbox
80 use doc && export VARTEXFONTS="${T}/fonts"
81
82 econf \
83 --enable-static --enable-shared \
84 $(use_enable doc) \
85 --disable-dependency-tracking || die
86 emake || die
87 }
88
89 src_install() {
90 emake install DESTDIR="${D}" || die
91
92 dodoc AUTHORS ChangeLog NEWS README
93 use doc && dohtml doc/html/*
94 use doc && dodoc doc/latex/refman.ps
95 }