blob: dc6595b87b0e6a08a10005706c617b04b2753ff4 (
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
|
# 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.12.18.ebuild,v 1.1 2005/12/22 06:14:50 vapier Exp $
inherit eutils
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:$(pkgdatadir)/html:' \
Makefile.in || die "sed html doc"
}
src_install() {
make install DESTDIR="${D}" || die
dodir /usr/share/doc
mv "${D}"/usr/share/{${PN},doc/${PF}} || die
}
|