You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-emacs/yasnippet/yasnippet-0.6.1c.ebuild

49 lines
1.1 KiB

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
inherit elisp
DESCRIPTION="Yet another snippet extension for Emacs"
HOMEPAGE="https://github.com/capitaomorte/yasnippet"
SRC_URI="https://yasnippet.googlecode.com/files/${P}.tar.bz2
doc? ( https://yasnippet.googlecode.com/files/${PN}-doc-${PV}.tar.bz2 )"
# Homepage says MIT licence, source contains GPL-2 copyright notice
LICENSE="MIT GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND=">=app-emacs/dropdown-list-20080316"
RDEPEND="${DEPEND}"
SITEFILE="50${PN}-gentoo.el"
src_unpack() {
elisp_src_unpack
# remove bundled copy of dropdown-list
rm "${S}/dropdown-list.el" || die
}
src_install() {
elisp_src_install
insinto "${SITEETC}/${PN}"
doins -r snippets || die "doins failed"
if use doc; then
dohtml -r "${WORKDIR}"/doc/* || die "dohtml failed"
fi
}
pkg_postinst() {
elisp-site-regen
elog "Please add the following code into your .emacs to use yasnippet:"
elog "(yas/initialize)"
elog "(yas/load-directory \"${SITEETC}/${PN}/snippets\")"
}