You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-games/hawknl/hawknl-1.68-r2.ebuild

40 lines
853 B

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit toolchain-funcs eutils multilib
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="amd64 hppa x86"
IUSE="doc"
RDEPEND=""
DEPEND=""
S=${WORKDIR}/hawknl${PV}
src_prepare() {
epatch "${FILESDIR}"/${P}-build.patch
sed -i\ -e '/echo /d' src/makefile.linux || die
}
src_compile() {
emake -C src -f makefile.linux \
CC="$(tc-getCC)" \
OPTFLAGS="${CFLAGS} -D_GNU_SOURCE -D_REENTRANT"
}
src_install() {
emake -j1 -C src -f makefile.linux \
LIBDIR="${D}/usr/$(get_libdir)" \
INCDIR="${D}/usr/include" install
if use doc ; then
dodoc -r samples
fi
}