summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2012-10-11 15:56:09 +0000
committerUlrich Müller <ulm@gentoo.org>2012-10-11 15:56:09 +0000
commit25e74ee3c55f024816d45080c8b2990fbd3456a5 (patch)
tree9ab5d5ecc589b6e741843ffa8a50bdc5624d75b2 /app-admin/emacs-updater
parentadd missing virtual/glu dep (bug #437990) (diff)
downloadgentoo-2-25e74ee3c55f024816d45080c8b2990fbd3456a5.tar.gz
gentoo-2-25e74ee3c55f024816d45080c8b2990fbd3456a5.tar.bz2
gentoo-2-25e74ee3c55f024816d45080c8b2990fbd3456a5.zip
Version bump, fixes bug 436350.
(Portage version: 2.1.11.26/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/emacs-updater')
-rw-r--r--app-admin/emacs-updater/ChangeLog7
-rw-r--r--app-admin/emacs-updater/emacs-updater-1.10.ebuild31
2 files changed, 37 insertions, 1 deletions
diff --git a/app-admin/emacs-updater/ChangeLog b/app-admin/emacs-updater/ChangeLog
index 5dda1c36eb75..27a4b5f88bf8 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.61 2012/08/07 20:35:56 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/emacs-updater/ChangeLog,v 1.62 2012/10/11 15:56:09 ulm Exp $
+
+*emacs-updater-1.10 (11 Oct 2012)
+
+ 11 Oct 2012; Ulrich Müller <ulm@gentoo.org> +emacs-updater-1.10.ebuild:
+ Version bump, fixes bug 436350.
07 Aug 2012; Alexis Ballier <aballier@gentoo.org> emacs-updater-1.9.ebuild:
keyword ~amd64-fbsd, bug #419199
diff --git a/app-admin/emacs-updater/emacs-updater-1.10.ebuild b/app-admin/emacs-updater/emacs-updater-1.10.ebuild
new file mode 100644
index 000000000000..8efd828d4e9f
--- /dev/null
+++ b/app-admin/emacs-updater/emacs-updater-1.10.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2012 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.10.ebuild,v 1.1 2012/10/11 15:56:09 ulm Exp $
+
+EAPI=4
+
+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
+}