diff options
Diffstat (limited to 'app-emacs/zenirc/zenirc-2.112.ebuild')
-rw-r--r-- | app-emacs/zenirc/zenirc-2.112.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/app-emacs/zenirc/zenirc-2.112.ebuild b/app-emacs/zenirc/zenirc-2.112.ebuild new file mode 100644 index 000000000000..3475416d1ff0 --- /dev/null +++ b/app-emacs/zenirc/zenirc-2.112.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/zenirc/zenirc-2.112.ebuild,v 1.1 2002/11/01 02:52:02 mkennedy Exp $ + +inherit elisp + +IUSE="" + +DESCRIPTION="ZenIRC is a full-featured scriptable IRC client for the EMACS text editor." +HOMEPAGE="http://www.zenirc.org" +SRC_URI="ftp://ftp.zenirc.org/pub/zenirc/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="virtual/emacs" + +S="${WORKDIR}/${P}" + +SITEFILE=50zenirc-gentoo.el + +src_compile() { + ./configure --prefix=/usr || die + make || die +} + +src_install() { + make prefix=${D}/usr \ + infodir=${D}/usr/share/info \ + elispdir=${D}/${SITELISP}/${PN} \ + etcdir=${D}/usr/share/${PN} install || die + + elisp-install ${PN} src/*.el || die + elisp-site-file-install ${FILESDIR}/${SITEFILE} || die + + doinfo doc/zenirc.info + dodoc BUGS COPYING INSTALL NEWS README TODO + docinto doc + dodoc doc/* + + einfo "Refer to the Info documentation and ${SITELISP}/${PN}/zenirc-example.el for cusomtization hints" +} + +pkg_postinst() { + elisp-site-regen +} + +pkg_postrm() { + elisp-site-regen +} |