diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-03-19 19:41:12 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-03-19 19:41:12 +0000 |
commit | 6caebf8a01c061ad9848563abe716ace8405b239 (patch) | |
tree | 92b53d936736866dcda75151846c43997788a03e /app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.47.1.ebuild | |
parent | Version bumped and added ruby.eclass support. Updated HOMEPAGE and SRC_URI. F... (diff) | |
download | historical-6caebf8a01c061ad9848563abe716ace8405b239.tar.gz historical-6caebf8a01c061ad9848563abe716ace8405b239.tar.bz2 historical-6caebf8a01c061ad9848563abe716ace8405b239.zip |
Initial import. Ebuild submitted by Karl-Johan Karlsson <creideiki+gentoo-bugzilla@lysator.liu.se>, closing bug #37469
Diffstat (limited to 'app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.47.1.ebuild')
-rw-r--r-- | app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.47.1.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.47.1.ebuild b/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.47.1.ebuild new file mode 100644 index 000000000000..044d898cf376 --- /dev/null +++ b/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.47.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.47.1.ebuild,v 1.1 2004/03/19 19:41:12 usata Exp $ + +inherit elisp + +IUSE="" + +MY_P="${PN}-all-${PV}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="Elisp client for the LysKOM conference system" +HOMEPAGE="http://www.lysator.liu.se/lyskom/klienter/emacslisp/index.en.html" +SRC_URI="http://www.lysator.liu.se/lyskom/klienter/emacslisp/${MY_P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/emacs" + +SITEFILE=50lyskom-elisp-client-gentoo.el + +src_unpack() { + unpack ${A} + cd ${S} + mv lyskom-all-${PV}.el lyskom.el +} + +src_install() { + elisp-install ${PN} *.el* + elisp-site-file-install ${FILESDIR}/${SITEFILE} + + dodoc COPYING NEWS-* README +} + +pkg_postinst() { + elisp-site-regen + ewarn + ewarn "If you prefer Swedish language environment, add" + ewarn "\t(setq-default kom-default-language 'sv)" + ewarn "to your emacs configuration file." + ewarn +} + +pkg_postrm() { + elisp-site-regen +} |