summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-12-17 03:09:15 +0000
committerMike Frysinger <vapier@gentoo.org>2005-12-17 03:09:15 +0000
commitecfb506ed0c71ffd70932db8b2d3f8467cb820a8 (patch)
tree640b1763af13b6baad1a7e50c0475bd5d1c828e8 /dev-games
parentAdd ipv6 USE flag, bug #115542. (diff)
downloadhistorical-ecfb506ed0c71ffd70932db8b2d3f8467cb820a8.tar.gz
historical-ecfb506ed0c71ffd70932db8b2d3f8467cb820a8.tar.bz2
historical-ecfb506ed0c71ffd70932db8b2d3f8467cb820a8.zip
old
Diffstat (limited to 'dev-games')
-rw-r--r--dev-games/hawknl/files/digest-hawknl-1.661
-rw-r--r--dev-games/hawknl/hawknl-1.66.ebuild43
2 files changed, 0 insertions, 44 deletions
diff --git a/dev-games/hawknl/files/digest-hawknl-1.66 b/dev-games/hawknl/files/digest-hawknl-1.66
deleted file mode 100644
index 79de64bbfef0..000000000000
--- a/dev-games/hawknl/files/digest-hawknl-1.66
+++ /dev/null
@@ -1 +0,0 @@
-MD5 a506fdd717665471a8bb457d539cc9ba HawkNL166src.tar.gz 176691
diff --git a/dev-games/hawknl/hawknl-1.66.ebuild b/dev-games/hawknl/hawknl-1.66.ebuild
deleted file mode 100644
index e1cc8bde85e8..000000000000
--- a/dev-games/hawknl/hawknl-1.66.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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.66.ebuild,v 1.7 2005/01/01 18:00:03 eradicator Exp $
-
-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"
-IUSE="doc"
-
-DEPEND="virtual/libc"
-
-S=${WORKDIR}/hawknl
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- ln -s makefile.linux makefile
-}
-
-src_compile() {
- make OPTFLAGS="${CFLAGS} -D_GNU_SOURCE -D_REENTRANT" || die
-}
-
-src_install() {
- dodir /usr/{include,lib}
- make install LIBDIR=${D}/usr/lib INCDIR=${D}/usr/include || die
- if use doc ; then
- docinto samples
- dodoc samples/*
- fi
-
- cd ${D}/usr/lib
- local reallib
- for f in *.so* ; do
- [ ! -L ${f} ] && continue
- reallib="$(basename $(readlink NL.so))"
- ln -sf ${reallib} ${f}
- done
-}