blob: 40f675a596f9e87308f95ee067bbd6f66cd66a28 (
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
49
50
51
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cutils/cutils-1.6-r4.ebuild,v 1.5 2012/03/18 17:50:44 armin76 Exp $
EAPI=4
inherit eutils toolchain-funcs
DESCRIPTION="C language utilities"
HOMEPAGE="http://www.sigala.it/sandro/software.php#cutils"
SRC_URI="http://www.sigala.it/sandro/files/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND=""
DEPEND="sys-devel/flex"
src_prepare() {
epatch "${FILESDIR}"/${PN}-infopage.patch
mv "${S}"/src/cdecl/cdecl.1 \
"${S}"/src/cdecl/cutils-cdecl.1 || die
# Force rebuild of cutils.info
rm -f "${S}"/doc/cutils.info || die
sed -e "s/cdecl/cutils-cdecl/g" \
-i "${S}"/doc/cutils.texi || die
sed -e "/PROG/s/cdecl/cutils-cdecl/" \
-i "${S}"/src/cdecl/Makefile.in || die
sed -e "/Xr/s/cdecl/cutils-cdecl/" \
-i "${S}"/src/cundecl/cundecl.1 || die
sed -i "/Nm/s/cdecl/cutils-cdecl/" \
"${S}"/src/cdecl/cutils-cdecl.1 || die
}
src_compile() {
emake CC="$(tc-getCC)" -j1
}
src_install () {
emake DESTDIR="${D}" install
dodoc CREDITS HISTORY NEWS README
}
pkg_postinst () {
elog "cdecl was installed as cutils-cdecl because of a naming conflict"
elog "with dev-util/cdecl."
}
|