diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-08-24 18:43:11 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-08-24 18:43:11 +0000 |
commit | 32c4e8d4d0ab810b487911db4f92478bd7994d84 (patch) | |
tree | e53629b2b91c1b6c5956defda0b2e189a6a0aec4 /app-admin/emacs-updater | |
parent | Drop dependency on nonexistent kde-base/kdeartwork-icewm-themes (diff) | |
download | gentoo-2-32c4e8d4d0ab810b487911db4f92478bd7994d84.tar.gz gentoo-2-32c4e8d4d0ab810b487911db4f92478bd7994d84.tar.bz2 gentoo-2-32c4e8d4d0ab810b487911db4f92478bd7994d84.zip |
Version bump.
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/emacs-updater')
-rw-r--r-- | app-admin/emacs-updater/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/emacs-updater/emacs-updater-1.9.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/app-admin/emacs-updater/ChangeLog b/app-admin/emacs-updater/ChangeLog index 34eec2ac1233..5dcad32f9096 100644 --- a/app-admin/emacs-updater/ChangeLog +++ b/app-admin/emacs-updater/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/emacs-updater # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/emacs-updater/ChangeLog,v 1.50 2011/07/15 15:09:17 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/emacs-updater/ChangeLog,v 1.51 2011/08/24 18:43:10 ulm Exp $ + +*emacs-updater-1.9 (24 Aug 2011) + + 24 Aug 2011; Ulrich Mueller <ulm@gentoo.org> +emacs-updater-1.9.ebuild: + Version bump. 15 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> emacs-updater-1.8.ebuild: ppc64 stable wrt #362209 diff --git a/app-admin/emacs-updater/emacs-updater-1.9.ebuild b/app-admin/emacs-updater/emacs-updater-1.9.ebuild new file mode 100644 index 000000000000..eda004330dd5 --- /dev/null +++ b/app-admin/emacs-updater/emacs-updater-1.9.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/emacs-updater/emacs-updater-1.9.ebuild,v 1.1 2011/08/24 18:43:11 ulm Exp $ + +EAPI=4 + +DESCRIPTION="Rebuild Emacs packages" +HOMEPAGE="http://www.gentoo.org/proj/en/lisp/emacs/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +RDEPEND="!<=app-admin/eselect-emacs-1.5 + >=app-portage/portage-utils-0.1.28 + virtual/emacs" + +src_prepare() { + if [ -n "${EPREFIX}" ]; then + sed -i -e "1s:/:${EPREFIX%/}/:" \ + -e "s:^\(EMACS\|SITELISP\)=:&${EPREFIX%/}:" \ + emacs-updater || die + fi +} + +src_install() { + dosbin emacs-updater + doman emacs-updater.8 +} |