1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/games/simsu/Makefile
Alex Kozlov 9b6da4b937 - Simplify Makefile [1]
- Remove deprecated comments at the top of Makefile

PR:	ports/171358
Submitted by:	nemysis <nemysis at gmx.ch> (maintainer) [1]
2012-09-08 21:02:41 +00:00

42 lines
820 B
Makefile

# $FreeBSD$
PORTNAME= simsu
PORTVERSION= 1.2.2
PORTREVISION= 2
CATEGORIES= games
MASTER_SITES= http://gottcode.org/${PORTNAME}/
EXTRACT_SUFX= -src.tar.bz2
MAINTAINER= nemysis@gmx.ch
COMMENT= Basic Sudoku game
LICENSE= GPLv3
USE_BZIP2= yes
USE_QT4= moc_build qmake_build rcc_build uic_build iconengines imageformats
INSTALLS_ICONS= yes
MAKE_JOBS_SAFE= yes
PORTDATA= *
PORTDOCS= CREDITS ChangeLog
.include <bsd.port.options.mk>
do-configure:
@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
${QMAKE} ${QMAKEFLAGS} PREFIX=${PREFIX}
post-install:
# Pixmaps
${INSTALL_DATA} ${WRKSRC}/icons/hicolor/48x48/apps/simsu.png ${PREFIX}/share/pixmaps/
# Documentation
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
. for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
. endfor
.endif
.include <bsd.port.mk>