741aa71483
Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav)
91 lines
2.3 KiB
Makefile
91 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.5
|
|
PORTREVISION= 5
|
|
CATEGORIES= games emulators
|
|
MASTER_SITES= http://www-plan.cs.colorado.edu/creichen/${PORTNAME}/ \
|
|
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
|
|
GNU_CONFIGURE= yes
|
|
WANT_SDL= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}"
|
|
|
|
MAN6= freesci-tools.6 freesci.6
|
|
|
|
OPTIONS= CONSOLE "With console support" off \
|
|
SDL "With SDL support" off \
|
|
GGI "With GGI support" off \
|
|
DIRECTFB "With DirectFB support" off \
|
|
OPTIMIZED_CFLAGS "Build with code optimizations" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_OPTIMIZED_CFLAGS)
|
|
CFLAGS+= -O3 -fexpensive-optimizations -fomit-frame-pointer -funroll-loops \
|
|
-fstrict-aliasing
|
|
.if ${ARCH} != "alpha"
|
|
CFLAGS+= -ffast-math
|
|
.endif
|
|
.endif
|
|
|
|
.if ${HAVE_SDL:Msdl}!=""
|
|
WITH_SDL= yes
|
|
.endif
|
|
.if exists(${LOCALBASE}/lib/libdirectfb-1.1.so.1)
|
|
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)
|
|
USE_SDL= yes
|
|
CONFIGURE_ARGS= --with-sdl-prefix=${LOCALBASE}
|
|
.else
|
|
CONFIGURE_ARGS+= --without-sdl
|
|
.endif
|
|
|
|
.if defined(WITH_DIRECTFB) && !defined(WITHOUT_DIRECTFB)
|
|
LIB_DEPENDS+= directfb-1.1.1:${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-configure:
|
|
@${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>
|