In order to make room for the up-to-date version of the KDE Desktop and its applications move the KDE Application ports based on Qt4. PR: 225992 Exp-run by: antoine Reviewed by: rakuco, adridg Differential Revision: https://reviews.freebsd.org/D14413
28 lines
660 B
Makefile
28 lines
660 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= kdegames
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
PORTREVISION= 3
|
|
CATEGORIES= games kde
|
|
PKGNAMESUFFIX= -kde4
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Games for KDE 4 (meta port)
|
|
|
|
USES= kde:4 metaport
|
|
|
|
OPTIONS_DEFINE= ALL ${KDE4_GAMES_ALL}
|
|
OPTIONS_DEFAULT= ALL
|
|
|
|
.include <${.CURDIR}/Makefile.common>
|
|
|
|
.for game in ${KDE4_GAMES_ALL}
|
|
# _PORT, _DETECT, and _DESC are defined in Makefile.common
|
|
${game}_PORT?= games/${game}-kde4
|
|
${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>
|