cc02e95a9a
- Pass maintainership to games@
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# Created by: Igor Pokrovsky <tiamat@telegraph.spb.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= exult
|
|
PORTVERSION= 1.5.0.20130315
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.math.leidenuniv.nl/~wpalenst/cvs/
|
|
DISTNAME= exult-20130315-0400
|
|
|
|
MAINTAINER= games@FreeBSD.org
|
|
COMMENT= Ultima VII engine
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= timidity:${PORTSDIR}/audio/timidity
|
|
RUN_DEPENDS= timidity:${PORTSDIR}/audio/timidity
|
|
|
|
USE_SDL= sdl mixer
|
|
USE_XORG= x11
|
|
USES= gmake libtool pkgconfig
|
|
USE_AUTOTOOLS= autoconf automake aclocal autoheader libtoolize
|
|
GNU_CONFIGURE= yes
|
|
AUTOMAKE_ARGS= --add-missing
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
WRKSRC= ${WRKDIR}/exult
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= STUDIO
|
|
OPTIONS_DEFAULT=STUDIO
|
|
OPTIONS_SUB= yes
|
|
STUDIO_DESC= Install Exult Studio
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSTUDIO}
|
|
CONFIGURE_ARGS+=--enable-exult-studio \
|
|
--enable-exult-studio-support
|
|
USE_GNOME+= libglade2
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in FAQ NEWS README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|