Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/DirectFB-extra: ChangeLog DirectFB-extra-1.0.0-r1.ebuild
Date: Sun, 02 Dec 2007 22:29:49
Message-Id: E1IyxJo-0000hn-Fr@stork.gentoo.org
1 vapier 07/12/02 22:29:44
2
3 Modified: ChangeLog
4 Added: DirectFB-extra-1.0.0-r1.ebuild
5 Log:
6 Add support for USE="ffmpeg fusion svg zlib" as proposed by Christian Ruppert (idl0r) in #171582.
7 (Portage version: 2.1.4_rc4)
8
9 Revision Changes Path
10 1.20 dev-libs/DirectFB-extra/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/DirectFB-extra/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/DirectFB-extra/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/DirectFB-extra/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/DirectFB-extra/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 16 Aug 2007 16:42:56 -0000 1.19
23 +++ ChangeLog 2 Dec 2007 22:29:43 -0000 1.20
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-libs/DirectFB-extra
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/DirectFB-extra/ChangeLog,v 1.19 2007/08/16 16:42:56 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/DirectFB-extra/ChangeLog,v 1.20 2007/12/02 22:29:43 vapier Exp $
29 +
30 +*DirectFB-extra-1.0.0-r1 (02 Dec 2007)
31 +
32 + 02 Dec 2007; Mike Frysinger <vapier@g.o>
33 + +DirectFB-extra-1.0.0-r1.ebuild:
34 + Add support for USE="ffmpeg fusion svg zlib" as proposed by Christian
35 + Ruppert (idl0r) in #171582.
36
37 *DirectFB-extra-1.0.0 (16 Aug 2007)
38
39
40
41
42 1.1 dev-libs/DirectFB-extra/DirectFB-extra-1.0.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/DirectFB-extra/DirectFB-extra-1.0.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/DirectFB-extra/DirectFB-extra-1.0.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: DirectFB-extra-1.0.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/DirectFB-extra/DirectFB-extra-1.0.0-r1.ebuild,v 1.1 2007/12/02 22:29:43 vapier Exp $
52
53 inherit eutils
54
55 DESCRIPTION="Extra image/video/font providers and graphics/input drivers for DirectFB"
56 HOMEPAGE="http://www.directfb.org/"
57 SRC_URI="http://directfb.org/download/${PN}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc -sparc ~x86"
62 IUSE="ffmpeg flash fusion imlib mmx mpeg quicktime svg xine zlib"
63
64 RDEPEND=">=dev-libs/DirectFB-${PV}
65 ffmpeg? ( media-video/ffmpeg )
66 flash? ( media-libs/libflash )
67 fusion? ( dev-libs/linux-fusion )
68 imlib? ( media-libs/imlib2 )
69 mpeg? ( media-libs/libmpeg3 )
70 quicktime? ( virtual/quicktime )
71 svg? ( x11-libs/libsvg-cairo )
72 xine? ( media-libs/xine-lib )
73 zlib? ( sys-libs/zlib )"
74 # avi? ( media-video/avifile )
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig"
77
78 src_unpack() {
79 unpack ${A}
80 cd "${S}"
81 epatch "${FILESDIR}"/${P}-CFLAGS.patch
82 }
83
84 src_compile() {
85 # $(use_enable avi avifile)
86 econf \
87 $(use_enable ffmpeg) \
88 $(use_enable flash) \
89 $(use_enable fusion fusionsound) \
90 $(use_enable imlib imlib2) \
91 $(use_enable mmx) \
92 $(use_enable mpeg libmpeg3) \
93 $(use_enable quicktime openquicktime) \
94 $(use_enable svg) \
95 $(use_enable xine) \
96 $(use_enable zlib) \
97 --disable-avifile \
98 || die
99 emake || die "emake failed"
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die "make install failed"
104 dodoc AUTHORS ChangeLog NEWS README
105 }
106
107
108
109 --
110 gentoo-commits@g.o mailing list