diff options
author | 2013-05-05 16:51:24 +0000 | |
---|---|---|
committer | 2013-05-05 16:51:24 +0000 | |
commit | 83234f1f5414697354df9ec32c0511b1d39db1f5 (patch) | |
tree | 3ca5067934fd78f2142b99a1a0a3fc6e28b1830a /app-emacs | |
parent | Version bump. (diff) | |
download | gentoo-2-83234f1f5414697354df9ec32c0511b1d39db1f5.tar.gz gentoo-2-83234f1f5414697354df9ec32c0511b1d39db1f5.tar.bz2 gentoo-2-83234f1f5414697354df9ec32c0511b1d39db1f5.zip |
Fix previous commit, EPREFIX was missing from paths, bug 468574.
(Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/org-mode/ChangeLog | 6 | ||||
-rw-r--r-- | app-emacs/org-mode/org-mode-7.9.2.ebuild | 8 | ||||
-rw-r--r-- | app-emacs/org-mode/org-mode-8.0.2.ebuild | 8 |
3 files changed, 13 insertions, 9 deletions
diff --git a/app-emacs/org-mode/ChangeLog b/app-emacs/org-mode/ChangeLog index d738dfd9cb4d..b1f80296ba37 100644 --- a/app-emacs/org-mode/ChangeLog +++ b/app-emacs/org-mode/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/org-mode # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.156 2013/05/02 19:28:24 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/ChangeLog,v 1.157 2013/05/05 16:51:24 ulm Exp $ + + 05 May 2013; Ulrich Müller <ulm@gentoo.org> org-mode-7.9.2.ebuild, + org-mode-8.0.2.ebuild: + Fix previous commit, EPREFIX was missing from paths, bug 468574. *org-mode-8.0.2 (02 May 2013) diff --git a/app-emacs/org-mode/org-mode-7.9.2.ebuild b/app-emacs/org-mode/org-mode-7.9.2.ebuild index 269fa63c2294..79bf54edc682 100644 --- a/app-emacs/org-mode/org-mode-7.9.2.ebuild +++ b/app-emacs/org-mode/org-mode-7.9.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/org-mode-7.9.2.ebuild,v 1.7 2013/05/02 19:20:02 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/org-mode-7.9.2.ebuild,v 1.8 2013/05/05 16:51:24 ulm Exp $ EAPI=4 NEED_EMACS=22 @@ -26,7 +26,7 @@ ELISP_REMOVE="lisp/org-install.el" SITEFILE="50${PN}-gentoo.el" src_compile() { - emake datadir="${SITEETC}/${PN}" + emake datadir="${EPREFIX}${SITEETC}/${PN}" use doc && emake pdf card } @@ -34,8 +34,8 @@ src_install() { emake \ DESTDIR="${D}" \ ETCDIRS="styles $(use odt-schema && echo schema)" \ - lispdir="${SITELISP}/${PN}" \ - datadir="${SITEETC}/${PN}" \ + lispdir="${EPREFIX}${SITELISP}/${PN}" \ + datadir="${EPREFIX}${SITEETC}/${PN}" \ install cp "${FILESDIR}/${SITEFILE}" "${T}/${SITEFILE}" diff --git a/app-emacs/org-mode/org-mode-8.0.2.ebuild b/app-emacs/org-mode/org-mode-8.0.2.ebuild index ac69384284b9..0bac9f4ef6c5 100644 --- a/app-emacs/org-mode/org-mode-8.0.2.ebuild +++ b/app-emacs/org-mode/org-mode-8.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/org-mode-8.0.2.ebuild,v 1.1 2013/05/02 19:28:24 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/org-mode/org-mode-8.0.2.ebuild,v 1.2 2013/05/05 16:51:24 ulm Exp $ EAPI=5 NEED_EMACS=23 @@ -23,7 +23,7 @@ S="${WORKDIR}/org-${PV}" SITEFILE="50${PN}-gentoo-8.el" src_compile() { - emake datadir="${SITEETC}/${PN}" + emake datadir="${EPREFIX}${SITEETC}/${PN}" use doc && emake pdf card } @@ -31,8 +31,8 @@ src_install() { emake \ DESTDIR="${D}" \ ETCDIRS="styles $(use odt-schema && echo schema)" \ - lispdir="${SITELISP}/${PN}" \ - datadir="${SITEETC}/${PN}" \ + lispdir="${EPREFIX}${SITELISP}/${PN}" \ + datadir="${EPREFIX}${SITEETC}/${PN}" \ install cp "${FILESDIR}/${SITEFILE}" "${T}/${SITEFILE}" |