mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
fbd0197639
- Update audio/sdl_mixer to 1.2.15 - Update graphics/sdl_image to 1.2.12 - Update graphics/sdl_ttf to 2.0.11 - Update graphics/sdl_gfx to 2.0.23 - Update net/sdl_net to 1.2.8 - Bump PORTREVISIONs on ports that depend on one or more packages due to ABI and shared library version changes - Update Mk/bsd.sdl.mk accordingly for the new shared library versions Tested by: exp-run by pav
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# New ports collection makefile for: paintown
|
|
# Date created: 2010-02-04
|
|
# Whom: Bernhard Froehlich <decke@bluelife.at>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= paintown
|
|
PORTVERSION= 3.5.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= decke@FreeBSD.org
|
|
COMMENT= Fighting game similar to Streets of Rage and TMNT
|
|
|
|
LICENSE= BSD
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS+= alleg.42:${PORTSDIR}/devel/allegro \
|
|
png.6:${PORTSDIR}/graphics/png \
|
|
freetype:${PORTSDIR}/print/freetype2
|
|
|
|
USE_SCONS= yes
|
|
USE_SDL= yes
|
|
INSTALLS_ICONS= yes
|
|
USE_DOS2UNIX= yes
|
|
DOS2UNIX_REGEX= .*\.(c|cpp|h)
|
|
|
|
SCONS_BUILDENV+=CPPPATH="${LOCALBASE}/include" \
|
|
LIBPATH="${LOCALBASE}/lib"
|
|
|
|
DESKTOP_ENTRIES="Paintown" "Fighting game similar to Streets of Rage and TMNT" \
|
|
"${LOCALBASE}/share/icons/hicolor/32x32/apps/paintown.png" \
|
|
"paintown" "Game;ActionGame;" false
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}
|
|
(cd ${WRKSRC} && ./install.sh -d ${DATADIR} -b ${PREFIX}/bin)
|
|
${MKDIR} ${LOCALBASE}/share/icons/hicolor/32x32/apps
|
|
${INSTALL_DATA} ${WRKSRC}/misc/icon.png \
|
|
${LOCALBASE}/share/icons/hicolor/32x32/apps/paintown.png
|
|
|
|
.include <bsd.port.mk>
|