freebsd-ports/games/freesci/Makefile
Kirill Ponomarev 1e192db83b - Fix and sort plist and bump PORTREVISION
Noticed by:	bento via kris
2004-01-30 23:55:43 +00:00

93 lines
2.3 KiB
Makefile

# New ports collection makefile for: freesci
# Date created: 17 December 2000
# Whom: George Reid <greid@ukug.uk.freebsd.org>
#
# $FreeBSD$
#
PORTNAME= freesci
PORTVERSION= 0.3.4a
PORTREVISION= 1
CATEGORIES= emulators games
MASTER_SITES= ${MASTER_SITE_SAVANNAH} \
http://teksolv.de/~jameson/
MASTER_SITE_SUBDIR=${PORTNAME}/stable.pkg/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A portable interpreter for SCI games, such as the Space Quest series
USE_BZIP2= yes
USE_REINPLACE= yes
USE_XLIB= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET=
CONFIGURE_ENV= CFLAGS=${PTHREAD_CFLAGS}
MAN6= freesci-tools.6 freesci.6
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/lib/libSDL-1.1.so.5)
WITH_SDL= yes
.endif
.if exists(${LOCALBASE}/lib/libdirectfb-0.9.so.16)
WITH_DIRECTFB= yes
.endif
.if exists(${LOCALBASE}/lib/libggi.so.2)
WITH_GGI= yes
.endif
.if defined(WITH_CONSOLE)
CONFIGURE_ARGS+= --with-console
.endif
.if defined(WITH_SDL) && !defined(WITHOUT_SDL)
LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12
CONFIGURE_ARGS= --with-sdl-prefix=${LOCALBASE}
.else
CONFIGURE_ARGS+= --without-sdl
.endif
.if defined(WITH_DIRECTFB) && !defined(WITHOUT_DIRECTFB)
LIB_DEPENDS+= directfb-0.9.16:${PORTSDIR}/devel/directfb
CONFIGURE_ARGS+= --with-directfb-include=${LOCALBASE}/include/directfb \
--with-directfb-libraries=${LOCALBASE}/lib
.else
CONFIGURE_ARGS+= --without-directfb
.endif
.if defined(WITH_GGI) && !defined(WITHOUT_GGI)
LIB_DEPENDS+= ggi.2:${PORTSDIR}/graphics/libggi
CONFIGURE_ARGS+= --with-ggi-dir=${LOCALBASE}
.else
CONFIGURE_ARGS+= --without-ggi
.endif
pre-everything::
.if !defined(WITH_CONSOLE)
@${ECHO_MSG} "Define WITH_CONSOLE to build console support"
.endif
.if !defined(WITH_SDL)
@${ECHO_MSG} "Define WITH_SDL to build with SDL support"
.endif
.if !defined(WITH_GGI)
@${ECHO_MSG} "Define WITH_GGI to build with GGI support"
.endif
.if !defined(WITH_DIRECTFB)
@${ECHO_MSG} "Define WITH_DIRECTFB to build with DirectFB support"
.endif
post-patch:
@${REINPLACE_CMD} -e 's/-lpthread/${PTHREAD_LIBS}/g' ${WRKSRC}/configure
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/games/freesci
@${INSTALL_DATA} ${WRKSRC}/doc/sci.sgml ${WRKSRC}/doc/freesci.sgml \
${WRKSRC}/doc/game-list.sgml ${WRKSRC}/doc/sci-kernel.sgml \
${PREFIX}/share/games/freesci
.endif
.include <bsd.port.post.mk>