summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2014-02-23 09:38:34 +0000
committerUlrich Müller <ulm@gentoo.org>2014-02-23 09:38:34 +0000
commit2a5350f2505db5330405f309b99d85fc48c4889f (patch)
treeb24a56773ab16190d530a6540bf1d23557f9d3b6 /app-emacs/php-mode
parentRevert wrong commit (diff)
downloadgentoo-2-2a5350f2505db5330405f309b99d85fc48c4889f.tar.gz
gentoo-2-2a5350f2505db5330405f309b99d85fc48c4889f.tar.bz2
gentoo-2-2a5350f2505db5330405f309b99d85fc48c4889f.zip
Update ebuild to EAPI 5. Specify LICENSE more precisely. Move site-init file to canonical name.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-emacs/php-mode')
-rw-r--r--app-emacs/php-mode/ChangeLog9
-rw-r--r--app-emacs/php-mode/files/50php-mode-gentoo.el (renamed from app-emacs/php-mode/files/51php-mode-gentoo.el)3
-rw-r--r--app-emacs/php-mode/php-mode-1.5.0.ebuild22
3 files changed, 14 insertions, 20 deletions
diff --git a/app-emacs/php-mode/ChangeLog b/app-emacs/php-mode/ChangeLog
index 2c15eea1dc17..ea22b7eb5d38 100644
--- a/app-emacs/php-mode/ChangeLog
+++ b/app-emacs/php-mode/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-emacs/php-mode
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/php-mode/ChangeLog,v 1.32 2009/11/24 21:09:12 fauli Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/php-mode/ChangeLog,v 1.33 2014/02/23 09:38:33 ulm Exp $
+
+ 23 Feb 2014; Ulrich Müller <ulm@gentoo.org> php-mode-1.5.0.ebuild,
+ +files/50php-mode-gentoo.el, -files/51php-mode-gentoo.el:
+ Update ebuild to EAPI 5. Specify LICENSE more precisely. Move site-init file
+ to canonical name.
24 Nov 2009; Christian Faulhammer <fauli@gentoo.org>
php-mode-1.5.0.ebuild:
diff --git a/app-emacs/php-mode/files/51php-mode-gentoo.el b/app-emacs/php-mode/files/50php-mode-gentoo.el
index 5db8dc5a055c..50c4ef71afa3 100644
--- a/app-emacs/php-mode/files/51php-mode-gentoo.el
+++ b/app-emacs/php-mode/files/50php-mode-gentoo.el
@@ -1,6 +1,3 @@
-
-;;; php-mode site-lisp configuration
-
(add-to-list 'load-path "@SITELISP@")
(autoload 'php-mode "php-mode" "Major mode for editing PHP code." t)
(add-to-list 'auto-mode-alist '("\\.php[s34]?\\'" . php-mode))
diff --git a/app-emacs/php-mode/php-mode-1.5.0.ebuild b/app-emacs/php-mode/php-mode-1.5.0.ebuild
index 4a5123402544..c11ec00a3ba9 100644
--- a/app-emacs/php-mode/php-mode-1.5.0.ebuild
+++ b/app-emacs/php-mode/php-mode-1.5.0.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2009 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/php-mode/php-mode-1.5.0.ebuild,v 1.6 2009/11/24 21:09:12 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/php-mode/php-mode-1.5.0.ebuild,v 1.7 2014/02/23 09:38:33 ulm Exp $
+
+EAPI=5
inherit elisp
@@ -8,20 +10,10 @@ DESCRIPTION="GNU Emacs major mode for editing PHP code"
HOMEPAGE="http://php-mode.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-LICENSE="GPL-3 FDL-1.2"
+LICENSE="GPL-3+ FDL-1.2+"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-SITEFILE=51${PN}-gentoo.el
+SITEFILE="50${PN}-gentoo.el"
+ELISP_TEXINFO="${PN}.texi"
DOCS="ChangeLog"
-
-src_compile() {
- elisp_src_compile
- makeinfo ${PN}.texi || die "makeinfo failed"
-}
-
-src_install() {
- elisp_src_install
- doinfo ${PN}.info* || die "doinfo failed"
-}