diff options
author | decke <decke@FreeBSD.org> | 2013-10-18 22:46:42 +0800 |
---|---|---|
committer | decke <decke@FreeBSD.org> | 2013-10-18 22:46:42 +0800 |
commit | 939915a40ce50a0697fcb1fbe1cb75e1fa712e1c (patch) | |
tree | 6725f903ebe268ab58d59a2ca5dc3850865fa2a1 /games/paintown | |
parent | ca7b9ce0e7323bfa90535cfd2fb43fb834688807 (diff) | |
download | freebsd-ports-gnome-939915a40ce50a0697fcb1fbe1cb75e1fa712e1c.tar.gz freebsd-ports-gnome-939915a40ce50a0697fcb1fbe1cb75e1fa712e1c.tar.zst freebsd-ports-gnome-939915a40ce50a0697fcb1fbe1cb75e1fa712e1c.zip |
- Support staging
- Convert LIB_DEPENDS to new shlib format
- Clanup
- Bump PORTREVISION
Diffstat (limited to 'games/paintown')
-rw-r--r-- | games/paintown/Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/games/paintown/Makefile b/games/paintown/Makefile index 547d392f6452..d5ef03022db2 100644 --- a/games/paintown/Makefile +++ b/games/paintown/Makefile @@ -3,7 +3,7 @@ PORTNAME= paintown PORTVERSION= 3.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF @@ -11,11 +11,10 @@ MAINTAINER= decke@FreeBSD.org COMMENT= Fighting game similar to Streets of Rage and TMNT LICENSE= BSD -LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS+= alleg:${PORTSDIR}/devel/allegro \ - png15:${PORTSDIR}/graphics/png \ - freetype:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= liballeg.so:${PORTSDIR}/devel/allegro \ + libpng.so:${PORTSDIR}/graphics/png \ + libfreetype.so:${PORTSDIR}/print/freetype2 USE_BZIP2= yes USE_SCONS= yes @@ -31,12 +30,11 @@ DESKTOP_ENTRIES="Paintown" "Fighting game similar to Streets of Rage and TMNT" \ "${LOCALBASE}/share/icons/hicolor/32x32/apps/paintown.png" \ "paintown" "Game;ActionGame;" false -NO_STAGE= yes do-install: - ${MKDIR} ${DATADIR} - (cd ${WRKSRC} && ./install.sh -d ${DATADIR} -b ${PREFIX}/bin) - ${MKDIR} ${LOCALBASE}/share/icons/hicolor/32x32/apps + ${MKDIR} ${STAGEDIR}${DATADIR} + (cd ${WRKSRC} && ./install.sh -d ${STAGEDIR}${DATADIR} -b ${STAGEDIR}${PREFIX}/bin) + ${MKDIR} ${STAGEDIR}${LOCALBASE}/share/icons/hicolor/32x32/apps ${INSTALL_DATA} ${WRKSRC}/misc/icon.png \ - ${LOCALBASE}/share/icons/hicolor/32x32/apps/paintown.png + ${STAGEDIR}${LOCALBASE}/share/icons/hicolor/32x32/apps/paintown.png .include <bsd.port.mk> |