diff options
author | 2014-02-23 09:17:25 +0000 | |
---|---|---|
committer | 2014-02-23 09:17:25 +0000 | |
commit | dcd3ede2ab6179bc687278f9b0c427c4517007d1 (patch) | |
tree | eaa6f8782f1993995bd7aa43b56787defcff3ad0 /app-emacs/planner | |
parent | Stable for ppc64, wrt bug #493782 (diff) | |
download | gentoo-2-dcd3ede2ab6179bc687278f9b0c427c4517007d1.tar.gz gentoo-2-dcd3ede2ab6179bc687278f9b0c427c4517007d1.tar.bz2 gentoo-2-dcd3ede2ab6179bc687278f9b0c427c4517007d1.zip |
Update ebuild to EAPI 5. Specify LICENSE more precisely.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-emacs/planner')
-rw-r--r-- | app-emacs/planner/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/planner/files/80planner-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/planner/planner-3.42.ebuild | 22 |
3 files changed, 14 insertions, 19 deletions
diff --git a/app-emacs/planner/ChangeLog b/app-emacs/planner/ChangeLog index ec6c7a4a333e..65015ad9f990 100644 --- a/app-emacs/planner/ChangeLog +++ b/app-emacs/planner/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/planner -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/planner/ChangeLog,v 1.23 2012/12/01 19:45:08 armin76 Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/planner/ChangeLog,v 1.24 2014/02/23 09:17:25 ulm Exp $ + + 23 Feb 2014; Ulrich Müller <ulm@gentoo.org> planner-3.42.ebuild: + Update ebuild to EAPI 5. Specify LICENSE more precisely. 01 Dec 2012; Raúl Porcel <armin76@gentoo.org> planner-3.42.ebuild: Drop sparc keywords diff --git a/app-emacs/planner/files/80planner-gentoo.el b/app-emacs/planner/files/80planner-gentoo.el index f05fcc155ec7..b7583c2298dc 100644 --- a/app-emacs/planner/files/80planner-gentoo.el +++ b/app-emacs/planner/files/80planner-gentoo.el @@ -1,8 +1,4 @@ - -;;; planner site-lisp configuration - (add-to-list 'load-path "@SITELISP@") - (require 'planner-autoloads) (setq remember-handler-functions '(remember-planner-append)) (defvaralias 'remember-annotation-functions 'planner-annotation-functions) diff --git a/app-emacs/planner/planner-3.42.ebuild b/app-emacs/planner/planner-3.42.ebuild index 6e60ec9c9551..706d4db90a82 100644 --- a/app-emacs/planner/planner-3.42.ebuild +++ b/app-emacs/planner/planner-3.42.ebuild @@ -1,17 +1,18 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/planner/planner-3.42.ebuild,v 1.2 2012/12/01 19:45:08 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/planner/planner-3.42.ebuild,v 1.3 2014/02/23 09:17:25 ulm Exp $ + +EAPI=5 inherit elisp DESCRIPTION="Maintain a local Wiki using Emacs-friendly markup" -HOMEPAGE="http://www.emacswiki.org/cgi-bin/wiki/PlannerMode" +HOMEPAGE="http://www.emacswiki.org/emacs/PlannerMode" SRC_URI="http://download.gna.org/planner-el/${P}.tar.gz" -LICENSE="GPL-3" +LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" RESTRICT="test" DEPEND=">=app-emacs/muse-3.02.6a @@ -21,14 +22,9 @@ RDEPEND="${DEPEND}" PDEPEND="app-emacs/remember" SITEFILE="80${PN}-gentoo.el" +ELISP_TEXINFO="planner-el.texi" +DOCS="AUTHORS COMMENTARY ChangeLog* NEWS README" src_compile() { - emake || die -} - -src_install() { - elisp-install ${PN} *.el *.elc || die - elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die - doinfo planner-el.info || die - dodoc AUTHORS COMMENTARY ChangeLog* NEWS README || die "dodoc failed" + default } |