diff options
Diffstat (limited to 'app-emacs/tnt/tnt-2.6-r1.ebuild')
-rw-r--r-- | app-emacs/tnt/tnt-2.6-r1.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-emacs/tnt/tnt-2.6-r1.ebuild b/app-emacs/tnt/tnt-2.6-r1.ebuild new file mode 100644 index 000000000000..f35d165ec432 --- /dev/null +++ b/app-emacs/tnt/tnt-2.6-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/tnt/tnt-2.6-r1.ebuild,v 1.1 2007/04/17 06:51:52 ulm Exp $ + +inherit elisp + +DESCRIPTION="Client for the AOL Instant Messenging service using the Emacs text editor as its UI" +HOMEPAGE="http://tnt.sourceforge.net/" +SRC_URI="mirror://sourceforge/tnt/${P}.tar.gz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +SITEFILE=51${PN}-gentoo.el + +DEPEND="" + +src_compile() { + elisp-comp *.el || die "elisp-comp failed" +} + +src_install() { + elisp-install ${PN} *.{el,elc} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + insinto "$SITELISP/tnt/sounds" + doins sounds/* + dodoc ChangeLog PROTOCOL README + insinto /usr/share/doc/${PF}/procmail + doins procmail/* +} |