From owner-freebsd-questions@FreeBSD.ORG Sat May 13 16:57:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E15C16A510 for ; Sat, 13 May 2006 16:57:35 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C69043D48 for ; Sat, 13 May 2006 16:57:31 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.pc (aris.bedc.ondsl.gr [62.103.39.226]) (authenticated bits=128) by igloo.linux.gr (8.13.6/8.13.6/Debian-1) with ESMTP id k4DGvEdr022611 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 13 May 2006 19:57:15 +0300 Received: from gothmog.pc (gothmog [127.0.0.1]) by gothmog.pc (8.13.6/8.13.6) with ESMTP id k4DGxOYN059189; Sat, 13 May 2006 19:59:24 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.pc (8.13.6/8.13.6/Submit) id k4DGxOsS059188; Sat, 13 May 2006 19:59:24 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 13 May 2006 19:59:24 +0300 From: Giorgos Keramidas To: Oliver Iberien Message-ID: <20060513165924.GA59148@gothmog.pc> References: <200605130942.51351.oliver-mailinglist@charter.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200605130942.51351.oliver-mailinglist@charter.net> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (score=-3.398, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.80, BAYES_00 -2.60, DNS_FROM_RFC_ABUSE 0.20) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: Given this chunk of makefile, how do I set this to build the plugin? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 May 2006 16:57:37 -0000 On 2006-05-13 09:42, Oliver Iberien wrote: > This is from the latest port of gnash. I can't coax it into building > the plugin. What is the option I pass to make to get it to build? > > +OPTIONS= PLUGIN "Enable firefox plugin" off > + > +.include > + > +.if !defined(WITH_PLUGIN) > +CONFIGURE_ARGS+= --disable-plugin > +PLIST_SUB+= PLUGIN="@comment " > +.else > +USE_GNOME+= atk pango gtk20 > +LIB_DEPENDS+= gtkglext-x11-1.0.2:${PORTSDIR}/x11-toolkits/gtkglext > +PLIST_SUB+= PLUGIN="" > +.endif The Makefile supports the 'OPTIONS' configuration stuff. So, to make sure it's reconfigured, start with: # cd /usr/ports/graphics/gnash # make rmconfig Then rebuild the port, and you should see a menu of options.