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/games-roguelike/moria/moria-5.5.2.ebuild

69 lines
2.0 KiB

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-roguelike/moria/moria-5.5.2.ebuild,v 1.12 2010/05/05 20:28:21 mr_bones_ Exp $
EAPI=2
inherit eutils toolchain-funcs games
DESCRIPTION="Rogue-like D&D curses game similar to nethack (BUT BETTER)"
HOMEPAGE="http://remarque.org/~grabiner/moria.html"
SRC_URI="ftp://ftp.greyhelm.com/pub/Games/Moria/source/um${PV}.tar.Z
http://www.funet.fi/pub/unix/games/moria/source/um${PV}.tar.Z
http://www.piratehaven.org/~beej/moria/mirror/Games/Moria/source/um${PV}.tar.Z
http://alge.anart.no/ftp/pub/games/RPG/moria/um${PV}.tar.Z
ftp://kane.evendata.net/pub/${PN}-extras.tar.bz2"
LICENSE="Moria"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE=""
DEPEND=">=sys-libs/ncurses-5"
S=${WORKDIR}/umoria
src_prepare() {
local f
epatch \
"${FILESDIR}"/${PV}-gentoo-paths.patch \
"${FILESDIR}"/${PV}-glibc.patch \
"${FILESDIR}"/${PV}-fbsd.patch \
"${FILESDIR}"/${PV}-hours.patch
for f in source/* unix/* ; do
ln -s ${f} $(basename ${f})
done
sed -i \
-e "s:David Grabiner:root:" \
-e "s:GENTOO_DATADIR:${GAMES_DATADIR}/${PN}:" \
-e "s:GENTOO_STATEDIR:${GAMES_STATEDIR}:" \
config.h \
|| die "sed failed"
echo "#include <stdlib.h>" >> config.h
echo "#include <stdio.h>" >> config.h
sed -i \
-e "/^STATEDIR =/s:=.*:=\$(DESTDIR)${GAMES_STATEDIR}:" \
-e "/^BINDIR = /s:=.*:=\$(DESTDIR)${GAMES_BINDIR}:" \
-e "/^LIBDIR = /s:=.*:=\$(DESTDIR)${GAMES_DATADIR}/${PN}:" \
-e "/^CFLAGS = /s:=.*:=${CFLAGS}:" \
-e "/^OWNER = /s:=.*:=${GAMES_USER}:" \
-e "/^GROUP = /s:=.*:=${GAMES_GROUP}:" \
-e "/^CC = /s:=.*:=$(tc-getCC):" \
-e '/^LFLAGS = /s:=.*:= $(LDFLAGS):' \
Makefile \
|| die "sed failed"
mv doc/moria.6 "${S}" || die "mv failed"
}
src_install() {
dodir "${GAMES_BINDIR}" "${GAMES_DATADIR}/${PN}" "${GAMES_STATEDIR}"
emake DESTDIR="${D}" install || die "emake install failed"
doman moria.6
dodoc README doc/* "${WORKDIR}"/${PN}-extras/*
prepgamesdirs
}