summaryrefslogtreecommitdiff
path: root/dev-games/hawknl/hawknl-1.68-r3.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-06-08 00:08:11 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-06-08 00:08:11 +0100
commitadc09cc4e6ebf7931735c02c0c272b4b885c2b30 (patch)
treed1e752b60c2ed90ae9e427cbe2b07061e3879191 /dev-games/hawknl/hawknl-1.68-r3.ebuild
parent941687623283212199cbe6e36f7d61b89d6222b2 (diff)
gentoo auto-resync : 08:06:2024 - 00:08:11
Diffstat (limited to 'dev-games/hawknl/hawknl-1.68-r3.ebuild')
-rw-r--r--dev-games/hawknl/hawknl-1.68-r3.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-games/hawknl/hawknl-1.68-r3.ebuild b/dev-games/hawknl/hawknl-1.68-r3.ebuild
deleted file mode 100644
index 4011847e391d..000000000000
--- a/dev-games/hawknl/hawknl-1.68-r3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit flag-o-matic toolchain-funcs
-
-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="examples"
-
-S="${WORKDIR}/${PN}${PV}"
-
-PATCHES=( "${FILESDIR}"/${P}-build.patch )
-
-src_configure() {
- tc-export CC
-
- # bug #855311
- append-flags -fno-strict-aliasing
- filter-lto
-}
-
-src_compile() {
- emake -C src -f makefile.linux
-}
-
-src_install() {
- emake -j1 -C src -f makefile.linux \
- LIBDIR="${ED}"/usr/$(get_libdir) \
- INCDIR="${ED}"/usr/include install
-
- dodoc src/{nlchanges.txt,readme.txt}
- if use examples; then
- docinto examples
- dodoc -r samples/.
- docompress -x /usr/share/doc/${PF}/examples
- fi
-}