Gentoo Archives: gentoo-commits

From: "Patrick McLean (chutzpah)" <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/gxine: ChangeLog gxine-0.5.903.ebuild
Date: Sun, 03 Aug 2008 02:29:33
Message-Id: E1KPTLe-0006F1-OE@stork.gentoo.org
1 chutzpah 08/08/03 02:29:30
2
3 Modified: ChangeLog
4 Added: gxine-0.5.903.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo x86_64)
8
9 Revision Changes Path
10 1.92 media-video/gxine/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/gxine/ChangeLog?rev=1.92&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/gxine/ChangeLog?rev=1.92&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/gxine/ChangeLog?r1=1.91&r2=1.92
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/gxine/ChangeLog,v
19 retrieving revision 1.91
20 retrieving revision 1.92
21 diff -u -r1.91 -r1.92
22 --- ChangeLog 8 Oct 2007 10:08:29 -0000 1.91
23 +++ ChangeLog 3 Aug 2008 02:29:29 -0000 1.92
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-video/gxine
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/gxine/ChangeLog,v 1.91 2007/10/08 10:08:29 corsair Exp $
28 +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-video/gxine/ChangeLog,v 1.92 2008/08/03 02:29:29 chutzpah Exp $
30 +
31 +*gxine-0.5.903 (03 Aug 2008)
32 +
33 + 03 Aug 2008; Patrick McLean <chutzpah@g.o> +gxine-0.5.903.ebuild:
34 + Version bump.
35
36 08 Oct 2007; Markus Rothe <corsair@g.o> gxine-0.5.11.ebuild:
37 Stable on ppc64
38
39
40
41 1.1 media-video/gxine/gxine-0.5.903.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/gxine/gxine-0.5.903.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/gxine/gxine-0.5.903.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gxine-0.5.903.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-video/gxine/gxine-0.5.903.ebuild,v 1.1 2008/08/03 02:29:29 chutzpah Exp $
51
52 inherit eutils nsplugins fdo-mime libtool
53
54 DESCRIPTION="GTK+ Front-End for libxine"
55 HOMEPAGE="http://xine.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/xine/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
61 IUSE="nls hal lirc nsplugin xinerama xcb"
62
63 RDEPEND="media-libs/libpng
64 >=media-libs/xine-lib-1.1.8
65 >=x11-libs/gtk+-2.8
66 >=dev-libs/glib-2.10
67 >=x11-libs/pango-1.12
68 >=dev-lang/spidermonkey-1.5_rc6-r1
69 lirc? ( app-misc/lirc )
70 nsplugin? ( dev-libs/nspr )
71 x11-libs/libX11
72 x11-libs/libXext
73 x11-libs/libXrender
74 xcb? ( x11-libs/libxcb )
75 hal? ( sys-apps/hal )
76 xinerama? ( x11-libs/libXinerama )
77 nls? ( virtual/libintl )"
78 DEPEND="${RDEPEND}
79 nls? ( sys-devel/gettext )
80 dev-util/pkgconfig
81 x11-libs/libXt
82 x11-libs/libXaw"
83
84 src_unpack() {
85 unpack ${A}
86 cd "${S}"
87 sed -i -e '/ac_have_xinerama/ s:text:test:' \
88 "${S}/configure"{,.ac}
89
90 elibtoolize
91 }
92
93 src_compile() {
94 econf \
95 $(use_enable nls) \
96 $(use_enable lirc) \
97 $(use_with nsplugin browser-plugin) \
98 $(use_with xcb) \
99 $(use_with hal) \
100 $(use_with xinerama) \
101 --disable-gtk-compat \
102 --disable-dependency-tracking || die "econf failed"
103 emake || die "emake failed"
104 }
105
106 src_install() {
107 emake DESTDIR="${D}" \
108 docdir=/usr/share/doc/${PF} \
109 docsdir=/usr/share/doc/${PF} \
110 install || die
111
112 dodoc AUTHORS ChangeLog NEWS README{,.{cs,de}_l10n TODO BUGS
113
114 use nsplugin && inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
115 }
116
117 pkg_postinst() {
118 fdo-mime_desktop_database_update
119 fdo-mime_mime_database_update
120 }