mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# New ports collection makefile for: hohlin
|
|
# Date created: 2004-08-17
|
|
# Whom: Janos Mohacsi <janos.mohacsi@bsd.hu>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hohlin
|
|
PORTVERSION= 1.01
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
#MASTER_SITES= http://retrospec.sgn.net/download.php?id=63&path=games/hoh/bin/
|
|
#requires post to download
|
|
MASTER_SITES= http://skye.ki.iif.hu/~mohacsi/downloads/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= ${PORTNAME}-${SHORTPORTVERSION}
|
|
|
|
MAINTAINER= janos.mohacsi@bsd.hu
|
|
COMMENT= Remake of the classic spectrum game Head over Heels
|
|
|
|
WRKSRC= ${WRKDIR}/hoh-install-${PORTVERSION}/
|
|
|
|
USE_BZIP2= YES
|
|
USE_LINUX= yes
|
|
USE_XLIB= yes
|
|
ONLY_FOR_ARCHS= i386
|
|
SHORTPORTVERSION=${PORTVERSION:C/([0-9]*)\.([0-9]*)/\1\2/}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-build:
|
|
${BRANDELF} -t Linux ${WRKSRC}/data/HoH
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/data/HoH ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/data/HoHOriginal.dat ${DATADIR}
|
|
${MKDIR} ${DATADIR}/Sound
|
|
${INSTALL_DATA} ${WRKSRC}/data/Sound/Sound.dat ${DATADIR}/Sound/
|
|
${INSTALL_DATA} ${WRKSRC}/data/Sound/Game.ogg ${DATADIR}/Sound/
|
|
${INSTALL_DATA} ${WRKSRC}/data/Sound/Theme.ogg ${DATADIR}/Sound/
|
|
${SED} -e 's:%%DATADIR%%:${DATADIR}:g' ${FILESDIR}/hoh.sh > \
|
|
${PREFIX}/bin/HoH
|
|
${CHMOD} +x ${PREFIX}/bin/HoH
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/docs/* ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|