From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Nov 3 15:30:27 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6121516A4CE for ; Wed, 3 Nov 2004 15:30:27 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4765643D62 for ; Wed, 3 Nov 2004 15:30:27 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) iA3FURF3012388 for ; Wed, 3 Nov 2004 15:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id iA3FURof012379; Wed, 3 Nov 2004 15:30:27 GMT (envelope-from gnats) Resent-Date: Wed, 3 Nov 2004 15:30:27 GMT Resent-Message-Id: <200411031530.iA3FURof012379@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Roman Bogorodskiy Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B138E16A4CE for ; Wed, 3 Nov 2004 15:25:30 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63EFF43D2F for ; Wed, 3 Nov 2004 15:25:30 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [217.23.66.75] (port=61136 helo=inbox.ru) by mx2.mail.ru with esmtp id 1CPN0p-000DG5-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 03 Nov 2004 18:25:28 +0300 Message-Id: Date: Wed, 03 Nov 2004 18:25:28 +0300 From: Roman Bogorodskiy To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/73457: [ maintainer ] use OPTIONS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Roman Bogorodskiy List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Nov 2004 15:30:27 -0000 >Number: 73457 >Category: ports >Synopsis: [ maintainer ] use OPTIONS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Nov 03 15:30:26 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Roman Bogorodskiy >Release: FreeBSD 5.3-BETA7 i386 >Organization: >Environment: System: FreeBSD lame.novel.ru 5.3-BETA7 FreeBSD 5.3-BETA7 #12: Sat Oct 16 20:09:15 MSD 2004 root@lame.novel.ru:/usr/obj/usr/home/novel/current/src/sys/NOVEL i386 >Description: - use OPTIONS >How-To-Repeat: >Fix: --- xplanet.orig/Makefile Wed Nov 3 15:50:00 2004 +++ xplanet/Makefile Wed Nov 3 18:16:40 2004 @@ -16,56 +16,68 @@ USE_X_PREFIX= yes GNU_CONFIGURE= yes +USE_GNOME= CONFIGURE_ARGS= --with-map-extension=jpg CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" PLIST_FILES= bin/xplanet + +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 -.if !defined(WITHOUT_FREETYPE) +.include + +.if defined(WITH_FREETYPE) CONFIGURE_ARGS+= --with-freetype LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2 .else CONFIGURE_ARGS+= --without-freetype .endif -.if !defined(WITHOUT_PANGO) +.if defined(WITH_PANGO) CONFIGURE_ARGS+= --with-pango USE_GNOME+= pango .else CONFIGURE_ARGS+= --without-pango .endif -.if !defined(WITHOUT_GIF) +.if defined(WITH_GIF) CONFIGURE_ARGS+= --with-gif LIB_DEPENDS+= ungif.5:${PORTSDIR}/graphics/libungif .else CONFIGURE_ARGS+= --without-gif .endif -.if !defined(WITHOUT_JPEG) +.if defined(WITH_JPEG) CONFIGURE_ARGS+= --with-jpeg LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg .else CONFIGURE_ARGS+= --without-jpeg .endif -.if !defined(WITHOUT_PNG) +.if defined(WITH_PNG) CONFIGURE_ARGS+= --with-png LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png .else CONFIGURE_ARGS+= --without-png .endif -.if !defined(WITHOUT_PNM) +.if defined(WITH_PNM) CONFIGURE_ARGS+= --with-pnm LIB_DEPENDS+= netpbm.1:${PORTSDIR}/graphics/netpbm .else CONFIGURE_ARGS+= --without-pnm .endif -.if !defined(WITHOUT_TIFF) +.if defined(WITH_TIFF) CONFIGURE_ARGS+= --with-tiff LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff .else @@ -82,4 +94,4 @@ @${FIND} ${DATADIR} -type d | ${SORT} -r | \ ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} -.include +.include >Release-Note: >Audit-Trail: >Unformatted: