diff options
author | Ulrich Müller <ulm@gentoo.org> | 2013-03-11 09:12:47 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2013-03-11 09:12:47 +0000 |
commit | 1633a85051c4d024becfeb8d78890bad70bcfaba (patch) | |
tree | 52c7d25d2cc76b6ee70bc93bbb10e9628b28295f /app-admin/emacs-updater | |
parent | Removing old. Obsolete bug #460954 (diff) | |
download | gentoo-2-1633a85051c4d024becfeb8d78890bad70bcfaba.tar.gz gentoo-2-1633a85051c4d024becfeb8d78890bad70bcfaba.tar.bz2 gentoo-2-1633a85051c4d024becfeb8d78890bad70bcfaba.zip |
Version bump.
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-admin/emacs-updater')
-rw-r--r-- | app-admin/emacs-updater/ChangeLog | 9 | ||||
-rw-r--r-- | app-admin/emacs-updater/emacs-updater-1.11.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/app-admin/emacs-updater/ChangeLog b/app-admin/emacs-updater/ChangeLog index b302fae7f8a0..925cba0358a1 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-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/emacs-updater/ChangeLog,v 1.63 2012/10/11 16:13:22 ulm Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/emacs-updater/ChangeLog,v 1.64 2013/03/11 09:12:46 ulm Exp $ + +*emacs-updater-1.11 (11 Mar 2013) + + 11 Mar 2013; Ulrich Müller <ulm@gentoo.org> +emacs-updater-1.11.ebuild: + Version bump. *emacs-updater-1.10 (11 Oct 2012) diff --git a/app-admin/emacs-updater/emacs-updater-1.11.ebuild b/app-admin/emacs-updater/emacs-updater-1.11.ebuild new file mode 100644 index 000000000000..03c76ff78005 --- /dev/null +++ b/app-admin/emacs-updater/emacs-updater-1.11.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2013 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.11.ebuild,v 1.1 2013/03/11 09:12:47 ulm Exp $ + +EAPI=5 + +DESCRIPTION="Rebuild Emacs packages" +HOMEPAGE="http://www.gentoo.org/proj/en/lisp/emacs/" +SRC_URI="mirror://gentoo/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +DEPEND="app-arch/xz-utils" +RDEPEND=">=app-portage/portage-utils-0.3 + 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 +} |