diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2010-09-13 08:44:13 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2010-09-13 08:44:13 +0000 |
commit | ad41f0fefecece9d4b5a2a1f773691d85525caef (patch) | |
tree | 2b20e028b1ac48a8a6a2d81c40fd2d96b560903d /app-editors/emacs-vcs/emacs-vcs-24.0.9999.ebuild | |
parent | Honour Gentoo LDFLAGS, see bug #336979. (diff) | |
download | gentoo-2-ad41f0fefecece9d4b5a2a1f773691d85525caef.tar.gz gentoo-2-ad41f0fefecece9d4b5a2a1f773691d85525caef.tar.bz2 gentoo-2-ad41f0fefecece9d4b5a2a1f773691d85525caef.zip |
add support for XML parsing with dev-libs/libxml2, which is more efficient than the built-in Elisp parsers, configurable with USE=libxml2
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'app-editors/emacs-vcs/emacs-vcs-24.0.9999.ebuild')
-rw-r--r-- | app-editors/emacs-vcs/emacs-vcs-24.0.9999.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app-editors/emacs-vcs/emacs-vcs-24.0.9999.ebuild b/app-editors/emacs-vcs/emacs-vcs-24.0.9999.ebuild index 072719a3ef24..b450f0c88e49 100644 --- a/app-editors/emacs-vcs/emacs-vcs-24.0.9999.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-24.0.9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.0.9999.ebuild,v 1.9 2010/09/02 14:53:21 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/emacs-vcs-24.0.9999.ebuild,v 1.10 2010/09/13 08:44:13 fauli Exp $ EAPI=2 @@ -28,7 +28,7 @@ HOMEPAGE="http://www.gnu.org/software/emacs/" LICENSE="GPL-3 FDL-1.3 BSD as-is MIT W3C unicode" SLOT="24" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="alsa dbus gconf gif gpm gtk gzip-el hesiod imagemagick jpeg kerberos m17n-lib motif png sound source svg tiff toolkit-scroll-bars X Xaw3d xft +xpm" +IUSE="alsa dbus gconf gif gpm gtk gzip-el hesiod imagemagick jpeg kerberos libxml2 m17n-lib motif png sound source svg tiff toolkit-scroll-bars X Xaw3d xft +xpm" RESTRICT="strip" RDEPEND="sys-libs/ncurses @@ -44,6 +44,7 @@ RDEPEND="sys-libs/ncurses x11-libs/libXt x11-misc/xbitmaps gconf? ( >=gnome-base/gconf-2.26.2 ) + libxml2? ( >=dev-libs/libxml2-2.2.0 ) gif? ( media-libs/giflib ) jpeg? ( media-libs/jpeg:0 ) png? ( media-libs/libpng ) @@ -148,7 +149,7 @@ src_configure() { if use X; then myconf="${myconf} --with-x" - myconf="${myconf} $(use_with gconf)" + myconf="${myconf} $(use_with gconf) $(use_with libxml2 xml2)" myconf="${myconf} $(use_with toolkit-scroll-bars)" myconf="${myconf} $(use_with gif) $(use_with jpeg)" myconf="${myconf} $(use_with png) $(use_with svg rsvg)" |