diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-01-06 10:53:13 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-01-06 10:53:13 +0000 |
commit | 10abfc03d401cf0495c7e39a17518f0634bd2617 (patch) | |
tree | a0392237f426176d5c02d634fac250ed72660462 /app-emacs | |
parent | Really build with system V8, bug #348609 reported by redneb <redneb@gmx.com>. (diff) | |
download | gentoo-2-10abfc03d401cf0495c7e39a17518f0634bd2617.tar.gz gentoo-2-10abfc03d401cf0495c7e39a17518f0634bd2617.tar.bz2 gentoo-2-10abfc03d401cf0495c7e39a17518f0634bd2617.zip |
Version bump.
(Portage version: 2.1.9.29/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/auto-complete/ChangeLog | 9 | ||||
-rw-r--r-- | app-emacs/auto-complete/auto-complete-1.3.1.ebuild | 34 |
2 files changed, 41 insertions, 2 deletions
diff --git a/app-emacs/auto-complete/ChangeLog b/app-emacs/auto-complete/ChangeLog index 1de295cc63f1..2f1c385abcbb 100644 --- a/app-emacs/auto-complete/ChangeLog +++ b/app-emacs/auto-complete/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/auto-complete -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/auto-complete/ChangeLog,v 1.1 2010/11/16 18:55:16 ulm Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/auto-complete/ChangeLog,v 1.2 2011/01/06 10:53:13 ulm Exp $ + +*auto-complete-1.3.1 (06 Jan 2011) + + 06 Jan 2011; Ulrich Mueller <ulm@gentoo.org> +auto-complete-1.3.1.ebuild: + Version bump. *auto-complete-1.3 (16 Nov 2010) diff --git a/app-emacs/auto-complete/auto-complete-1.3.1.ebuild b/app-emacs/auto-complete/auto-complete-1.3.1.ebuild new file mode 100644 index 000000000000..b45097891167 --- /dev/null +++ b/app-emacs/auto-complete/auto-complete-1.3.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/auto-complete/auto-complete-1.3.1.ebuild,v 1.1 2011/01/06 10:53:13 ulm Exp $ + +EAPI=3 + +inherit elisp + +DESCRIPTION="Auto-complete package" +HOMEPAGE="http://cx4a.org/software/auto-complete/ + http://github.com/m2ym/auto-complete/" +SRC_URI="http://cx4a.org/pub/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3 FDL-1.3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="linguas_ja" + +SITEFILE="50${PN}-gentoo.el" + +src_install() { + elisp_src_install + + # install dictionaries + insinto "${SITEETC}/${PN}" + doins -r dict || die + + dodoc README.txt TODO.txt etc/test.txt || die + cd doc + dodoc index.txt manual.txt demo.txt changes.txt *.png || die + if use linguas_ja; then + dodoc index.ja.txt manual.ja.txt changes.ja.txt || die + fi +} |