Gentoo Archives: gentoo-commits

From: "Daniel Gryniewicz (dang)" <dang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-www/swfdec-mozilla: ChangeLog swfdec-mozilla-0.7.4.ebuild
Date: Sun, 03 Aug 2008 14:08:34
Message-Id: E1KPeG7-0002CN-OF@stork.gentoo.org
1 dang 08/08/03 14:08:31
2
3 Modified: ChangeLog
4 Added: swfdec-mozilla-0.7.4.ebuild
5 Log:
6 Def version of swfdec-mozilla
7 (Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo x86_64)
8
9 Revision Changes Path
10 1.10 net-www/swfdec-mozilla/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/swfdec-mozilla/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/swfdec-mozilla/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/swfdec-mozilla/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-www/swfdec-mozilla/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 23 Jul 2008 18:16:07 -0000 1.9
23 +++ ChangeLog 3 Aug 2008 14:08:31 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-www/swfdec-mozilla
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-www/swfdec-mozilla/ChangeLog,v 1.9 2008/07/23 18:16:07 dang Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-www/swfdec-mozilla/ChangeLog,v 1.10 2008/08/03 14:08:31 dang Exp $
29 +
30 +*swfdec-mozilla-0.7.4 (03 Aug 2008)
31 +
32 + 03 Aug 2008; Daniel Gryniewicz <dang@g.o>
33 + +swfdec-mozilla-0.7.4.ebuild:
34 + Def version of swfdec-mozilla
35
36 23 Jul 2008; Daniel Gryniewicz <dang@g.o> metadata.xml:
37 Gnome is taking maintainership, since pclouds is retiring
38
39
40
41 1.1 net-www/swfdec-mozilla/swfdec-mozilla-0.7.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/swfdec-mozilla/swfdec-mozilla-0.7.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-www/swfdec-mozilla/swfdec-mozilla-0.7.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: swfdec-mozilla-0.7.4.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/net-www/swfdec-mozilla/swfdec-mozilla-0.7.4.ebuild,v 1.1 2008/08/03 14:08:31 dang Exp $
51
52 inherit multilib versionator eutils
53
54 MY_PV=$(get_version_component_range 1-2)
55
56 DESCRIPTION="Swfdec-mozilla is a decoder/renderer netscape style plugin for Macromedia Flash animations."
57 HOMEPAGE="http://swfdec.freedesktop.org/"
58 SRC_URI="http://swfdec.freedesktop.org/download/${PN}/${MY_PV}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE=""
64
65 RDEPEND=">=dev-libs/glib-2
66 >=media-libs/swfdec-0.6"
67 DEPEND="${RDEPEND}
68 >=dev-util/intltool-0.35
69 >=dev-util/pkgconfig-0.20"
70
71 pkg_setup() {
72 if ! built_with_use media-libs/swfdec gtk ; then
73 einfo "You must build swfdec with the gtk USE flag to build"
74 einfo "swfdec-gtk, which is required by ${PN}"
75 die "Please re-emerge media-libs/swfdec with the gtk USE flag"
76 fi
77 }
78
79 src_compile() {
80 econf --with-plugin-dir=/usr/$(get_libdir)/nsbrowser/plugins
81 emake || die "emake failed"
82 }
83
84 src_install() {
85 exeinto /usr/$(get_libdir)/nsbrowser/plugins
86 doexe src/.libs/libswfdecmozilla.so || die "libswfdecmozilla.so failed"
87
88 insinto /usr/$(get_libdir)/nsbrowser/plugins
89 doins src/libswfdecmozilla.la
90 }