diff options
author | Ulrich Müller <ulm@gentoo.org> | 2007-09-16 19:51:07 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2007-09-16 19:51:07 +0000 |
commit | 98390325bd7b258a9ceb93188022d421ae0df198 (patch) | |
tree | 240f19922b8da75e65ea46305ed124a54da55834 /app-emacs/erc/erc-5.2-r1.ebuild | |
parent | Add trailing slash to HOMEPAGE. Bug #192634 (diff) | |
download | gentoo-2-98390325bd7b258a9ceb93188022d421ae0df198.tar.gz gentoo-2-98390325bd7b258a9ceb93188022d421ae0df198.tar.bz2 gentoo-2-98390325bd7b258a9ceb93188022d421ae0df198.zip |
Generate autoload file for package initialisation. Remove old versions.
(Portage version: 2.1.3.9)
Diffstat (limited to 'app-emacs/erc/erc-5.2-r1.ebuild')
-rw-r--r-- | app-emacs/erc/erc-5.2-r1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-emacs/erc/erc-5.2-r1.ebuild b/app-emacs/erc/erc-5.2-r1.ebuild new file mode 100644 index 000000000000..6ff58ee3a8f4 --- /dev/null +++ b/app-emacs/erc/erc-5.2-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/erc/erc-5.2-r1.ebuild,v 1.1 2007/09/16 19:51:07 ulm Exp $ + +inherit elisp + +DESCRIPTION="The Emacs IRC Client" +HOMEPAGE="http://emacswiki.org/cgi-bin/wiki.pl?EmacsIRCClient" +SRC_URI="mirror://gnu/erc/${P}.tar.gz" + +LICENSE="GPL-2 FDL-1.2" +SLOT="0" +KEYWORDS="~ppc ~sparc ~x86 ~amd64" +IUSE="" + +SITEFILE=51${PN}-gentoo.el + +src_compile() { + # force regeneration of autoload file by the proper Emacs version + rm -f erc-auto.el + emake || die "emake failed" +} + +src_install() { + elisp-install ${PN} *.el *.elc + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + dodoc AUTHORS ChangeLog* CREDITS HISTORY servers.pl README + doinfo *.info* +} |