blob: a17f77bab5ba49ce2d46d30d29a3f1a0a0a18a37 (
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
37
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/ac-archive/ac-archive-0.5.57.ebuild,v 1.4 2005/04/23 11:35:08 ka0ttic Exp $
inherit fixheadtails
DESCRIPTION="The Autoconf Macro Archive"
HOMEPAGE="http://ac-archive.sourceforge.net/"
SRC_URI="mirror://sourceforge/ac-archive/${P}.tar.bz2"
LICENSE="|| ( BSD GPL-2 )"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND=""
RDEPEND="dev-lang/perl
sys-devel/automake
sys-devel/autoconf"
src_unpack() {
unpack ${A}
cd ${S}
ht_fix_file Makefile.in configure
}
src_compile() {
econf || die
}
src_install() {
make \
install-aclocals \
install-man \
DESTDIR=${D} || die
dodoc README TODO ChangeLog
}
|