diff options
author | Emanuele Giaquinta <exg@gentoo.org> | 2006-03-30 00:29:08 +0000 |
---|---|---|
committer | Emanuele Giaquinta <exg@gentoo.org> | 2006-03-30 00:29:08 +0000 |
commit | 5326d2e5bbe2a4798c277a798927be794c3dab43 (patch) | |
tree | a035403dfdbf075a938664f14f2d2e6a59365c27 /app-editors/emacs-cvs | |
parent | Unmask expat-2.0.0. (diff) | |
download | gentoo-2-5326d2e5bbe2a4798c277a798927be794c3dab43.tar.gz gentoo-2-5326d2e5bbe2a4798c277a798927be794c3dab43.tar.bz2 gentoo-2-5326d2e5bbe2a4798c277a798927be794c3dab43.zip |
Enable sandbox. Remove useless nls use flag.
(Portage version: 2.1_pre7-r2)
Diffstat (limited to 'app-editors/emacs-cvs')
-rw-r--r-- | app-editors/emacs-cvs/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/emacs-cvs/emacs-cvs-22.0.50-r2.ebuild | 15 |
2 files changed, 10 insertions, 11 deletions
diff --git a/app-editors/emacs-cvs/ChangeLog b/app-editors/emacs-cvs/ChangeLog index a159ae0450ed..8ee4a821da1e 100644 --- a/app-editors/emacs-cvs/ChangeLog +++ b/app-editors/emacs-cvs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/emacs-cvs # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.42 2006/03/17 04:51:56 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.43 2006/03/30 00:29:08 exg Exp $ + + 29 Mar 2006; Emanuele Giaquinta <exg@gentoo.org> + emacs-cvs-22.0.50-r2.ebuild: + Enable sandbox. Remove useless nls use flag. *emacs-cvs-22.0.50-r2 (17 Mar 2006) diff --git a/app-editors/emacs-cvs/emacs-cvs-22.0.50-r2.ebuild b/app-editors/emacs-cvs/emacs-cvs-22.0.50-r2.ebuild index 41b1a317954e..8e31ddda2eb5 100644 --- a/app-editors/emacs-cvs/emacs-cvs-22.0.50-r2.ebuild +++ b/app-editors/emacs-cvs/emacs-cvs-22.0.50-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.0.50-r2.ebuild,v 1.1 2006/03/17 04:51:56 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-22.0.50-r2.ebuild,v 1.2 2006/03/30 00:29:08 exg Exp $ ECVS_AUTH="pserver" ECVS_SERVER="cvs.savannah.gnu.org:/sources/emacs" @@ -9,8 +9,8 @@ ECVS_BRANCH="HEAD" inherit elisp-common cvs alternatives flag-o-matic eutils -IUSE="X Xaw3d aqua gif gtk jpeg nls png spell tiff" -# IUSE="X Xaw3d aqua gif gtk jpeg nls png spell tiff xft source" +IUSE="X Xaw3d aqua gif gtk jpeg png spell tiff" +# IUSE="X Xaw3d aqua gif gtk jpeg png spell tiff xft source" S=${WORKDIR}/emacs @@ -31,7 +31,6 @@ DEPEND=">=sys-libs/ncurses-5.3 png? ( >=media-libs/libpng-1.2.5 ) gtk? ( =x11-libs/gtk+-2* ) !gtk? ( Xaw3d? ( x11-libs/Xaw3d ) ) ) - nls? ( >=sys-devel/gettext-0.11.5 ) sys-libs/zlib >=sys-apps/portage-2.0.51_rc1" @@ -75,8 +74,6 @@ src_unpack() { } src_compile() { - export SANDBOX_ON=0 - # no flag is allowed ALLOWED_FLAGS=" " strip-flags @@ -86,8 +83,6 @@ src_compile() { local myconf - use nls || myconf="${myconf} --disable-nls" - if use X; then myconf="${myconf} --with-x" myconf="${myconf} --with-xpm --with-toolkit-scroll-bars" @@ -113,7 +108,7 @@ src_compile() { if use aqua ; then einfo "Configuring to build with Carbon Emacs" - econf --enable-debug \ + econf \ --enable-carbon-app=/Applications/Gentoo \ --without-x \ $(use_with jpeg) $(use_with tiff) \ @@ -122,7 +117,7 @@ src_compile() { make bootstrap || die "make carbon emacs bootstrap failed" fi - econf --enable-debug \ + econf \ --program-suffix=.emacs-${SLOT} \ --without-carbon \ ${myconf} || die "econf emacs failed" |