blob: a4c74f249654277514e019bcdb2733842ec5f36e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/magit/magit-1.2.0.ebuild,v 1.2 2013/01/31 18:22:21 bicatali Exp $
EAPI=5
inherit elisp
DESCRIPTION="An Emacs mode for GIT"
HOMEPAGE="http://magit.github.com/magit/"
SRC_URI="http://github.com/downloads/magit/magit/${P}.tar.gz"
LICENSE="GPL-3+ FDL-1.2+"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="contrib"
SITEFILE="50${PN}-gentoo.el"
src_compile() {
emake core docs
use contrib && emake contrib
rm 50magit.el magit-pkg.el || die
}
src_install() {
elisp-install ${PN} *.{el,elc} || die
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
doinfo magit.info
dodoc README.md
if use contrib; then
elisp-install ${PN} contrib/*.{el,elc} || die
dobin contrib/magit
fi
}
|