blob: ab8f9ce21bc48fa166bcef85c783910b50a162a0 (
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
39
40
41
42
43
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cdecl/cdecl-2.5-r1.ebuild,v 1.11 2007/06/04 12:10:56 phosphan Exp $
inherit eutils
DESCRIPTION="Turn English phrases to C or C++ declarations"
SRC_URI="ftp://ftp.netsw.org/softeng/lang/c/tools/cdecl/${P}.tar.gz"
HOMEPAGE="http://www.boutell.com/lsm/lsmbyid.cgi/002103"
KEYWORDS="~amd64 ~mips ~ppc sparc x86"
LICENSE="public-domain"
SLOT="0"
DEPEND=">=sys-apps/sed-4
dev-util/yacc
readline? ( sys-libs/ncurses
sys-libs/readline )
!<dev-util/cutils-1.6-r2"
IUSE="readline"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}.patch
}
src_compile() {
if use readline; then
CFLAGS="${CFLAGS} -DUSE_READLINE"
LIBS="${LIBS} -lreadline -lncurses"
fi
emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" || die
}
src_install() {
dobin cdecl
dohard /usr/bin/cdecl /usr/bin/c++decl
dodoc README
doman *.1
}
|