summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-01-14 21:47:13 +0000
committerUlrich Müller <ulm@gentoo.org>2009-01-14 21:47:13 +0000
commit5c413b82e1554dfd39e42930991ab01b5207f46f (patch)
treee16aadd9bd7a0e10269bede38016784d69d66c5b /app-emacs/emacs-daemon
parentMarked ~hppa (bug #254544). (diff)
downloadgentoo-2-5c413b82e1554dfd39e42930991ab01b5207f46f.tar.gz
gentoo-2-5c413b82e1554dfd39e42930991ab01b5207f46f.tar.bz2
gentoo-2-5c413b82e1554dfd39e42930991ab01b5207f46f.zip
Version bump. Remove old.
(Portage version: 2.2_rc20/cvs/Linux 2.6.27-gentoo-r4 i686)
Diffstat (limited to 'app-emacs/emacs-daemon')
-rw-r--r--app-emacs/emacs-daemon/ChangeLog10
-rw-r--r--app-emacs/emacs-daemon/emacs-daemon-0.11.ebuild (renamed from app-emacs/emacs-daemon/emacs-daemon-0.8.ebuild)5
-rw-r--r--app-emacs/emacs-daemon/emacs-daemon-0.9.ebuild41
3 files changed, 11 insertions, 45 deletions
diff --git a/app-emacs/emacs-daemon/ChangeLog b/app-emacs/emacs-daemon/ChangeLog
index 0c0d191ba5fc..804b43ecafcc 100644
--- a/app-emacs/emacs-daemon/ChangeLog
+++ b/app-emacs/emacs-daemon/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-emacs/emacs-daemon
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v 1.4 2008/12/27 20:51:29 ulm Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/ChangeLog,v 1.5 2009/01/14 21:47:13 ulm Exp $
+
+*emacs-daemon-0.11 (14 Jan 2009)
+
+ 14 Jan 2009; Ulrich Mueller <ulm@gentoo.org> -emacs-daemon-0.8.ebuild,
+ -emacs-daemon-0.9.ebuild, +emacs-daemon-0.11.ebuild:
+ Version bump. Remove old.
*emacs-daemon-0.10 (27 Dec 2008)
diff --git a/app-emacs/emacs-daemon/emacs-daemon-0.8.ebuild b/app-emacs/emacs-daemon/emacs-daemon-0.11.ebuild
index 8ab6ca022809..a439cdf0ad88 100644
--- a/app-emacs/emacs-daemon/emacs-daemon-0.8.ebuild
+++ b/app-emacs/emacs-daemon/emacs-daemon-0.11.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/emacs-daemon-0.8.ebuild,v 1.1 2008/12/08 21:45:09 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/emacs-daemon-0.11.ebuild,v 1.1 2009/01/14 21:47:13 ulm Exp $
inherit elisp
@@ -38,4 +38,5 @@ src_install() {
doexe emacs-wrapper.sh || die
elisp-site-file-install "${SITEFILE}" || die
keepdir /var/run/emacs || die
+ dodoc README ChangeLog || die
}
diff --git a/app-emacs/emacs-daemon/emacs-daemon-0.9.ebuild b/app-emacs/emacs-daemon/emacs-daemon-0.9.ebuild
deleted file mode 100644
index 4a9d11e1c952..000000000000
--- a/app-emacs/emacs-daemon/emacs-daemon-0.9.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-daemon/emacs-daemon-0.9.ebuild,v 1.1 2008/12/19 09:36:21 ulm Exp $
-
-inherit elisp
-
-DESCRIPTION="Gentoo support for Emacs running as a server in the background"
-HOMEPAGE="http://www.gentoo.org/proj/en/lisp/emacs/"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND=">=virtual/emacs-23"
-RDEPEND="${DEPEND}
- >=sys-apps/openrc-0.3.0-r1"
-
-SITEFILE="10${PN}-gentoo.el"
-
-pkg_setup() {
- local has_daemon=$(${EMACS} ${EMACSFLAGS} \
- --eval "(princ (fboundp 'daemonp))")
- if [ "${has_daemon}" != t ]; then
- ewarn "Your current Emacs version does not support running as a daemon"
- ewarn "which is required for ${CATEGORY}/${PN}."
- ewarn "Use \"eselect emacs\" to select an Emacs version >= 23."
- fi
-}
-
-src_compile() { :; }
-
-src_install() {
- newinitd emacs.rc emacs || die
- newconfd emacs.conf emacs || die
- exeinto /usr/libexec/emacs
- doexe emacs-wrapper.sh || die
- elisp-site-file-install "${SITEFILE}" || die
- keepdir /var/run/emacs || die
-}