diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-10-11 20:15:02 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-10-11 20:15:02 +0000 |
commit | 3fa88eded526cd585db6a96e27161cbfeddb9a42 (patch) | |
tree | 145c4af3b5a607d703f3938db0e747ffe3fb24ce /app-emacs/anything/anything-1.3.2.ebuild | |
parent | package.mask >=baselayout-2.1, bug 386821 (diff) | |
download | historical-3fa88eded526cd585db6a96e27161cbfeddb9a42.tar.gz historical-3fa88eded526cd585db6a96e27161cbfeddb9a42.tar.bz2 historical-3fa88eded526cd585db6a96e27161cbfeddb9a42.zip |
Initial import, from Emacs overlay. Ebuild contributed by Tom Prince <tom.prince@ualberta.net> in bug 385407, with modifications by me.
Package-Manager: portage-2.1.10.25/cvs/Linux x86_64
Diffstat (limited to 'app-emacs/anything/anything-1.3.2.ebuild')
-rw-r--r-- | app-emacs/anything/anything-1.3.2.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-emacs/anything/anything-1.3.2.ebuild b/app-emacs/anything/anything-1.3.2.ebuild new file mode 100644 index 000000000000..58ecad118533 --- /dev/null +++ b/app-emacs/anything/anything-1.3.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/anything/anything-1.3.2.ebuild,v 1.1 2011/10/11 20:15:02 ulm Exp $ + +EAPI=4 + +inherit elisp + +DESCRIPTION="Open anything - QuickSilver-like candidate-selection framework" +HOMEPAGE="http://www.emacswiki.org/emacs/Anything" +# snapshot from http://repo.or.cz/w/anything-config.git +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="extensions" + +S="${WORKDIR}/anything-config" +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp-compile *.el || die + elisp-make-autoload-file || die + + if use extensions; then + BYTECOMPFLAGS="-L . -L extensions" elisp-compile extensions/*.el || die + fi +} + +src_install() { + elisp-install ${PN} *.{el,elc} || die + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die + + if use extensions; then + elisp-install ${PN} extensions/*.{el,elc} || die + fi + + dodoc README doc/anything.pdf +} |