diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2007-07-04 23:26:09 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2007-07-04 23:26:09 +0000 |
commit | c3bf90bd93d5678fac9cc226eca00d9127452d91 (patch) | |
tree | aee24def30dfa1fa247e60f628af98550dc515f4 /app-emacs/xtla | |
parent | manual make calls to emake; added some die comments; reordered KEYWORDS (diff) | |
download | historical-c3bf90bd93d5678fac9cc226eca00d9127452d91.tar.gz historical-c3bf90bd93d5678fac9cc226eca00d9127452d91.tar.bz2 historical-c3bf90bd93d5678fac9cc226eca00d9127452d91.zip |
relocated IUSE; reordered KEYWORDS; removed virtual/emacs from DEPEND; added some die comments; manual make call to emake
Package-Manager: portage-2.1.2.9
Diffstat (limited to 'app-emacs/xtla')
-rw-r--r-- | app-emacs/xtla/ChangeLog | 6 | ||||
-rw-r--r-- | app-emacs/xtla/xtla-1.2.ebuild | 18 |
2 files changed, 13 insertions, 11 deletions
diff --git a/app-emacs/xtla/ChangeLog b/app-emacs/xtla/ChangeLog index a20a9569a283..28568754142d 100644 --- a/app-emacs/xtla/ChangeLog +++ b/app-emacs/xtla/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/xtla # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/xtla/ChangeLog,v 1.11 2007/02/23 12:13:17 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/xtla/ChangeLog,v 1.12 2007/07/04 23:26:09 opfer Exp $ + + 04 Jul 2007; Christian Faulhammer <opfer@gentoo.org> xtla-1.2.ebuild: + relocated IUSE; reordered KEYWORDS; removed virtual/emacs from DEPEND; added + some die comments; manual make call to emake 23 Feb 2007; Christian Faulhammer <opfer@gentoo.org> -xtla-0.1_p525.ebuild, -xtla-0.9_p38.ebuild, -xtla-1.0.ebuild, diff --git a/app-emacs/xtla/xtla-1.2.ebuild b/app-emacs/xtla/xtla-1.2.ebuild index f1eda65773e7..aadde0b7167c 100644 --- a/app-emacs/xtla/xtla-1.2.ebuild +++ b/app-emacs/xtla/xtla-1.2.ebuild @@ -1,11 +1,9 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/xtla/xtla-1.2.ebuild,v 1.2 2007/02/23 12:13:17 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/xtla/xtla-1.2.ebuild,v 1.3 2007/07/04 23:26:09 opfer Exp $ inherit elisp -IUSE="" - DESCRIPTION="The Emacs interface to GNU TLA" HOMEPAGE="http://wiki.gnuarch.org/moin.cgi/xtla https://gna.org/projects/xtla-el @@ -13,23 +11,23 @@ HOMEPAGE="http://wiki.gnuarch.org/moin.cgi/xtla SRC_URI="http://download.gna.org/xtla-el/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~ppc ~amd64" - -DEPEND="virtual/emacs" +KEYWORDS="~amd64 ~ppc ~x86" RDEPEND="${DEPEND} || ( dev-util/bazaar dev-util/tla )" -SITEFILE=50xtla-gentoo.el +IUSE="" + +SITEFILE=50${PN}-gentoo.el src_compile() { - econf --with-emacs=/usr/bin/emacs --with-lispdir=${SITELISP}/${PN} || die - make || die + econf --with-emacs=/usr/bin/emacs --with-lispdir=${SITELISP}/${PN} || die "econf failed" + emake || die "emake failed" } src_install() { elisp-install ${PN} lisp/*.{el,elc} - elisp-site-file-install ${FILESDIR}/${SITEFILE} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" doinfo texinfo/xtla.info dodoc ChangeLog COPYING INSTALL docs/* } |