Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/imlib2: ChangeLog imlib2-1.4.1.000.ebuild
Date: Sat, 19 Apr 2008 21:05:36
Message-Id: E1JnKFW-0005F5-IL@stork.gentoo.org
1 vapier 08/04/19 21:05:30
2
3 Modified: ChangeLog
4 Added: imlib2-1.4.1.000.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_pre5)
8
9 Revision Changes Path
10 1.63 media-libs/imlib2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/imlib2/ChangeLog?rev=1.63&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/imlib2/ChangeLog?rev=1.63&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/imlib2/ChangeLog?r1=1.62&r2=1.63
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/imlib2/ChangeLog,v
19 retrieving revision 1.62
20 retrieving revision 1.63
21 diff -u -r1.62 -r1.63
22 --- ChangeLog 31 Mar 2008 05:19:42 -0000 1.62
23 +++ ChangeLog 19 Apr 2008 21:05:30 -0000 1.63
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/imlib2
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/ChangeLog,v 1.62 2008/03/31 05:19:42 ricmm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/ChangeLog,v 1.63 2008/04/19 21:05:30 vapier Exp $
29 +
30 +*imlib2-1.4.1.000 (19 Apr 2008)
31 +
32 + 19 Apr 2008; Mike Frysinger <vapier@g.o> +imlib2-1.4.1.000.ebuild:
33 + Version bump.
34
35 31 Mar 2008; <ricmm@g.o> imlib2-1.2.1.009.ebuild,
36 imlib2-1.3.0.ebuild, imlib2-1.4.0.ebuild:
37
38
39
40 1.1 media-libs/imlib2/imlib2-1.4.1.000.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/imlib2/imlib2-1.4.1.000.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/imlib2/imlib2-1.4.1.000.ebuild?rev=1.1&content-type=text/plain
44
45 Index: imlib2-1.4.1.000.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/imlib2/imlib2-1.4.1.000.ebuild,v 1.1 2008/04/19 21:05:30 vapier Exp $
50
51 inherit enlightenment toolchain-funcs
52
53 MY_P=${P/_/-}
54 DESCRIPTION="Version 2 of an advanced replacement library for libraries like libXpm"
55 HOMEPAGE="http://www.enlightenment.org/"
56 SRC_URI="http://download.enlightenment.org/snapshots/2008-01-25/${P}.tar.bz2"
57
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
59 IUSE="X bzip2 gif jpeg mmx mp3 png tiff zlib"
60
61 DEPEND="=media-libs/freetype-2*
62 bzip2? ( app-arch/bzip2 )
63 zlib? ( sys-libs/zlib )
64 gif? ( >=media-libs/giflib-4.1.0 )
65 png? ( >=media-libs/libpng-1.2.1 )
66 jpeg? ( media-libs/jpeg )
67 tiff? ( >=media-libs/tiff-3.5.5 )
68 X? ( x11-libs/libXext x11-proto/xextproto )
69 mp3? ( media-libs/libid3tag )"
70
71 src_compile() {
72 # imlib2 has diff configure options for x86/amd64 mmx
73 local mymmx=""
74 if [[ $(tc-arch) == "amd64" ]] ; then
75 mymmx="$(use_enable mmx amd64) --disable-mmx"
76 else
77 mymmx="--disable-amd64 $(use_enable mmx)"
78 fi
79
80 export MY_ECONF="
81 --enable-visibility-hiding
82 $(use_with X x) \
83 $(use_with jpeg) \
84 $(use_with png) \
85 $(use_with tiff) \
86 $(use_with gif) \
87 $(use_with zlib) \
88 $(use_with bzip2) \
89 $(use_with mp3 id3) \
90 ${mymmx} \
91 "
92 enlightenment_src_compile
93 }
94
95
96
97 --
98 gentoo-commits@l.g.o mailing list