diff options
author | 2008-08-01 15:45:33 +0000 | |
---|---|---|
committer | 2008-08-01 15:45:33 +0000 | |
commit | 4288f193975b937ea90a4caa9e5670a63ced0f95 (patch) | |
tree | 3b10857d5f12dbeb93169a21f1be65040c75abc3 /app-text/namazu | |
parent | cleaned out old ebuild(s). (diff) | |
download | gentoo-2-4288f193975b937ea90a4caa9e5670a63ced0f95.tar.gz gentoo-2-4288f193975b937ea90a4caa9e5670a63ced0f95.tar.bz2 gentoo-2-4288f193975b937ea90a4caa9e5670a63ced0f95.zip |
remove lisp/browse-url-for-emacs-19.28.el in src_compile.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-text/namazu')
-rw-r--r-- | app-text/namazu/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/namazu/namazu-2.0.18.ebuild | 19 |
2 files changed, 15 insertions, 9 deletions
diff --git a/app-text/namazu/ChangeLog b/app-text/namazu/ChangeLog index 780391485b1f..4655297af235 100644 --- a/app-text/namazu/ChangeLog +++ b/app-text/namazu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/namazu # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/namazu/ChangeLog,v 1.27 2008/08/01 15:43:29 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/namazu/ChangeLog,v 1.28 2008/08/01 15:45:33 hattya Exp $ + + 01 Aug 2008; Akinori Hattori <hattya@gentoo.org> namazu-2.0.18.ebuild: + remove lisp/browse-url-for-emacs-19.28.el in src_compile. 01 Aug 2008; Akinori Hattori <hattya@gentoo.org> -namazu-2.0.16.ebuild, -namazu-2.0.17.ebuild, -namazu-2.0.17-r1.ebuild: diff --git a/app-text/namazu/namazu-2.0.18.ebuild b/app-text/namazu/namazu-2.0.18.ebuild index 002bc9a42a02..8bbd5e93b537 100644 --- a/app-text/namazu/namazu-2.0.18.ebuild +++ b/app-text/namazu/namazu-2.0.18.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/namazu/namazu-2.0.18.ebuild,v 1.3 2008/03/26 16:49:39 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/namazu/namazu-2.0.18.ebuild,v 1.4 2008/08/01 15:45:33 hattya Exp $ inherit elisp-common @@ -25,8 +25,6 @@ DEPEND=">=dev-perl/File-MMagic-1.20 www-client/lynx )" -SITEFILE=50${PN}-gentoo.el - src_unpack() { unpack ${A} @@ -53,8 +51,10 @@ src_compile() { if use emacs; then cd lisp - elisp-comp {namazu,gnus-nmz-1}.el || die "elisp-comp failed" + rm -f browse* + elisp-comp *.el || die fi + } src_install () { @@ -70,20 +70,23 @@ src_install () { doins etc/*.png if use emacs; then - elisp-install ${PN} lisp/{namazu,gnus-nmz-1}.el{,c} \ - || die "elisp-install failed" - elisp-site-file-install "${FILESDIR}/${SITEFILE}" \ - || die "elisp-site-file-install failed" + elisp-install ${PN} lisp/*.el* || die + elisp-site-file-install "${FILESDIR}"/50${PN}-gentoo.el || die docinto lisp dodoc lisp/ChangeLog* fi } + pkg_postinst() { + use emacs && elisp-site-regen + } pkg_postrm() { + use emacs && elisp-site-regen + } |