# New ports collection makefile for: xplanet # Date created: 22 Feb 2000 # Whom: darius@dons.net.au # # $FreeBSD$ # PORTNAME= xplanet PORTVERSION= 1.2.0 PORTREVISION= 3 CATEGORIES= astro geography MASTER_SITES= SF MAINTAINER= novel@FreeBSD.org COMMENT= Draw pictures of the earth textured by an image GNU_CONFIGURE= yes USE_XORG= xt xscrnsaver USE_GNOME= # CONFIGURE_ARGS= --with-map-extension=jpg CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib -lm" OPTIONS= FREETYPE "Enable Freetype support" on \ PANGO "Enable PANGO support" on \ GIF "Enable GIF support" on \ JPEG "Enable JPEG support" on \ PNG "Enable PNG support" on \ PNM "Enable PNM support" on \ TIFF "Enable TIFF support" on MAN1= xplanet.1 .include .if !defined(WITHOUT_FREETYPE) CONFIGURE_ARGS+= --with-freetype LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 .else CONFIGURE_ARGS+= --without-freetype .endif .if !defined(WITHOUT_PANGO) CONFIGURE_ARGS+= --with-pango USE_GNOME+= pango .else CONFIGURE_ARGS+= --without-pango .endif .if !defined(WITHOUT_GIF) CONFIGURE_ARGS+= --with-gif LIB_DEPENDS+= ungif.5:${PORTSDIR}/graphics/libungif .else CONFIGURE_ARGS+= --without-gif .endif .if !defined(WITHOUT_JPEG) CONFIGURE_ARGS+= --with-jpeg LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg .else CONFIGURE_ARGS+= --without-jpeg .endif .if !defined(WITHOUT_PNG) CONFIGURE_ARGS+= --with-png LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png .else CONFIGURE_ARGS+= --without-png .endif .if !defined(WITHOUT_PNM) CONFIGURE_ARGS+= --with-pnm LIB_DEPENDS+= netpbm.1:${PORTSDIR}/graphics/netpbm .else CONFIGURE_ARGS+= --without-pnm .endif .if !defined(WITHOUT_TIFF) CONFIGURE_ARGS+= --with-tiff LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff .else CONFIGURE_ARGS+= --without-tiff .endif post-extract: @${REINPLACE_CMD} -e "s/default/default.sample/g" ${WRKSRC}/Makefile.in @${MV} ${WRKSRC}/xplanet/config/default ${WRKSRC}/xplanet/config/default.sample post-install: .for file in freebsd.committers.markers freebsd.ftp.markers @${INSTALL_DATA} ${PORTSDIR}/astro/xearth/files/${file} \ ${DATADIR}/markers .endfor @${FIND} ${DATADIR} -type f | \ ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} @${FIND} ${DATADIR} -type d | ${SORT} -r | \ ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} @if test ! -f ${DATADIR}/config/default; then \ ${CP} ${DATADIR}/config/default.sample ${DATADIR}/config/default; \ fi .include