Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/enlightenment: enlightenment-1.0.13.ebuild ChangeLog
Date: Wed, 28 Aug 2013 03:21:38
Message-Id: 20130828032130.711F720047@flycatcher.gentoo.org
1 vapier 13/08/28 03:21:30
2
3 Modified: ChangeLog
4 Added: enlightenment-1.0.13.ebuild
5 Log:
6 Version bump #466744 by pavel sanda.
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
9
10 Revision Changes Path
11 1.186 x11-wm/enlightenment/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/ChangeLog?rev=1.186&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/ChangeLog?rev=1.186&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/ChangeLog?r1=1.185&r2=1.186
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/ChangeLog,v
20 retrieving revision 1.185
21 retrieving revision 1.186
22 diff -u -r1.185 -r1.186
23 --- ChangeLog 28 Aug 2013 03:16:13 -0000 1.185
24 +++ ChangeLog 28 Aug 2013 03:21:30 -0000 1.186
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-wm/enlightenment
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/ChangeLog,v 1.185 2013/08/28 03:16:13 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/ChangeLog,v 1.186 2013/08/28 03:21:30 vapier Exp $
30 +
31 +*enlightenment-1.0.13 (28 Aug 2013)
32 +
33 + 28 Aug 2013; Mike Frysinger <vapier@g.o> +enlightenment-1.0.13.ebuild:
34 + Version bump #466744 by pavel sanda.
35
36 *enlightenment-0.17.4 (28 Aug 2013)
37
38
39
40
41 1.1 x11-wm/enlightenment/enlightenment-1.0.13.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/enlightenment-1.0.13.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-wm/enlightenment/enlightenment-1.0.13.ebuild?rev=1.1&content-type=text/plain
45
46 Index: enlightenment-1.0.13.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-wm/enlightenment/enlightenment-1.0.13.ebuild,v 1.1 2013/08/28 03:21:30 vapier Exp $
51
52 EAPI="4"
53 if [[ ${PV} == *9999 ]] ; then
54 ESVN_REPO_URI="http://svn.enlightenment.org/svn/e/trunk/E16/e"
55 inherit subversion autotools
56 SRC_URI=""
57 #KEYWORDS=""
58 S=${WORKDIR}/e16/e
59 else
60 SRC_URI="mirror://sourceforge/enlightenment/e16-${PV/_/-}.tar.gz"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
62 S=${WORKDIR}/e16-${PV/_pre?}
63 fi
64 inherit eutils
65
66 DESCRIPTION="Enlightenment Window Manager (e16)"
67 HOMEPAGE="http://www.enlightenment.org/"
68
69 LICENSE="BSD"
70 SLOT="0"
71 IUSE="dbus doc nls pango pulseaudio xcomposite xinerama xrandr"
72
73 RDEPEND="pulseaudio? ( media-sound/pulseaudio )
74 dbus? ( sys-apps/dbus )
75 pango? ( x11-libs/pango )
76 =media-libs/freetype-2*
77 >=media-libs/imlib2-1.3.0[X]
78 x11-libs/libSM
79 x11-libs/libICE
80 x11-libs/libX11
81 x11-libs/libXext
82 x11-libs/libXfixes
83 x11-libs/libXdamage
84 x11-libs/libXxf86vm
85 x11-libs/libXft
86 xrandr? ( x11-libs/libXrandr )
87 x11-libs/libXrender
88 x11-misc/xbitmaps
89 xinerama? ( x11-libs/libXinerama )
90 xcomposite? ( x11-libs/libXcomposite )
91 nls? ( virtual/libintl )
92 virtual/libiconv"
93 DEPEND="${RDEPEND}
94 virtual/pkgconfig
95 x11-proto/xextproto
96 x11-proto/xf86vidmodeproto
97 xinerama? ( x11-proto/xineramaproto )
98 xcomposite? ( x11-proto/compositeproto )
99 x11-proto/xproto
100 nls? ( sys-devel/gettext )"
101 PDEPEND="doc? ( app-doc/edox-data )"
102
103 src_prepare() {
104 if [[ ! -e configure ]] ; then
105 eautopoint
106 eautoreconf
107 fi
108 }
109
110 src_configure() {
111 econf \
112 $(use_enable nls) \
113 $(use_enable dbus) \
114 $(use_enable pulseaudio sound-pulse) \
115 --disable-sound-esound \
116 $(use_enable pango) \
117 $(use_enable xinerama) \
118 $(use_enable xrandr) \
119 $(use_enable xcomposite composite) \
120 --disable-docs \
121 --enable-zoom
122 }
123
124 src_install() {
125 default
126 dodoc COMPLIANCE sample-scripts/*
127 dohtml docs/e16.html
128 }