mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
44 lines
979 B
Makefile
44 lines
979 B
Makefile
# Created by: Jan Stocker <Jan.Stocker@t-online.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= egoboo
|
|
PORTVERSION= 2.7.5
|
|
PORTREVISION= 8
|
|
PORTEPOCH= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}/Linux%20Source%20Distro/${PORTVERSION}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
${DISTNAME:S/-/-data-/}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= A 3D dungeon crawling adventure in the spirit of NetHack
|
|
|
|
USE_SDL= sdl ttf mixer image
|
|
USE_GL= yes
|
|
USE_GMAKE= yes
|
|
USE_DOS2UNIX= *.c
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/game
|
|
MAKEFILE= Makefile.unix
|
|
|
|
PLIST_FILES= bin/${PORTNAME} libexec/${PORTNAME}
|
|
|
|
PORTDATA= *
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/share/egoboo|${DATADIR}|g; \
|
|
s|cp -a|cp -RPp|; s|/usr/libexec|${PREFIX}/libexec|' \
|
|
${WRKSRC}/egoboo.sh
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDATA)
|
|
${MKDIR} ${DATADIR}
|
|
@cd ${WRKDIR}/${DISTNAME:S/-/-data-/} && \
|
|
${COPYTREE_SHARE} . ${DATADIR}
|
|
.endif
|
|
|
|
@${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}
|
|
|
|
.include <bsd.port.mk>
|