diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-10-07 18:23:00 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-10-07 18:23:00 +0000 |
commit | 780ffc4620bc73f8aecb5dca22cdb0115644c660 (patch) | |
tree | 3e3dce30e5802173bfd53cbcaa1d5a19df5249e8 /app-emacs/aspectj4emacs | |
parent | Version bump. (diff) | |
download | gentoo-2-780ffc4620bc73f8aecb5dca22cdb0115644c660.tar.gz gentoo-2-780ffc4620bc73f8aecb5dca22cdb0115644c660.tar.bz2 gentoo-2-780ffc4620bc73f8aecb5dca22cdb0115644c660.zip |
quote some variables; reorder keywords; canonicalise SITEFILE variable; use braces instead of ticks
(Portage version: 2.1.3.9)
Diffstat (limited to 'app-emacs/aspectj4emacs')
-rw-r--r-- | app-emacs/aspectj4emacs/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/aspectj4emacs/aspectj4emacs-1.1_beta2.ebuild | 20 |
2 files changed, 16 insertions, 11 deletions
diff --git a/app-emacs/aspectj4emacs/ChangeLog b/app-emacs/aspectj4emacs/ChangeLog index 717ae07a3778..8a57fb155218 100644 --- a/app-emacs/aspectj4emacs/ChangeLog +++ b/app-emacs/aspectj4emacs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/aspectj4emacs # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/aspectj4emacs/ChangeLog,v 1.12 2007/03/08 10:07:41 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/aspectj4emacs/ChangeLog,v 1.13 2007/10/07 18:23:00 opfer Exp $ + + 07 Oct 2007; Christian Faulhammer <opfer@gentoo.org> + aspectj4emacs-1.1_beta2.ebuild: + quote some variables; reorder keywords; canonicalise SITEFILE variable; use + braces instead of ticks 08 Mar 2007; Christian Faulhammer <opfer@gentoo.org> files/80aspectj4emacs-gentoo.el: diff --git a/app-emacs/aspectj4emacs/aspectj4emacs-1.1_beta2.ebuild b/app-emacs/aspectj4emacs/aspectj4emacs-1.1_beta2.ebuild index 29d3ab5e2627..995529794625 100644 --- a/app-emacs/aspectj4emacs/aspectj4emacs-1.1_beta2.ebuild +++ b/app-emacs/aspectj4emacs/aspectj4emacs-1.1_beta2.ebuild @@ -1,11 +1,9 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/aspectj4emacs/aspectj4emacs-1.1_beta2.ebuild,v 1.9 2007/01/27 22:11:35 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/aspectj4emacs/aspectj4emacs-1.1_beta2.ebuild,v 1.10 2007/10/07 18:23:00 opfer Exp $ inherit elisp eutils -IUSE="" - MY_P="AspectJForEmacs-${PV/_beta/b}" DESCRIPTION="AspectJ support for GNU Emacs java-mode and JDEE" @@ -15,21 +13,23 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + RDEPEND="app-emacs/jde =dev-java/aspectj-1*" DEPEND="${RDEPEND} - app-arch/unzip - >=sys-apps/sed-4" + app-arch/unzip" + S="${WORKDIR}/${MY_P}" -SITEFILE=80aspectj4emacs-gentoo.el +SITEFILE=80${PN}-gentoo.el src_unpack() { unpack ${A} - epatch ${FILESDIR}/${PF}-compile-log-gentoo.patch - epatch ${FILESDIR}/${PF}-browse-url-new-window-gentoo.patch - cd ${S} + epatch "${FILESDIR}/${PF}-compile-log-gentoo.patch" + epatch "${FILESDIR}/${PF}-browse-url-new-window-gentoo.patch" + cd "${S}" cp */*.el . sed -i "s,@build.version.short@,${PV},g" *.el } @@ -42,7 +42,7 @@ src_install() { elisp_src_install for subdir in ajdee aspectj-mode; do insinto /usr/share/doc/${PF}/${subdir} - doins `find ${subdir} -type f ! -name \*.el` + doins $(find ${subdir} -type f ! -name \*.el) dosym /usr/share/doc/${PF}/html/${subdir}.html \ /usr/share/emacs/site-lisp/${PN}/${subdir}.html done |