Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 202949
Collapse All | Expand All

(-)autotoolset-0.11.4-r1.ebuild~ (-4 / +12 lines)
Lines 2-10 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/dev-util/autotoolset/autotoolset-0.11.4-r1.ebuild,v 1.4 2006/01/01 20:57:11 metalgod Exp $
3
# $Header: /var/cvsroot/gentoo-x86/dev-util/autotoolset/autotoolset-0.11.4-r1.ebuild,v 1.4 2006/01/01 20:57:11 metalgod Exp $
4
4
5
inherit eutils fixheadtails
5
inherit eutils fixheadtails elisp-common
6
6
7
DESCRIPTION="colection of small tools to simplify project development with autotools"
7
DESCRIPTION="collection of small tools to simplify project development with autotools"
8
HOMEPAGE="http://autotoolset.sourceforge.net/"
8
HOMEPAGE="http://autotoolset.sourceforge.net/"
9
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
9
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
10
	mirror://gentoo/${P}-misc-pending-upstream-fixes.gz"
10
	mirror://gentoo/${P}-misc-pending-upstream-fixes.gz"
Lines 12-25 Link Here
12
LICENSE="GPL-2"
12
LICENSE="GPL-2"
13
SLOT="0"
13
SLOT="0"
14
KEYWORDS="~amd64 ~ppc x86"
14
KEYWORDS="~amd64 ~ppc x86"
15
IUSE=""
15
IUSE="emacs"
16
16
17
DEPEND="sys-devel/autoconf
17
DEPEND="sys-devel/autoconf
18
	sys-devel/automake
18
	sys-devel/automake
19
	sys-devel/libtool
19
	sys-devel/libtool
20
	app-arch/sharutils
20
	app-arch/sharutils
21
	app-arch/gzip
21
	app-arch/gzip
22
	dev-lang/perl"
22
	dev-lang/perl
23
	emacs? ( virtual/emacs )"
23
24
24
src_unpack() {
25
src_unpack() {
25
	unpack ${P}.tar.bz2
26
	unpack ${P}.tar.bz2
Lines 29-34 Link Here
29
	ht_fix_file src/gpl/gpl.sh
30
	ht_fix_file src/gpl/gpl.sh
30
}
31
}
31
32
33
src_compile() {
34
	local myconf="EMACS=no"
35
	use emacs && myconf="EMACS=emacs --with-lispdir=${SITELISP}/${PN}"
36
	econf ${myconf} || die "econf failed"
37
	emake || die "emake failed"
38
}
39
32
src_install() {
40
src_install() {
33
	make install DESTDIR="${D}" || die "Installation failed"
41
	make install DESTDIR="${D}" || die "Installation failed"
34
	dodoc AUTHORS ChangeLog NEWS README THANKS TODO
42
	dodoc AUTHORS ChangeLog NEWS README THANKS TODO

Return to bug 202949