blob: d300e742f491eb59cd2ba6ea9f15a6e2df7373d6 (
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
38
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/awka/awka-0.7.5.ebuild,v 1.8 2004/08/07 22:29:06 slarti Exp $
DESCRIPTION="An AWK-to-C translator."
SRC_URI="http://${PN}.sourceforge.net/${P}.tar.gz"
HOMEPAGE="http://awka.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
## TODO: add config-option for "NO_BIN_CHARS"!
./configure \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--includedir=/usr/include \
|| die "./configure failed"
emake || die "make failed"
}
src_install() {
make prefix=${D} \
MANSRCDIR=${D}/usr/share/man \
INCDIR=${D}/usr/include \
install || die "install failed"
dodoc ACKNOWLEDGEMENTS *.txt
dohtml doc/*
}
|