diff options
author | Ulrich Müller <ulm@gentoo.org> | 2010-11-10 18:13:00 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2010-11-10 18:13:00 +0000 |
commit | f3688e34e8bb7eb3a786206547dd1336ba364024 (patch) | |
tree | 01f2b3a7a9f423fb1d5e531b8931405d8627a7ec /app-admin | |
parent | Marked ~x86-linux, ~ppc-macos, bug #342001 (diff) | |
download | gentoo-2-f3688e34e8bb7eb3a786206547dd1336ba364024.tar.gz gentoo-2-f3688e34e8bb7eb3a786206547dd1336ba364024.tar.bz2 gentoo-2-f3688e34e8bb7eb3a786206547dd1336ba364024.zip |
Version bump, fixes bug 344467.
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/emacs-updater/ChangeLog | 9 | ||||
-rw-r--r-- | app-admin/emacs-updater/emacs-updater-1.7.ebuild | 32 |
2 files changed, 39 insertions, 2 deletions
diff --git a/app-admin/emacs-updater/ChangeLog b/app-admin/emacs-updater/ChangeLog index 0e000503a17b..fc2890851ec8 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-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/emacs-updater/ChangeLog,v 1.34 2009/12/07 22:11:47 ulm Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/emacs-updater/ChangeLog,v 1.35 2010/11/10 18:12:59 ulm Exp $ + +*emacs-updater-1.7 (10 Nov 2010) + + 10 Nov 2010; Ulrich Mueller <ulm@gentoo.org> +emacs-updater-1.7.ebuild: + Version bump, fixes bug 344467. *emacs-updater-1.6-r1 (07 Dec 2009) diff --git a/app-admin/emacs-updater/emacs-updater-1.7.ebuild b/app-admin/emacs-updater/emacs-updater-1.7.ebuild new file mode 100644 index 000000000000..002af1af39d9 --- /dev/null +++ b/app-admin/emacs-updater/emacs-updater-1.7.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 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.7.ebuild,v 1.1 2010/11/10 18:13:00 ulm Exp $ + +EAPI=2 + +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="" + +DEPEND="" +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 || die "dosbin failed" + doman emacs-updater.8 || die "doman failed" +} |