diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-07-03 09:39:44 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-07-03 09:39:44 +0000 |
commit | 0e9c949c6036289f31da3faec52a7e59c41554e2 (patch) | |
tree | 4678aa67e3b3f4a3a6f7a8bfbaeb901c4446d1fd /app-emacs/elib | |
parent | removed src_install(); relocated IUSE; added die comment (diff) | |
download | gentoo-2-0e9c949c6036289f31da3faec52a7e59c41554e2.tar.gz gentoo-2-0e9c949c6036289f31da3faec52a7e59c41554e2.tar.bz2 gentoo-2-0e9c949c6036289f31da3faec52a7e59c41554e2.zip |
removed postrm and postinst functions; added some quotes; manual make call to emake; removed virtual/emacs from DEPEND
(Portage version: 2.1.2.9)
Diffstat (limited to 'app-emacs/elib')
-rw-r--r-- | app-emacs/elib/ChangeLog | 6 | ||||
-rw-r--r-- | app-emacs/elib/elib-1.0.ebuild | 24 |
2 files changed, 12 insertions, 18 deletions
diff --git a/app-emacs/elib/ChangeLog b/app-emacs/elib/ChangeLog index f1ed250a3877..78e0f5db7463 100644 --- a/app-emacs/elib/ChangeLog +++ b/app-emacs/elib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/elib # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/elib/ChangeLog,v 1.9 2007/03/07 09:38:04 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/elib/ChangeLog,v 1.10 2007/07/03 09:39:44 opfer Exp $ + + 03 Jul 2007; Christian Faulhammer <opfer@gentoo.org> elib-1.0.ebuild: + removed postrm and postinst functions; added some quotes; manual make call + to emake; removed virtual/emacs from DEPEND 07 Mar 2007; Christian Faulhammer <opfer@gentoo.org> files/50elib-gentoo.el: diff --git a/app-emacs/elib/elib-1.0.ebuild b/app-emacs/elib/elib-1.0.ebuild index 77eafc059d5c..747f60f447bf 100644 --- a/app-emacs/elib/elib-1.0.ebuild +++ b/app-emacs/elib/elib-1.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/elib/elib-1.0.ebuild,v 1.12 2006/12/04 11:53:26 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/elib/elib-1.0.ebuild,v 1.13 2007/07/03 09:39:44 opfer Exp $ inherit elisp @@ -13,34 +13,24 @@ SLOT="0" KEYWORDS="amd64 ppc ~ppc-macos x86" IUSE="" -DEPEND="virtual/emacs" - SITEFILE=50elib-gentoo.el src_unpack() { unpack ${A} - cd ${S} + cd "${S}" sed -i 's:--infodir:--info-dir:g' Makefile } src_compile() { - make || die + emake || die "emake failed" } src_install() { - dodir ${SITELISP}/elib + dodir "${SITELISP}/elib" dodir /usr/share/info - make prefix=${D}/usr infodir=${D}/usr/share/info install || die + emake prefix="${D}/usr" infodir="${D}/usr/share/info" install || die "emake install failed" - elisp-site-file-install ${FILESDIR}/${SITEFILE} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" dodoc ChangeLog INSTALL NEWS README RELEASING TODO } - -pkg_postinst() { - elisp-site-regen -} - -pkg_postrm() { - elisp-site-regen -} |