diff options
author | Ulrich Müller <ulm@gentoo.org> | 2007-11-06 22:11:31 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2007-11-06 22:11:31 +0000 |
commit | 7f248a80e40a70f6f0db1d6f18e5888fbe979ee2 (patch) | |
tree | 23ce495552fa7c67ab7e1096c79d0e4b32d713b5 /app-emacs/xtla | |
parent | QA: Quote ${S} (diff) | |
download | gentoo-2-7f248a80e40a70f6f0db1d6f18e5888fbe979ee2.tar.gz gentoo-2-7f248a80e40a70f6f0db1d6f18e5888fbe979ee2.tar.bz2 gentoo-2-7f248a80e40a70f6f0db1d6f18e5888fbe979ee2.zip |
Version bump.
(Portage version: 2.1.3.18)
Diffstat (limited to 'app-emacs/xtla')
-rw-r--r-- | app-emacs/xtla/ChangeLog | 8 | ||||
-rw-r--r-- | app-emacs/xtla/files/50xtla-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/xtla/files/digest-xtla-1.2.1 | 3 | ||||
-rw-r--r-- | app-emacs/xtla/xtla-1.2.1.ebuild | 35 | ||||
-rw-r--r-- | app-emacs/xtla/xtla-1.2.ebuild | 20 |
5 files changed, 59 insertions, 11 deletions
diff --git a/app-emacs/xtla/ChangeLog b/app-emacs/xtla/ChangeLog index 28568754142d..662ed962ba33 100644 --- a/app-emacs/xtla/ChangeLog +++ b/app-emacs/xtla/ChangeLog @@ -1,6 +1,12 @@ # 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.12 2007/07/04 23:26:09 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/xtla/ChangeLog,v 1.13 2007/11/06 22:11:30 ulm Exp $ + +*xtla-1.2.1 (06 Nov 2007) + + 06 Nov 2007; Ulrich Mueller <ulm@gentoo.org> xtla-1.2.ebuild, + +xtla-1.2.1.ebuild: + Version bump. Don't install licence file. Add some die commands. 04 Jul 2007; Christian Faulhammer <opfer@gentoo.org> xtla-1.2.ebuild: relocated IUSE; reordered KEYWORDS; removed virtual/emacs from DEPEND; added diff --git a/app-emacs/xtla/files/50xtla-gentoo.el b/app-emacs/xtla/files/50xtla-gentoo.el index b8c2a4fee24d..af2fbb9ba08f 100644 --- a/app-emacs/xtla/files/50xtla-gentoo.el +++ b/app-emacs/xtla/files/50xtla-gentoo.el @@ -1,5 +1,7 @@ +;;; xtla site-lisp configuration + (add-to-list 'load-path "@SITELISP@") (if (featurep 'xtla) (tla-reload) - (require 'xtla-autoloads)) + (require 'xtla-autoloads)) diff --git a/app-emacs/xtla/files/digest-xtla-1.2.1 b/app-emacs/xtla/files/digest-xtla-1.2.1 new file mode 100644 index 000000000000..8bbb7c4748f4 --- /dev/null +++ b/app-emacs/xtla/files/digest-xtla-1.2.1 @@ -0,0 +1,3 @@ +MD5 856c00ecf1f1ee514cae38ef091da087 xtla-1.2.1.tar.gz 263437 +RMD160 952ab2bbaa7a86e4724ec55b225303eebc6db0ec xtla-1.2.1.tar.gz 263437 +SHA256 f4dd1e34a915a09123d10df0b6c2389811bc39527802dd7768b955f37236435e xtla-1.2.1.tar.gz 263437 diff --git a/app-emacs/xtla/xtla-1.2.1.ebuild b/app-emacs/xtla/xtla-1.2.1.ebuild new file mode 100644 index 000000000000..ad5248b75764 --- /dev/null +++ b/app-emacs/xtla/xtla-1.2.1.ebuild @@ -0,0 +1,35 @@ +# 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.1.ebuild,v 1.1 2007/11/06 22:11:30 ulm Exp $ + +inherit elisp + +DESCRIPTION="The Emacs interface to GNU TLA" +HOMEPAGE="http://wiki.gnuarch.org/moin.cgi/xtla + https://gna.org/projects/xtla-el + http://www.gnu.org/software/gnu-arch/" +SRC_URI="http://download.gna.org/xtla-el/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="|| ( dev-util/bazaar dev-util/tla )" + +SITEFILE=50${PN}-gentoo.el + +src_compile() { + 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} || die "elisp-install failed" + elisp-site-file-install "${FILESDIR}/${SITEFILE}" \ + || die "elisp-site-file-install failed" + doinfo texinfo/xtla.info + dodoc ChangeLog INSTALL docs/* +} diff --git a/app-emacs/xtla/xtla-1.2.ebuild b/app-emacs/xtla/xtla-1.2.ebuild index aadde0b7167c..9cf987cb6354 100644 --- a/app-emacs/xtla/xtla-1.2.ebuild +++ b/app-emacs/xtla/xtla-1.2.ebuild @@ -1,6 +1,6 @@ # 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.3 2007/07/04 23:26:09 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/xtla/xtla-1.2.ebuild,v 1.4 2007/11/06 22:11:30 ulm Exp $ inherit elisp @@ -9,25 +9,27 @@ HOMEPAGE="http://wiki.gnuarch.org/moin.cgi/xtla https://gna.org/projects/xtla-el http://www.gnu.org/software/gnu-arch/" SRC_URI="http://download.gna.org/xtla-el/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" - -RDEPEND="${DEPEND} - || ( dev-util/bazaar dev-util/tla )" - IUSE="" +DEPEND="" +RDEPEND="|| ( dev-util/bazaar dev-util/tla )" + SITEFILE=50${PN}-gentoo.el src_compile() { - econf --with-emacs=/usr/bin/emacs --with-lispdir=${SITELISP}/${PN} || die "econf failed" + 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-install ${PN} lisp/*.{el,elc} || die "elisp-install failed" + elisp-site-file-install "${FILESDIR}/${SITEFILE}" \ + || die "elisp-site-file-install failed" doinfo texinfo/xtla.info - dodoc ChangeLog COPYING INSTALL docs/* + dodoc ChangeLog INSTALL docs/* } |