blob: 577829abad3b2a7470a704df4f23233fb5e8cf4a (
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
52
53
54
55
56
57
58
59
|
# Copyright 1999-2005 Gentoo Foundation, 2004 Richard Garand <richard@garandnet.net>
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/hawknl/hawknl-1.68.ebuild,v 1.11 2005/01/01 18:00:03 eradicator Exp $
inherit gcc
DESCRIPTION="A cross-platform network library designed for games"
HOMEPAGE="http://www.hawksoft.com/hawknl/"
SRC_URI="http://www.sonic.net/~philf/download/HawkNL${PV/./}src.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ppc hppa amd64"
IUSE="doc"
RDEPEND="virtual/libc"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S=${WORKDIR}/hawknl${PV}
src_unpack() {
unpack ${A}
cd ${S}
ln -s makefile.linux makefile
sed -i \
-e 's:make :$(MAKE) :g' makefile \
|| die "sed makefile failed"
sed -i \
-e '/echo /d' src/makefile.linux \
|| die "sed src/makefile.linux failed"
}
src_compile() {
emake \
CC="$(gcc-getCC)" \
OPTFLAGS="${CFLAGS} -D_GNU_SOURCE -D_REENTRANT" || die "emake failed"
}
src_install() {
local reallib
dodir /usr/{include,lib}
make install LIBDIR="${D}/usr/lib" INCDIR="${D}/usr/include" \
|| die "make install failed"
if use doc ; then
docinto samples
dodoc samples/* || die "dodoc failed"
fi
cd "${D}/usr/lib"
for f in *.so* ; do
[ ! -L ${f} ] && continue
reallib="$(basename $(readlink NL.so))"
ln -sf ${reallib} ${f}
done
}
|