mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
1cd277bdce
GCC 4.6.4 to GCC 4.7.3. This entails updating the lang/gcc port as well as changing the default in Mk/bsd.default-versions.mk. Part II, Bump PORTREVISIONs. PR: 182136 Supported by: Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports) Tested by: bdrewery (two -exp runs)
42 lines
1019 B
Makefile
42 lines
1019 B
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wizznic
|
|
PORTVERSION= 0.9.9
|
|
DISTVERSIONSUFFIX=-src
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}/Source%20Releases/
|
|
|
|
MAINTAINER= nemysis@FreeBSD.org
|
|
COMMENT= Implementation of the arcade classic Puzznic
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-src
|
|
|
|
USE_BZIP2= yes
|
|
USES= gmake
|
|
USE_SDL= image mixer sdl
|
|
MAKE_ENV= DATADIR=${DATADIR}/ BINDIR=${PREFIX}/bin
|
|
ALL_TARGET= sdl
|
|
USE_GCC= yes
|
|
|
|
PORTDOCS= changelog.txt credits.txt music-score-credits.txt readme.txt
|
|
|
|
DESKTOP_ENTRIES="Wizznic!" "${COMMENT}" ${PORTNAME} \
|
|
"${PORTNAME}" "Game;LogicGame;" false
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${CHMOD} -R 755 ${STAGEDIR}${DATADIR}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${STAGEDIR}${DOCSDIR}
|
|
${LN} -sf ${DATADIR}/packs/001_wizznic/icon.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png
|
|
|
|
.include <bsd.port.mk>
|