48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# Created by: Marcus von Appen <mva@sysfault.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ningpo-demo
|
|
PORTVERSION= 1.05.04
|
|
CATEGORIES= games linux
|
|
MASTER_SITES= http://demofiles.linuxgamepublishing.com/ningpo/
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= ningpo_demo
|
|
EXTRACT_SUFX= .run
|
|
|
|
MAINTAINER= mva@FreeBSD.org
|
|
COMMENT= NingPo Mahjong Demo - a feature rich Mahjong game
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
USE_LINUX= yes
|
|
USE_LINUX_APPS= sdl12 jpeg sdlmixer mikmod libogg libvorbis alsalib xorglibs
|
|
NO_CDROM= Redistribution is limited, see license
|
|
NO_BUILD= yes
|
|
|
|
DATADIR= ${PREFIX}/lib/${PKGNAMEPREFIX}${PORTNAME}
|
|
SUB_FILES= ningpo
|
|
PORTDOCS= README README.licenses license.txt
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@cd ${WRKSRC} && ${TAIL} +377 ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} | \
|
|
${TAR} jxf -
|
|
|
|
do-build:
|
|
${BRANDELF} -t Linux ${WRKSRC}/bin/Linux/x86/Bin/ningpo_demo
|
|
${BRANDELF} -t Linux ${WRKSRC}/bin/Linux/x86/Bin/ningpo_demo.dynamic
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}/Bin
|
|
@cd ${WRKSRC}/bin/Linux/x86/Bin && \
|
|
${INSTALL_PROGRAM} ningpo_demo ningpo_demo.dynamic ${DATADIR}/Bin
|
|
@${INSTALL_PROGRAM} ${WRKDIR}/ningpo ${PREFIX}/bin/${PKGNAMEPREFIX}ningpo
|
|
@${CP} -R ${WRKSRC}/Resources ${DATADIR}
|
|
.if !defined (NOPORTDOCS)
|
|
@${INSTALL} -d ${DOCSDIR}
|
|
@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|