1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/japanese/slimeforest/Makefile
Nicola Vitale 559ac5bbb4 - Updated to 0.60
(This version fixes quite a few minor bugs and makes some changes
  to the dialog and ending.)

Approved by:	alexbl (mentor)
2007-01-07 22:10:07 +00:00

60 lines
1.5 KiB
Makefile

# New ports collection makefile for: sfa
# Date created: 21 August 2004
# Whom: nivit@email.it
#
# $FreeBSD$
#
PORTNAME= slimeforest
PORTVERSION= 0.60
CATEGORIES= japanese games linux
MASTER_SITES= http://nivi.interfree.it/distfiles/${DIST_SUBDIR}/ \
http://lrnj.com/
DISTNAME= sfa
EXTRACT_SUFX= .tgz
DIST_SUBDIR= ${PORTNAME}/${PORTVERSION}
MAINTAINER= nivit@FreeBSD.org
COMMENT= A NES RPG game for learning KANA and KANJI (linux version)
RUN_DEPENDS= ${LINUXBASE}/usr/lib/libSDL_image-1.2.so.0:${PORTSDIR}/graphics/linux-sdl_image
NO_BUILD= yes
USE_LINUX= yes
WRKSRC= ${WRKDIR}/slimeforest
FIND_DIRS= -type d \! -empty
FIND_EXEC= \! -type d -and -perm -a+x \! -name "*.bak" \! -name "*.orig"
FIND_DATA= \! -type d -and \! -perm -a+x -and \! -name "*.txt"
LINK_OPTS= -s
REPLACE_FILES= runfs runwin
post-patch:
@for FILE in ${REPLACE_FILES}; do \
${SED} -i .bak\
-e "/\`dirname.*\`/s//${DATADIR:S/\//\\\//g}/g" \
${WRKSRC}/$${FILE}; \
done;
do-install:
# programs and data
@cd ${WRKSRC}; \
DIRS=$$(${FIND} . ${FIND_DIRS}); \
for DIR in $${DIRS}; do \
${MKDIR} ${DATADIR}/$${DIR}; \
done; \
FILES=$$(${FIND} . ${FIND_EXEC} ); \
for FILE in $${FILES}; do \
${INSTALL_SCRIPT} $${FILE} ${DATADIR}/$${FILE}; \
done; \
FILES=$$(${FIND} . ${FIND_DATA}); \
for FILE in $${FILES}; do \
${INSTALL_DATA} $${FILE} ${DATADIR}/$${FILE}; \
done;
# links to executables
${LN} ${LINK_OPTS} ${DATADIR}/runfs ${PREFIX}/bin/slimeforest-fs
${LN} ${LINK_OPTS} ${DATADIR}/runwin ${PREFIX}/bin/slimeforest-win
.include <bsd.port.mk>