[1] https://www.kde.org/announcements/announce-applications-18.12.2.php [2] https://www.kde.org/announcements/fulllog_applications-aether.php?version=18.12.2
26 lines
626 B
Makefile
26 lines
626 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= kdegames
|
|
DISTVERSION= ${KDE_APPLICATIONS_VERSION}
|
|
CATEGORIES= games kde
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Games for KDE (meta port)
|
|
|
|
USES= kde:5 metaport
|
|
|
|
OPTIONS_DEFINE= ALL ${KDE_GAMES_ALL}
|
|
OPTIONS_DEFAULT= ALL
|
|
|
|
.include <${.CURDIR}/Makefile.common>
|
|
|
|
.for game in ${KDE_GAMES_ALL}
|
|
# _PORT, _DETECT, and _DESC are defined in Makefile.common
|
|
${game}_PORT?= games/${game}
|
|
${game}_DETECT?= ${KDE_PREFIX}/bin/${game}
|
|
${game}_DESC?= Please fix a typo in option name/desc!
|
|
${game}_RUN_DEPENDS= ${${game}_DETECT}:${${game}_PORT}
|
|
ALL_RUN_DEPENDS+= ${${game}_RUN_DEPENDS}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|