blob: 48758513808885334894c15c041e7a3d5cc3bc2e (
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
44
45
46
47
48
|
# Copyright 1999-2009 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.14 2009/01/11 20:56:36 phosphan Exp $
inherit eutils toolchain-funcs
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"
RDEPEND="readline? (
sys-libs/ncurses
sys-libs/readline
)"
DEPEND="${RDEPEND}
|| (
dev-util/yacc
sys-devel/bison
)
!<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 CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LIBS="${LIBS}" || die
}
src_install() {
dobin cdecl
dohard /usr/bin/cdecl /usr/bin/c++decl
dodoc README
doman *.1
}
|