diff options
author | James Le Cuirot <chewi@gentoo.org> | 2023-10-09 21:38:44 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2023-10-09 21:38:44 +0100 |
commit | 0a7f24661afbc6a94c7225436be321370a5ce633 (patch) | |
tree | 761583462d5157e944d301afc87780cc5d490266 /games-puzzle | |
parent | games-puzzle/galaxis: Fix call to undeclared library function bzero (diff) | |
download | gentoo-0a7f24661afbc6a94c7225436be321370a5ce633.tar.gz gentoo-0a7f24661afbc6a94c7225436be321370a5ce633.tar.bz2 gentoo-0a7f24661afbc6a94c7225436be321370a5ce633.zip |
games-puzzle/galaxis: Drop old 1.10
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/galaxis/galaxis-1.10.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/games-puzzle/galaxis/galaxis-1.10.ebuild b/games-puzzle/galaxis/galaxis-1.10.ebuild deleted file mode 100644 index d5baee4147e0..000000000000 --- a/games-puzzle/galaxis/galaxis-1.10.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit desktop flag-o-matic toolchain-funcs - -DESCRIPTION="Curses-based clone of the nifty little Macintosh freeware game Galaxis" -HOMEPAGE="http://www.catb.org/~esr/galaxis/" -SRC_URI="http://www.catb.org/~esr/galaxis/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" - -DEPEND="sys-libs/ncurses:=" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-c2x.patch -) - -src_compile() { - append-cppflags $($(tc-getPKG_CONFIG) --cflags ncurses || die) -DNDEBUG - append-libs $($(tc-getPKG_CONFIG) --libs ncurses || die) - - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" TERMLIB="${LIBS}" -} - -src_install() { - dobin ${PN} - doman ${PN}.6 - einstalldocs - - doicon ${PN}.png - domenu ${PN}.desktop -} |