44 lines
911 B
Makefile
44 lines
911 B
Makefile
# Created by: Stefan Jahn <stefan.jahn@nemesis-sektor.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= knights
|
|
PORTVERSION= 2.5.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= games kde
|
|
MASTER_SITES= http://dl.dropbox.com/u/2888238/Knights/
|
|
|
|
MAINTAINER= syncer@gmail.com
|
|
COMMENT= KDE4 chess interface
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/gnuchess:${PORTSDIR}/games/gnuchess
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_BZIP2= yes
|
|
USES= cmake:outsource
|
|
USE_KDE4= kdelibs kdehier kdeprefix automoc4 workspace libkdegames
|
|
USE_QT4= qmake_build moc_build rcc_build uic_build
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ! ${PORT_OPTIONS:MDOCS}
|
|
CMAKE_ARGS+= -DBUILD_doc=FALSE
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
PLIST_SUB+= NLS="@comment "
|
|
CMAKE_ARGS+= -DBUILD_po=FALSE
|
|
.endif
|
|
|
|
post-patch:
|
|
.if empty(PORT_OPTIONS:MDOCS)
|
|
${REINPLACE_CMD} "s/^add_subdirectory( doc )//g" \
|
|
${WRKSRC}/CMakeLists.txt
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|