Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/emacs-cvs: emacs-cvs-23.0.60-r2.ebuild
Date: Sat, 02 Feb 2008 14:18:15
Message-Id: E1JLJC8-00057G-8D@stork.gentoo.org
1 ulm 08/02/02 14:18:12
2
3 Modified: emacs-cvs-23.0.60-r2.ebuild
4 Log:
5 Fix logic of libotf flag.
6 (Portage version: 2.1.4.1)
7
8 Revision Changes Path
9 1.4 app-editors/emacs-cvs/emacs-cvs-23.0.60-r2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r2.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r2.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r2.ebuild?r1=1.3&r2=1.4
14
15 Index: emacs-cvs-23.0.60-r2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r2.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- emacs-cvs-23.0.60-r2.ebuild 2 Feb 2008 09:14:26 -0000 1.3
22 +++ emacs-cvs-23.0.60-r2.ebuild 2 Feb 2008 14:18:11 -0000 1.4
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r2.ebuild,v 1.3 2008/02/02 09:14:26 ulm Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-23.0.60-r2.ebuild,v 1.4 2008/02/02 14:18:11 ulm Exp $
28
29 ECVS_AUTH="pserver"
30 ECVS_SERVER="cvs.savannah.gnu.org:/sources/emacs"
31 @@ -46,6 +46,7 @@
32 xpm? ( x11-libs/libXpm )
33 xft? (
34 media-libs/fontconfig
35 + media-libs/freetype
36 virtual/xft
37 libotf? ( >=dev-libs/libotf-0.9.4 )
38 )
39 @@ -129,8 +130,12 @@
40 myconf="${myconf} --with-x"
41 myconf="${myconf} $(use_with toolkit-scroll-bars)"
42 myconf="${myconf} $(use_enable xft font-backend)"
43 - myconf="${myconf} $(use_with xft freetype)"
44 - myconf="${myconf} $(use_with xft) $(use_with libotf)"
45 + myconf="${myconf} $(use_with xft freetype) $(use_with xft)"
46 + if use xft && use libotf; then
47 + myconf="${myconf} --with-libotf"
48 + else
49 + myconf="${myconf} --without-libotf"
50 + fi
51 myconf="${myconf} $(use_with jpeg) $(use_with tiff)"
52 myconf="${myconf} $(use_with gif) $(use_with png)"
53 myconf="${myconf} $(use_with xpm) $(use_with svg rsvg)"
54
55
56
57 --
58 gentoo-commits@l.g.o mailing list