2a25c28ca3
- Remove dead MASTER_SITE - Add mirror - Fix LICENSE - Add LICENSE_FILE - Move highscores to /var/games and fix highscore handling (setgid games) - Don't install useless docfiles - Install .desktop file - Fix build with clang 4.0 - Unbreak data files which were corrupted by unrestricted USES=dos2unix PR: 216642 Reported by: jbeich Approved by: maintainer timeout (aaron@baugher.biz, 1 month)
38 lines
794 B
Makefile
38 lines
794 B
Makefile
# Created by: Aaron Baugher
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xlogical
|
|
DISTVERSION= 1.0-8
|
|
CATEGORIES= games
|
|
MASTER_SITES= https://changeling.ixionstudios.com/xlogical/downloads/ \
|
|
http://mirror.amdmi3.ru/distfiles/
|
|
|
|
MAINTAINER= aaron@baugher.biz
|
|
COMMENT= Remake of the classic puzzle game Logical
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --localstatedir="/var/games"
|
|
USES= autoreconf dos2unix gmake tar:bzip2
|
|
DOS2UNIX_FILES= *.h *.cpp
|
|
USE_SDL= sdl image mixer
|
|
|
|
DESKTOP_ENTRIES="XLogical" \
|
|
"" \
|
|
"" \
|
|
"${PORTNAME}" \
|
|
"Game;LogicGame;" \
|
|
""
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in AUTHORS ChangeLog NEWS README TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|