From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EDCBF138010 for ; Wed, 26 Sep 2012 21:15:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF9F321C15C; Wed, 26 Sep 2012 21:15:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 697B921C148 for ; Wed, 26 Sep 2012 21:15:16 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A7C6833C2F0 for ; Wed, 26 Sep 2012 21:15:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 63F35E5449 for ; Wed, 26 Sep 2012 21:15:13 +0000 (UTC) From: "Cyprien Nicolas" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Cyprien Nicolas" Message-ID: <1348694103.edf6e6770623914e9c436de2d500ee48af9bac87.fulax@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-scheme/guile/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-scheme/guile/guile-999.ebuild X-VCS-Directories: dev-scheme/guile/ X-VCS-Committer: fulax X-VCS-Committer-Name: Cyprien Nicolas X-VCS-Revision: edf6e6770623914e9c436de2d500ee48af9bac87 X-VCS-Branch: master Date: Wed, 26 Sep 2012 21:15:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0cedcf79-b382-482c-b716-ba776b51a902 X-Archives-Hash: bdeb83206e97d1804fbf4e022b1ad98e commit: edf6e6770623914e9c436de2d500ee48af9bac87 Author: Cyprien Nicolas (fulax) gmail com> AuthorDate: Wed Sep 26 21:15:03 2012 +0000 Commit: Cyprien Nicolas gmail com> CommitDate: Wed Sep 26 21:15:03 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=edf6e677 dev-scheme/guile-999: Remove emacs USE flag (Portage version: 2.2.0_alpha131/git/Linux i686, signed Manifest commit with key 0xBE63A96F) --- dev-scheme/guile/guile-999.ebuild | 30 ++++-------------------------- 1 files changed, 4 insertions(+), 26 deletions(-) diff --git a/dev-scheme/guile/guile-999.ebuild b/dev-scheme/guile/guile-999.ebuild index ac1e207..af84054 100644 --- a/dev-scheme/guile/guile-999.ebuild +++ b/dev-scheme/guile/guile-999.ebuild @@ -4,7 +4,7 @@ EAPI=4 -inherit eutils flag-o-matic elisp-common +inherit eutils flag-o-matic inherit git-2 DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions" @@ -14,7 +14,7 @@ EGIT_REPO_URI="git://git.sv.gnu.org/guile.git" LICENSE="LGPL-3" KEYWORDS="" -IUSE="networking +regex +deprecated emacs nls debug-malloc debug +threads" +IUSE="networking +regex +deprecated nls debug-malloc debug +threads" RDEPEND=" app-admin/eselect-guile @@ -23,8 +23,7 @@ RDEPEND=" dev-libs/libffi dev-libs/libunistring sys-devel/gettext - >=sys-devel/libtool-1.5.6 - emacs? ( virtual/emacs )" + >=sys-devel/libtool-1.5.6" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -58,20 +57,11 @@ src_configure() { $(use_enable debug-malloc) \ $(use_enable debug guile-debug) \ $(use_with threads) \ - --with-modules # \ -# EMACS=no + --with-modules } src_compile() { emake || die "make failed" - - # Above we have disabled the build system's Emacs support; - # for USE=emacs we compile (and install) the files manually - # if use emacs; then - # cd emacs - # make - # elisp-compile *.el || die - # fi } src_install() { @@ -82,28 +72,16 @@ src_install() { dodoc AUTHORS ChangeLog GUILE-VERSION HACKING NEWS README THANKS || die - # Replaced by app-admin/eselect-guile - ## texmacs needs this, closing bug #23493 - #dodir /etc/env.d - #echo "GUILE_LOAD_PATH=\"${EPREFIX}/usr/share/guile/${MAJOR}\"" > "${ED}"/etc/env.d/50guile - # necessary for registering slib, see bug 206896 keepdir /usr/share/guile/site - - # if use emacs; then - # elisp-install ${PN} emacs/*.{el,elc} || die - # elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" || die - # fi } pkg_postinst() { [ "${EROOT}" == "/" ] && pkg_config - use emacs && elisp-site-regen eselect guile update ifunset } pkg_postrm() { - use emacs && elisp-site-regen eselect guile update ifunset }