summaryrefslogtreecommitdiff
blob: 8f5e664c81805a8b32c798fd321b8c2b33614b73 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/autoconf-archive/autoconf-archive-2005.10.14.ebuild,v 1.1 2005/12/18 01:39:45 vapier Exp $

MY_PV=${PV//./-}
DESCRIPTION="GNU Autoconf Macro Archive"
HOMEPAGE="http://autoconf-archive.cryp.to/"
SRC_URI="http://autoconf-archive.cryp.to/${PN}-${MY_PV}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
IUSE=""

DEPEND=""
RDEPEND="sys-devel/automake
	sys-devel/autoconf"

S=${WORKDIR}/${PN}-${MY_PV}

src_unpack() {
	unpack ${A}
	cd "${S}"
	sed -i \
		-e '/^htmldir/s:$(prefix)/html:$(datadir)/doc/'${PF}'/html:' \
		Makefile.in || die "sed html doc"
}

src_install() {
	make install DESTDIR="${D}" || die
	rm -r "${D}"/usr/share/${PN}
	dodoc AUTHORS README
}