Convert USE_BISON to USES= bison

It brings bison as a build dependency in case it is set the following way:
USES= bison or USES= bison:build

it brings bison as a run dependency in case it is set the following way:
USES= bison:run

it brings bison both as a run and build dependency in case it the set the following way:
USES= bison:both

While here trim some headers
Convert some USE_GNOME= gnomehack to USES= pathfix
This commit is contained in:
Baptiste Daroussin 2013-03-08 11:32:11 +00:00
parent 09fa4f3713
commit 9250d94365
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=313635
209 changed files with 412 additions and 879 deletions

27
Mk/Uses/bison.mk Normal file
View file

@ -0,0 +1,27 @@
# $FreeBSD$
#
# handle dependency on the bison port
#
# MAINTAINER: portmgr@FreeBSD.org
#
.if !defined(_INCLUDE_BISON_MK)
_INCLUDE_BISON_MK= yes
_BISON_DEPENDS= bison:${PORTSDIR}/devel/bison
.if !defined(bison_ARGS)
BUILD_DEPENDS+= ${_BISON_DEPENDS}
.else
.if ${bison_ARGS} == "build"
BUILD_DEPENDS+= ${_BUILD_DEPENDS}
.elif ${bison_ARGS} == "run"
RUN_DEPENDS+= ${_BUILD_DEPENDS}
.elif ${bison_ARGS} == "both"
BUILD_DEPENDS+= ${_BISON_DEPENDS}
RUN_DEPENDS+= ${_BUILD_DEPENDS}
.else
IGNORE= Bad usage of USES= bison
.endif
.endif
.endif

View file

@ -36,7 +36,7 @@ FLTK_DESC= Build FLTK plugin and GUI
CONFLICTS_INSTALL= outguess-* CONFLICTS_INSTALL= outguess-*
USE_PYTHON= 2.6+ USE_PYTHON= 2.6+
USE_BISON= build USES= bison
USE_GETTEXT= yes USE_GETTEXT= yes
USE_SCONS= yes USE_SCONS= yes
SCONS_BUILDENV= PATH=${LOCALBASE}/bin:$$PATH SCONS_BUILDENV= PATH=${LOCALBASE}/bin:$$PATH

View file

@ -26,7 +26,7 @@ OPTIONS_DEFINE= LILYPOND DOCS EXAMPLES
LILYPOND_DESC= Install LilyPond (Printing) LILYPOND_DESC= Install LilyPond (Printing)
USE_GNOME= gtk20 gtksourceview2 librsvg2 libxml2 USE_GNOME= gtk20 gtksourceview2 librsvg2 libxml2
USE_BISON= build USES= bison
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-jack \ CONFIGURE_ARGS= --enable-jack \
--disable-portmidi \ --disable-portmidi \

View file

@ -14,7 +14,7 @@ LICENSE= GPLv2
LIB_DEPENDS= FOX-1.4:${PORTSDIR}/x11-toolkits/fox14 LIB_DEPENDS= FOX-1.4:${PORTSDIR}/x11-toolkits/fox14
USE_BISON= build USES= bison
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib LDFLAGS+= -L${LOCALBASE}/lib

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: sfront # Created by: ijliao
# Date created: Nov 4, 2001
# Whom: ijliao
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= sfront PORTNAME= sfront
PORTVERSION= 0.99 PORTVERSION= 0.99
@ -15,7 +11,7 @@ COMMENT= A translator that converts MP4-SA files into efficient C programs
LICENSE= BSD LICENSE= BSD
USE_BISON= build USES= bison
MAKE_JOBS_SAFE= yes MAKE_JOBS_SAFE= yes
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: Chemeq # Created by: Ryo MIYAMOTO <rmiya@cc.hirosaki-u.ac.jp>
# Date created: 31 May 2000
# Whom: Ryo MIYAMOTO <rmiya@cc.hirosaki-u.ac.jp>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= chemeq PORTNAME= chemeq
PORTVERSION= 1.50 PORTVERSION= 1.50
@ -19,7 +15,7 @@ COMMENT= Outputs LaTeX code for chemical reaction
MAKE_ARGS= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" MAKE_ARGS= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"
WRKSRC= ${WRKDIR}/${PORTNAME}-1.5 WRKSRC= ${WRKDIR}/${PORTNAME}-1.5
USE_BISON= build USES= bison
MAN1= chemeq.1 MAN1= chemeq.1

View file

@ -1,7 +1,4 @@
# New ports collection makefile for: alliance # Created by: hrs
# Date created: 6 May 2004
# Whom: hrs
#
# $FreeBSD$ # $FreeBSD$
PORTNAME= alliance PORTNAME= alliance
@ -23,7 +20,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-5.0
SUB_FILES= pkg-message SUB_FILES= pkg-message
PKGMESSAGE= ${WRKDIR}/pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
USE_MOTIF= yes USE_MOTIF= yes

View file

@ -26,7 +26,7 @@ USE_GL= gl glu
USE_XORG= ice inputproto sm x11 xau xdamage xdmcp xext xfixes xft xi \ USE_XORG= ice inputproto sm x11 xau xdamage xdmcp xext xfixes xft xi \
xproto xrender xscrnsaver xt xxf86vm xproto xrender xscrnsaver xt xxf86vm
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison
USE_TCL= 85 USE_TCL= 85
USE_TK= 85 USE_TK= 85
USE_LDCONFIG= yes USE_LDCONFIG= yes

View file

@ -1,10 +1,5 @@
# ex:ts=8 # Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
# New ports collection makefile for: iverilog
# Date created: Feb 13, 2001
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= iverilog PORTNAME= iverilog
PORTVERSION= 0.9.6 PORTVERSION= 0.9.6
@ -19,7 +14,7 @@ COMMENT= A Verilog simulation and synthesis tool
LICENSE= GPLv2 LICENSE= GPLv2
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
CONFIGURE_ARGS= --disable-suffix CONFIGURE_ARGS= --disable-suffix

View file

@ -22,7 +22,7 @@ LIB_DEPENDS= itcl.${ITCL_VER}:${PORTSDIR}/lang/itcl \
dps.0:${PORTSDIR}/x11/dgs dps.0:${PORTSDIR}/x11/dgs
USE_BZIP2= yes USE_BZIP2= yes
USE_BISON= build USES= bison
USE_TK= 84+ USE_TK= 84+
USE_TCL_BUILD= 84+ USE_TCL_BUILD= 84+
USE_TCL_RUN= 84+ USE_TCL_RUN= 84+

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: Verilog-Perl # Created by: Otacilio de Araujo Ramos Neto <otacilio.neto@ee.ufcg.edu.br>
# Date created: 11 Apr 2009
# Whom: Otacilio de Araujo Ramos Neto <otacilio.neto@ee.ufcg.edu.br>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= Verilog-Perl PORTNAME= Verilog-Perl
PORTVERSION= 3.316 PORTVERSION= 3.316
@ -18,7 +14,7 @@ BUILD_DEPENDS= flex>=2.5.35:${PORTSDIR}/textproc/flex
USE_GMAKE= yes USE_GMAKE= yes
USE_PERL5= yes USE_PERL5= yes
USE_BISON= build USES= bison
PERL_CONFIGURE= yes PERL_CONFIGURE= yes

View file

@ -23,9 +23,9 @@ LIB_DEPENDS= soup-2.4:${PORTSDIR}/devel/libsoup \
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison pathfix
USE_GETTEXT= yes USE_GETTEXT= yes
USE_GNOME= gnomeprefix gnomehack intlhack ltverhack ltasneededhack gconf2 \ USE_GNOME= gnomeprefix intlhack ltverhack ltasneededhack gconf2 \
libxml2 libxml2
USE_OPENLDAP= yes USE_OPENLDAP= yes
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool

View file

@ -17,7 +17,7 @@ LIB_DEPENDS= icuuc:${PORTSDIR}/devel/icu
LATEST_LINK= ${PORTNAME}20${PKGNAMESUFFIX} LATEST_LINK= ${PORTNAME}20${PKGNAMESUFFIX}
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GCC= any USE_GCC= any
USE_GMAKE= yes USE_GMAKE= yes

View file

@ -17,7 +17,7 @@ LIB_DEPENDS= icuuc:${PORTSDIR}/devel/icu
LATEST_LINK= ${PORTNAME}21${PKGNAMESUFFIX} LATEST_LINK= ${PORTNAME}21${PKGNAMESUFFIX}
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GCC= any USE_GCC= any
USE_GMAKE= yes USE_GMAKE= yes

View file

@ -17,7 +17,7 @@ LIB_DEPENDS= icuuc:${PORTSDIR}/devel/icu
LATEST_LINK= ${PORTNAME}25${PKGNAMESUFFIX} LATEST_LINK= ${PORTNAME}25${PKGNAMESUFFIX}
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: mdbtools # Created by: Anders Nordby <anders@fix.no>
# Date created: 25 April 2001
# Whom: Anders Nordby <anders@fix.no>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= mdbtools PORTNAME= mdbtools
PORTVERSION= 0.5 PORTVERSION= 0.5
@ -32,7 +28,8 @@ MAN1= mdb-ver.1 mdb-tables.1 mdb-schema.1 mdb-sql.1 mdb-export.1
.if ${HAVE_GNOME:Mlibgnomeui}!="" .if ${HAVE_GNOME:Mlibgnomeui}!=""
USE_XORG= x11 USE_XORG= x11
USE_GNOME+= gnomeprefix gnomehack libgnomeui USES+= pathfix
USE_GNOME+= gnomeprefix libgnomeui
PKGNAMESUFFIX= -gnome PKGNAMESUFFIX= -gnome
.endif .endif

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: MySQL-server # Created by: Alex Dupre <sysadmin@alexdupre.com>
# Date created: Fri Apr 11 10:06:26 CET 2003
# Whom: Alex Dupre <sysadmin@alexdupre.com>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME?= mysql PORTNAME?= mysql
PORTVERSION= 4.1.25 PORTVERSION= 4.1.25
@ -105,7 +101,7 @@ USE_RC_SUBR= mysql-server
USERS= mysql USERS= mysql
GROUPS= mysql GROUPS= mysql
USE_BISON= build USES+= bison
.if defined(WITH_NDB) .if defined(WITH_NDB)
PLIST_SUB+= NDB="" PLIST_SUB+= NDB=""

View file

@ -14,7 +14,7 @@ COMMENT?= Multithreaded SQL database (server)
SLAVEDIRS= databases/percona55-client SLAVEDIRS= databases/percona55-client
USE_CMAKE= yes USE_CMAKE= yes
USE_BISON= build USES= bison
MAKE_JOBS_SAFE= yes MAKE_JOBS_SAFE= yes
OPTIONS_DEFINE= OPENSSL FASTMTX OPTIONS_DEFINE= OPENSSL FASTMTX

View file

@ -17,7 +17,7 @@ RUN_DEPENDS= postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
CONFLICTS= postgis-2.* CONFLICTS= postgis-2.*
USE_BISON= build USES= bison
USE_GNOME= libxml2 USE_GNOME= libxml2
USE_PGSQL= yes USE_PGSQL= yes
USE_GMAKE= yes USE_GMAKE= yes

View file

@ -1,9 +1,5 @@
# Ports collection makefile for: postgresql-plproxy # Created by: Sergey Skvortsov <skv@protey.ru>
# Date created: 27 July 2007
# Whom: Sergey Skvortsov <skv@protey.ru>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= plproxy PORTNAME= plproxy
PORTVERSION= 2.4 PORTVERSION= 2.4
@ -16,7 +12,7 @@ COMMENT= PL/Proxy is database partitioning system
USE_PGSQL= yes USE_PGSQL= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison
PORTSCOUT= site:http://pgfoundry.org/frs/?group_id=1000207 PORTSCOUT= site:http://pgfoundry.org/frs/?group_id=1000207

View file

@ -1,7 +1,5 @@
# Created by: Palle Girgensohn <girgen@pingpong.net> # Created by: Palle Girgensohn <girgen@pingpong.net>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= postgresql PORTNAME= postgresql
PKGNAMESUFFIX= -contrib PKGNAMESUFFIX= -contrib
@ -14,7 +12,7 @@ USE_PGSQL= yes
DEFAULT_PGSQL_VER=83 DEFAULT_PGSQL_VER=83
MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server
USE_BISON= build USES= bison
BUILD_DIRS= src/port contrib BUILD_DIRS= src/port contrib
INSTALL_DIRS= contrib INSTALL_DIRS= contrib

View file

@ -1,7 +1,5 @@
# Created by: Palle Girgensohn <girgen@pingpong.net> # Created by: Palle Girgensohn <girgen@pingpong.net>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= postgresql PORTNAME= postgresql
PKGNAMESUFFIX= -contrib PKGNAMESUFFIX= -contrib
@ -14,7 +12,7 @@ USE_PGSQL= yes
DEFAULT_PGSQL_VER=84 DEFAULT_PGSQL_VER=84
MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server
USE_BISON= build USES= bison
BUILD_DIRS= src/port contrib BUILD_DIRS= src/port contrib
INSTALL_DIRS= contrib INSTALL_DIRS= contrib

View file

@ -1,7 +1,5 @@
# Created by: Palle Girgensohn <girgen@pingpong.net> # Created by: Palle Girgensohn <girgen@pingpong.net>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= postgresql PORTNAME= postgresql
PORTREVISION= 0 PORTREVISION= 0
@ -18,7 +16,7 @@ USE_PGSQL= yes
DEFAULT_PGSQL_VER=90 DEFAULT_PGSQL_VER=90
MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server
USE_BISON= build USES= bison
BUILD_DIRS= src/port contrib BUILD_DIRS= src/port contrib
INSTALL_DIRS= contrib INSTALL_DIRS= contrib

View file

@ -1,5 +1,4 @@
# Created by: Palle Girgensohn <girgen@pingpong.net> # Created by: Palle Girgensohn <girgen@pingpong.net>
#
# $FreeBSD$ # $FreeBSD$
PORTNAME= postgresql PORTNAME= postgresql
@ -16,7 +15,7 @@ USE_PGSQL= yes
DEFAULT_PGSQL_VER=91 DEFAULT_PGSQL_VER=91
MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server
USE_BISON= build USES= bison
BUILD_DIRS= src/port contrib BUILD_DIRS= src/port contrib
INSTALL_DIRS= contrib INSTALL_DIRS= contrib

View file

@ -1,5 +1,4 @@
# Created by: Palle Girgensohn <girgen@pingpong.net> # Created by: Palle Girgensohn <girgen@pingpong.net>
#
# $FreeBSD$ # $FreeBSD$
PORTNAME= postgresql PORTNAME= postgresql
@ -16,7 +15,7 @@ USE_PGSQL= yes
DEFAULT_PGSQL_VER=92 DEFAULT_PGSQL_VER=92
MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server
USE_BISON= build USES= bison
BUILD_DIRS= src/port contrib BUILD_DIRS= src/port contrib
INSTALL_DIRS= contrib INSTALL_DIRS= contrib

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: slony1 # Created by: Radim Kolar
# Date created: 20 Jun 2004
# Whom: Radim Kolar
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= slony1 PORTNAME= slony1
PORTVERSION= 1.2.23 PORTVERSION= 1.2.23
@ -18,7 +14,7 @@ COMMENT= PostgreSQL master to multiple replicas replication system
BUILD_DEPENDS= ${LOCALBASE}/bin/postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server BUILD_DEPENDS= ${LOCALBASE}/bin/postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_BISON= build USES= bison
USE_PGSQL= yes USE_PGSQL= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BZIP2= yes USE_BZIP2= yes

View file

@ -16,7 +16,7 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \
${LOCALBASE}/bin/postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server ${LOCALBASE}/bin/postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_BISON= build USES= bison
USE_PGSQL= yes USE_PGSQL= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BZIP2= yes USE_BZIP2= yes

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: KDE PIM # Created by: Dmitry Sivachenko <demon@FreeBSD.org>
# Date created: 2 March 2001
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= kdepim PORTNAME= kdepim
PORTVERSION= ${KDE_VERSION} PORTVERSION= ${KDE_VERSION}
@ -30,7 +26,7 @@ PREFIX= ${KDE_PREFIX}
_NO_KDE_FINAL= yes _NO_KDE_FINAL= yes
USE_BZIP2= yes USE_BZIP2= yes
USE_BISON= build USES= bison
USE_OPENSSL= yes USE_OPENSSL= yes
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool
USE_GMAKE= yes USE_GMAKE= yes

View file

@ -1,7 +1,4 @@
# New ports collection makefile for: tpb # Created by: Markus Brueffer <markus@FreeBSD.org>
# Date created: Fri Jun 10 00:38:03 CEST 2005
# Whom: Markus Brueffer <markus@FreeBSD.org>
#
# $FreeBSD$ # $FreeBSD$
PORTNAME= tpb PORTNAME= tpb
@ -21,7 +18,7 @@ ONLY_FOR_ARCHS= i386 amd64
USE_GMAKE= yes USE_GMAKE= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_ICONV= yes USE_ICONV= yes
USE_BISON= build USES= bison
CONFIGURE_ARGS= --with-libiconv-prefix=${LOCALBASE} CONFIGURE_ARGS= --with-libiconv-prefix=${LOCALBASE}

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: as31 # Created by: Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
# Date created: Nov 21, 2003
# Whom: Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= as31 PORTNAME= as31
PORTVERSION= 2.0.b3 PORTVERSION= 2.0.b3
@ -22,7 +18,7 @@ PLIST_SUB+= X11=""
ALL_TARGET= as31 ALL_TARGET= as31
PLIST_SUB+= X11="@comment " PLIST_SUB+= X11="@comment "
.endif .endif
USE_BISON= build USES= bison
WRKSRC= ${WRKDIR}/${PORTNAME} WRKSRC= ${WRKDIR}/${PORTNAME}
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: avr-gcc # Created by: Joerg Wunsch <joerg@freebsd.org>
# Date created: 29 Nov 2000
# Whom: Joerg Wunsch <joerg@freebsd.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= gcc-3 PORTNAME= gcc-3
PORTVERSION= 3.4.6 PORTVERSION= 3.4.6
@ -33,7 +29,7 @@ USE_AUTOTOOLS= autoheader213
USE_PERL5_BUILD= yes USE_PERL5_BUILD= yes
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFLICTS= avr-gcc-4* CONFLICTS= avr-gcc-4*

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: avr-gcc-devel # Created by: Joerg Wunsch <joerg@freebsd.org>
# Date created: 22 Mar 2006
# Whom: Joerg Wunsch <joerg@freebsd.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= gcc PORTNAME= gcc
PORTVERSION= 4.5.1 PORTVERSION= 4.5.1
@ -39,7 +35,7 @@ CONFIGURE_SCRIPT= ../gcc-${PORTVERSION}/configure
USE_PERL5_BUILD= yes USE_PERL5_BUILD= yes
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison
USE_GETTEXT= yes USE_GETTEXT= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View file

@ -23,7 +23,7 @@ OPTIONS_DEFINE= NLS
LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING3 LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING3
LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING3.LIB LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING3.LIB
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View file

@ -37,7 +37,7 @@ RUN_DEPENDS= ${OURTARGET}-as:${PORTSDIR}/devel/cross-binutils
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison
STRIP= #empty STRIP= #empty
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
ALL_TARGET= all info ALL_TARGET= all info

View file

@ -1,10 +1,5 @@
# ex:ts=8 # Created by: ijliao
# Ports collection makefile for: datadraw
# Date created: Aug 31, 2007
# Whom: ijliao
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= datadraw PORTNAME= datadraw
PORTVERSION= 3.1.1 PORTVERSION= 3.1.1
@ -15,7 +10,7 @@ DISTNAME= ${PORTNAME}${PORTVERSION}
MAINTAINER= ports@FreeBSD.org MAINTAINER= ports@FreeBSD.org
COMMENT= A feature rich persistent database generator COMMENT= A feature rich persistent database generator
USE_BISON= build USES= bison
HAS_CONFIGURE= yes HAS_CONFIGURE= yes
USE_GMAKE= yes USE_GMAKE= yes
ALL_TARGET= # empty ALL_TARGET= # empty

View file

@ -18,7 +18,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= tmake:${PORTSDIR}/devel/tmake BUILD_DEPENDS= tmake:${PORTSDIR}/devel/tmake
LIB_DEPENDS= png15:${PORTSDIR}/graphics/png LIB_DEPENDS= png15:${PORTSDIR}/graphics/png
USE_BISON= build USES= bison
USE_ICONV= yes USE_ICONV= yes
ALL_TARGET= all ALL_TARGET= all
USE_PERL5= yes USE_PERL5= yes

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: gecode # Created by: roam@FreeBSD.org
# Date created: 24 January 2011
# Whom: roam@FreeBSD.org
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= gecode PORTNAME= gecode
PORTVERSION= 3.7.3 PORTVERSION= 3.7.3
@ -19,7 +15,7 @@ OPTIONS_DEFINE= GIST
GIST_DESC= Interactive Search Tool (requires Qt) GIST_DESC= Interactive Search Tool (requires Qt)
USE_PERL5_BUILD=yes USE_PERL5_BUILD=yes
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-static \ CONFIGURE_ARGS= --disable-static \

View file

@ -15,13 +15,13 @@ COMMENT= Generate interface introspection data for GObject libraries
BUILD_DEPENDS= cairo-trace:${PORTSDIR}/graphics/cairo BUILD_DEPENDS= cairo-trace:${PORTSDIR}/graphics/cairo
LIB_DEPENDS= ffi:${PORTSDIR}/devel/libffi LIB_DEPENDS= ffi:${PORTSDIR}/devel/libffi
USES= bison pathfix
USE_XZ= yes USE_XZ= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_GNOME= gnomehier gnomehack glib20 ltverhack USE_GNOME= gnomehier glib20 ltverhack
USE_PKGCONFIG= build USE_PKGCONFIG= build
USE_PYTHON= -2.7 USE_PYTHON= -2.7
USE_BISON= build
USE_GETTEXT= yes USE_GETTEXT= yes
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes USE_LDCONFIG= yes

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: hp48cc # Created by: Patrick Li <pat@databits.net>
# Date created: Sun Aug 12 04:33:37 EDT 2001
# Whom: Patrick Li <pat@databits.net>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= hp48cc PORTNAME= hp48cc
PORTVERSION= 1.3 PORTVERSION= 1.3
@ -17,7 +13,7 @@ COMMENT= C-like compiler that translates input code to the HP48 RPL language
LICENSE= GPLv2 LICENSE= GPLv2
USE_BISON= build USES= bison
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"

View file

@ -18,7 +18,7 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex
USE_GCC= 4.6+ USE_GCC= 4.6+
USE_BZIP2= yes USE_BZIP2= yes
USE_BISON= build USES= bison
USE_KDE4= automoc4 kdehier kdelibs kdeprefix USE_KDE4= automoc4 kdehier kdelibs kdeprefix
KDE4_BUILDENV= yes KDE4_BUILDENV= yes
USE_QT4= qmake_build moc_build uic_build rcc_build USE_QT4= qmake_build moc_build uic_build rcc_build

View file

@ -20,7 +20,7 @@ EXPIRATION_DATE= 2013-07-01
DOCSDIR= ${PREFIX}/share/doc/HTML/en/${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/HTML/en/${PORTNAME}
USE_BISON= build USES= bison
USE_KDEBASE_VER=3 USE_KDEBASE_VER=3
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool
USE_GMAKE= yes USE_GMAKE= yes

View file

@ -12,11 +12,11 @@ DIST_SUBDIR= gnome2
MAINTAINER= gnome@FreeBSD.org MAINTAINER= gnome@FreeBSD.org
COMMENT= A library for creating trees of CORBA IDL files COMMENT= A library for creating trees of CORBA IDL files
USES= bison pathfix
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_GETTEXT= yes USE_GETTEXT= yes
USE_BISON= build USE_GNOME= glib20
USE_GNOME= gnomehack glib20
USE_PKGCONFIG= build USE_PKGCONFIG= build
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View file

@ -18,13 +18,13 @@ USE_BZIP2= yes
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
USES= bison pathfix
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build
USE_GETTEXT= yes USE_GETTEXT= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_PERL5= yes USE_PERL5= yes
USE_GNOME= gnomehack intlhack libxml2 orbit2 referencehack USE_GNOME= intlhack libxml2 orbit2 referencehack
USE_PKGCONFIG= build USE_PKGCONFIG= build
CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \ CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \
--disable-gtk-doc --disable-gtk-doc

View file

@ -18,7 +18,7 @@ BUILD_DEPENDS= pdfopt:${PORTSDIR}/print/ghostscript9 \
gsed:${PORTSDIR}/textproc/gsed gsed:${PORTSDIR}/textproc/gsed
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool
USE_BISON= build USES= bison
USE_GETTEXT= yes USE_GETTEXT= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes

View file

@ -1,7 +1,4 @@
# New ports collection makefile for: libmimedir # Created by: Sam Lawrance <boris@brooknet.com.au>
# Date created: March 2004
# Whom: Sam Lawrance <boris@brooknet.com.au>
#
# $FreeBSD$ # $FreeBSD$
PORTNAME= libmimedir PORTNAME= libmimedir
@ -12,7 +9,7 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org MAINTAINER= ports@FreeBSD.org
COMMENT= Library for parsing RFC2425 MIME Directory Profile information COMMENT= Library for parsing RFC2425 MIME Directory Profile information
USE_BISON= build USES= bison
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes USE_LDCONFIG= yes

View file

@ -12,7 +12,7 @@ COMMENT= vCard library
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool
USE_BZIP2= yes USE_BZIP2= yes
USE_BISON= build USES= bison
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes

View file

@ -22,7 +22,7 @@ GCCVERSION= 4.7.2
ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 sparc64 ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 sparc64
USE_LDCONFIG= yes USE_LDCONFIG= yes
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_ICONV= yes USE_ICONV= yes

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: msp430-gcc # Created by: Lev Serebryakov <lev@serebryakov.spb.ru>
# Date created: 15 October 2002
# Whom: Lev Serebryakov <lev@serebryakov.spb.ru>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= gcc PORTNAME= gcc
PORTVERSION= ${GCCVERSION}.${LTSVERSION} PORTVERSION= ${GCCVERSION}.${LTSVERSION}
@ -51,7 +47,7 @@ PATCH_WRKSRC= ${SRCDIR}
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison
USE_ICONV= yes USE_ICONV= yes
USE_PERL5_BUILD=yes USE_PERL5_BUILD=yes
MAKE_JOBS_SAFE= yes MAKE_JOBS_SAFE= yes

View file

@ -16,7 +16,7 @@ LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
CONFLICTS= pwlib-1.* ptlib-2.6.* CONFLICTS= pwlib-1.* ptlib-2.6.*
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_GNOME= pkgconfig USE_GNOME= pkgconfig

View file

@ -18,7 +18,7 @@ LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
CONFLICTS= pwlib-1.* ptlib-2.4.* ptlib-2.8.* CONFLICTS= pwlib-1.* ptlib-2.4.* ptlib-2.8.*
USE_BZIP2= yes USE_BZIP2= yes
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
WANT_GNOME= yes WANT_GNOME= yes

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: pwlib # Created by: Roger Hardiman <roger@freebsd.org>
# Date created: Fri Aug 22 07:11:44 GMT 2003
# Whom: Roger Hardiman <roger@freebsd.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= pwlib PORTNAME= pwlib
PORTVERSION= 1.12.0 PORTVERSION= 1.12.0
@ -23,7 +19,7 @@ CONFLICTS= ptlib-2.*
WRKSRC= ${WRKDIR}/ptlib_v${PORTVERSION:S/./_/g} WRKSRC= ${WRKDIR}/ptlib_v${PORTVERSION:S/./_/g}
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
USE_AUTOTOOLS= autoconf USE_AUTOTOOLS= autoconf
WANT_GNOME= yes WANT_GNOME= yes

View file

@ -1,10 +1,5 @@
# ex:ts=8 # Created by: ijliao
# Ports collection makefile for: py-bison
# Date created: Aug 23, 2004
# Whom: ijliao
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= bison PORTNAME= bison
PORTVERSION= 0.1.8 PORTVERSION= 0.1.8
@ -23,7 +18,7 @@ BUILD_DEPENDS= pyrex>=0.9.6.2:${PORTSDIR}/devel/pyrex
OPTIONS_DEFINE= DOCS EXAMPLES OPTIONS_DEFINE= DOCS EXAMPLES
USE_BISON= both USES= bison:both
USE_PYTHON= yes USE_PYTHON= yes
USE_PYDISTUTILS= yes USE_PYDISTUTILS= yes
PYDISTUTILS_PKGVERSION= 0.1 PYDISTUTILS_PKGVERSION= 0.1

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: rbison # Created by: Akinori MUSHA aka knu <knu@idaemons.org>
# Date created: 2 Nov 2000
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= rbison PORTNAME= rbison
PORTVERSION= 0.0.7 PORTVERSION= 0.0.7
@ -16,7 +12,7 @@ DIST_SUBDIR= ruby
MAINTAINER= ruby@FreeBSD.org MAINTAINER= ruby@FreeBSD.org
COMMENT= Generates a Ruby parser class from a Bison-like specification file COMMENT= Generates a Ruby parser class from a Bison-like specification file
USE_BISON= run USES= bison
USE_RUBY= yes USE_RUBY= yes
RUBY_SHEBANG_FILES= ${WRKSRC}/rbison RUBY_SHEBANG_FILES= ${WRKSRC}/rbison

View file

@ -14,7 +14,7 @@ COMMENT= C++ library for SDTS related development
LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs
USE_DOS2UNIX= sdts++/io/sio_Utils.cpp USE_DOS2UNIX= sdts++/io/sio_Utils.cpp
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
USE_AUTOTOOLS= libtoolize aclocal automake autoconf USE_AUTOTOOLS= libtoolize aclocal automake autoconf
LIBTOOLIZE_ARGS=--copy --force LIBTOOLIZE_ARGS=--copy --force

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: sfslite # Created by: max
# Date created: 10 September 2005
# Whom: max
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= sfslite PORTNAME= sfslite
PORTVERSION= 1.2.7 PORTVERSION= 1.2.7
@ -23,7 +19,7 @@ USE_GMAKE= yes
# #
# rpcc does not work with byacc, so just require BISON # rpcc does not work with byacc, so just require BISON
# #
USE_BISON= build USES= bison
# #
# Map X.Y.Z.Q => X.Y # Map X.Y.Z.Q => X.Y

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: tigcc # Created by: Ben Haga <tuximus@tuximus.mine.nu>
# Date created: 15 February 2004
# Whom: Ben Haga <tuximus@tuximus.mine.nu>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= tigcc PORTNAME= tigcc
PORTVERSION= 0.96.b8 PORTVERSION= 0.96.b8
@ -23,7 +19,7 @@ COMMENT= C compiler for the TI89, 92, and 92+ calculators
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison
NO_WRKSUBDIR= yes NO_WRKSUBDIR= yes
do-extract: do-extract:

View file

@ -1,10 +1,5 @@
# ex:ts=8 # Created by: ijliao
# New ports collection makefile for: lfhex
# Date created: Jul 6, 2001
# Whom: ijliao
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= lfhex PORTNAME= lfhex
PORTVERSION= 0.42 PORTVERSION= 0.42
@ -18,7 +13,7 @@ COMMENT= Large file hex editor
LICENSE= GPLv2 LICENSE= GPLv2
USE_QT4= corelib gui moc_build qmake_build rcc_build USE_QT4= corelib gui moc_build qmake_build rcc_build
USE_BISON= build USES= bison
MAKE_JOBS_SAFE= yes MAKE_JOBS_SAFE= yes
WRKSRC= ${WRKDIR}/${DISTNAME}/src WRKSRC= ${WRKDIR}/${DISTNAME}/src

View file

@ -81,7 +81,7 @@ USE_BDB= yes
USE_PERL5_BUILD= yes USE_PERL5_BUILD= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison
WANT_GNOME= yes WANT_GNOME= yes
USE_XORG= xaw xrandr USE_XORG= xaw xrandr

View file

@ -144,7 +144,7 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
p5-libwww>=0:${PORTSDIR}/www/p5-libwww p5-libwww>=0:${PORTSDIR}/www/p5-libwww
USE_AUTOTOOLS= autoconf USE_AUTOTOOLS= autoconf
USE_BISON= build USES= bison
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
WRKSRC?= ${WRKDIR}/ooo/main WRKSRC?= ${WRKDIR}/ooo/main
BASH?= ${PREFIX}/bin/bash BASH?= ${PREFIX}/bin/bash

View file

@ -140,7 +140,7 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
p5-libwww>=0:${PORTSDIR}/www/p5-libwww p5-libwww>=0:${PORTSDIR}/www/p5-libwww
USE_AUTOTOOLS= autoconf USE_AUTOTOOLS= autoconf
USE_BISON= build USES= bison
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
WRKSRC?= ${WRKDIR}/aoo-${PORTVERSION}/main WRKSRC?= ${WRKDIR}/aoo-${PORTVERSION}/main
BASH?= ${PREFIX}/bin/bash BASH?= ${PREFIX}/bin/bash

View file

@ -83,7 +83,7 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-client LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-client
USE_BISON= build USES+= bison
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
WRKSRC?= ${WRKDIR}/${OOOTAG} WRKSRC?= ${WRKDIR}/${OOOTAG}
CONFIGURE_WRKSRC= ${WRKSRC}/config_office CONFIGURE_WRKSRC= ${WRKSRC}/config_office

View file

@ -1,10 +1,5 @@
# ex:ts=8 # Created by: ijliao
# Ports collection makefile for: xmleditor
# Date created: Jan 18, 2003
# Whom: ijliao
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= xmleditor PORTNAME= xmleditor
PORTVERSION= 0.5.3 PORTVERSION= 0.5.3
@ -17,8 +12,8 @@ COMMENT= XML editor
WRKSRC= ${WRKDIR}/${PORTNAME} WRKSRC= ${WRKDIR}/${PORTNAME}
USE_BISON= build USES= bison pathfix
USE_GNOME= gnomehack libglade USE_GNOME= libglade
USE_GMAKE= yes USE_GMAKE= yes
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool
CPPFLAGS+= -I${LOCALBASE}/include CPPFLAGS+= -I${LOCALBASE}/include

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: nonpareil # Created by: trasz <trasz@pin.if.uz.zgora.pl>
# Date created: 24 Jul 2006
# Whom: trasz <trasz@pin.if.uz.zgora.pl>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= nonpareil PORTNAME= nonpareil
PORTVERSION= 0.79 PORTVERSION= 0.79
@ -19,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= png15:${PORTSDIR}/graphics/png LIB_DEPENDS= png15:${PORTSDIR}/graphics/png
USE_BISON= build USES= bison
USE_GNOME= gtk20 libxml2 USE_GNOME= gtk20 libxml2
USE_SDL= sdl USE_SDL= sdl
USE_SCONS= yes USE_SCONS= yes

View file

@ -51,7 +51,7 @@ MAN1= msiexec.1 notepad.1 regedit.1 regsvr32.1 widl.1 wine.1 \
MLINKS= winegcc.1 winecpp.1 \ MLINKS= winegcc.1 winecpp.1 \
winegcc.1 wineg++.1 winegcc.1 wineg++.1
ONLY_FOR_ARCHS= i386 ONLY_FOR_ARCHS= i386
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_GL= glu USE_GL= glu

View file

@ -49,7 +49,7 @@ MAN1= msiexec.1 notepad.1 regedit.1 regsvr32.1 widl.1 wine.1 \
MLINKS= winegcc.1 winecpp.1 \ MLINKS= winegcc.1 winecpp.1 \
winegcc.1 wineg++.1 winegcc.1 wineg++.1
ONLY_FOR_ARCHS= i386 ONLY_FOR_ARCHS= i386
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_GL= glu USE_GL= glu

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: aster # Created by: thierry@pompo.net
# Date created: Thu Jun 26 2003
# Whom: thierry@pompo.net
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= aster PORTNAME= aster
DISTVERSION= ${ASTER_DISTVERSION} DISTVERSION= ${ASTER_DISTVERSION}
@ -50,7 +46,7 @@ MANUAL_PACKAGE_BUILD= runaway python on pointyhat
LICENSE= GPLv2 LICENSE= GPLv2
USE_BISON= build USES= bison
USE_PYTHON= 2.6-2.7 # >2.5 and <3.0 USE_PYTHON= 2.6-2.7 # >2.5 and <3.0
HAS_CONFIGURE= yes HAS_CONFIGURE= yes
REINPLACE_ARGS= -i "" REINPLACE_ARGS= -i ""

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: flobopuyo # Created by: Dmitry Marakasov <amdmi3@amdmi3.ru>
# Date created: 24 Feb 2006
# Whom: Dmitry Marakasov <amdmi3@amdmi3.ru>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= flobopuyo PORTNAME= flobopuyo
PORTVERSION= 0.20 PORTVERSION= 0.20
@ -16,7 +12,7 @@ EXTRACT_SUFX= .tgz
MAINTAINER= amdmi3@FreeBSD.org MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Clone of the famous PuyoPuyo COMMENT= Clone of the famous PuyoPuyo
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
USE_SDL= sdl mixer image USE_SDL= sdl mixer image
MAKE_JOBS_SAFE= yes MAKE_JOBS_SAFE= yes

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: kaid # Created by: Sebastiaan van Erk
# Date created: 18 Feb 2005
# Whom: Sebastiaan van Erk
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= kaid PORTNAME= kaid
PORTVERSION= 7.0.0.4b PORTVERSION= 7.0.0.4b
@ -19,7 +15,7 @@ COMMENT= XLink Kai tunneling server
NO_WRKSUBDIR= yes NO_WRKSUBDIR= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_BISON= build USES= bison
USE_ZIP= yes USE_ZIP= yes
CC= gcc CC= gcc
CPP= g++ CPP= g++

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: noegnud-littlehack # Created by: Leland Wang <llwang@infor.org>
# Date created: 7 April 2004
# Whom: Leland Wang <llwang@infor.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= noegnud PORTNAME= noegnud
PORTVERSION= 0.8.3 PORTVERSION= 0.8.3
@ -22,7 +18,7 @@ COMMENT= The noeGNUd UI for the LittleHack variation of Nethack
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
NOEGNUDVERSION= ${PORTNAME}-0.8.0 NOEGNUDVERSION= ${PORTNAME}-0.8.0
USE_BISON= build USES= bison
USE_GL= yes USE_GL= yes
WANT_SDL= yes WANT_SDL= yes
USE_SDL= sdl image mixer USE_SDL= sdl image mixer

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: noegnud-nethack-deet # Created by: Leland Wang <llwang@infor.org>
# Date created: 7 April 2004
# Whom: Leland Wang <llwang@infor.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= noegnud PORTNAME= noegnud
PORTVERSION= 0.8.3 PORTVERSION= 0.8.3
@ -22,7 +18,7 @@ COMMENT= The noeGNUd UI for Nethack with DeeT's hack font patch
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
NOEGNUDVERSION= ${PORTNAME}-0.8.0 NOEGNUDVERSION= ${PORTNAME}-0.8.0
USE_BISON= build USES= bison
USE_GL= yes USE_GL= yes
WANT_SDL= yes WANT_SDL= yes
USE_SDL= sdl image mixer USE_SDL= sdl image mixer

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: noegnud-nethack # Created by: Leland Wang <llwang@infor.org>
# Date created: 7 April 2004
# Whom: Leland Wang <llwang@infor.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= noegnud PORTNAME= noegnud
PORTVERSION= 0.8.3 PORTVERSION= 0.8.3
@ -22,7 +18,7 @@ COMMENT= The noeGNUd UI for the vanilla Nethack
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
NOEGNUDVERSION= ${PORTNAME}-0.8.0 NOEGNUDVERSION= ${PORTNAME}-0.8.0
USE_BISON= build USES= bison
USE_GL= yes USE_GL= yes
WANT_SDL= yes WANT_SDL= yes
USE_SDL= sdl image mixer USE_SDL= sdl image mixer

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: noegnud-slashem # Created by: Leland Wang <llwang@infor.org>
# Date created: 7 April 2004
# Whom: Leland Wang <llwang@infor.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= noegnud PORTNAME= noegnud
PORTVERSION= 0.8.3 PORTVERSION= 0.8.3
@ -22,7 +18,7 @@ COMMENT= The noeGNUd UI for the SLASH'EM variant of Nethack
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
NOEGNUDVERSION= ${PORTNAME}-0.8.0 NOEGNUDVERSION= ${PORTNAME}-0.8.0
USE_BISON= build USES= bison
USE_GL= yes USE_GL= yes
WANT_SDL= yes WANT_SDL= yes
USE_SDL= sdl image mixer USE_SDL= sdl image mixer

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: QuakeForge # Created by: darius@dons.net.au
# Date created: 4 January 2000
# Whom: darius@dons.net.au
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= quakeforge PORTNAME= quakeforge
PORTVERSION= 0.5.5 PORTVERSION= 0.5.5
@ -21,7 +17,7 @@ NOT_FOR_ARCHS= sparc64
NOT_FOR_ARCHS_REASON= generated Quake C compiler (qfcc) does not work NOT_FOR_ARCHS_REASON= generated Quake C compiler (qfcc) does not work
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool
USE_BZIP2= yes USE_BZIP2= yes
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
@ -31,13 +27,17 @@ CONFIGURE_ARGS+=--with-global-cfg=${PREFIX}/etc/quakeforge.conf \
--with-sharepath=${DATADIR} \ --with-sharepath=${DATADIR} \
--disable-optimize --disable-optimize
OPTIONS= CLIENTS "Build clients" on \ OPTIONS_DEFINE= CLIENTS OPTIMIZED_CFLAGS SDL SERVERS SKYBOXES VORBIS \
OPTIMIZED_CFLAGS "Enable compilation optimizations" on \ XMMS DOCS
SDL "Build SDL client" off \
SERVERS "Build dedicated servers" on \ OPTIONS_DEFAULT= CLIENTS OPTIMIZED_CFLAGS SERVERS DOCS
SKYBOXES "Install skyboxes pak" off \
VORBIS "Enable Ogg Vorbis support in clients" off \ CLIENTS_DESC= Clients
XMMS "Enable XMMS support in clients" off SDL_DESC= SDL client
SERVERS_DESC= Dedicated servers
SKYBOXES_DESC= Install skyboxes pak
VORBIS_DESC= Ogg Vorbis support in clients
XMMS_DESC= XMMS support in clients
MAN1= pak.1 qfcc.1 qflight.1 qfvis.1 wad.1 MAN1= pak.1 qfcc.1 qflight.1 qfvis.1 wad.1
SUB_FILES= pkg-message SUB_FILES= pkg-message
@ -46,14 +46,14 @@ DATADIR= ${Q1DIR}
.include "${.CURDIR}/../quake-data/Makefile.include" .include "${.CURDIR}/../quake-data/Makefile.include"
.include <bsd.port.pre.mk> .include <bsd.port.options.mk>
.if !defined(WITHOUT_CLIENTS) .if ${PORT_OPTIONS:MCLIENTS}
USE_GL= yes USE_GL= yes
USE_XORG= x11 xt USE_XORG= x11 xt
PLIST_SUB+= CLIENTS="" PLIST_SUB+= CLIENTS=""
.if defined(WITH_SDL) .if ${PORT_OPTIONS:MSDL}
USE_SDL= sdl USE_SDL= sdl
CONFIGURE_ARGS+=--with-sdl=${LOCALBASE} CONFIGURE_ARGS+=--with-sdl=${LOCALBASE}
PLIST_SUB+= SDL="" PLIST_SUB+= SDL=""
@ -62,7 +62,7 @@ CONFIGURE_ARGS+=--disable-sdl
PLIST_SUB+= SDL="@comment " PLIST_SUB+= SDL="@comment "
.endif .endif
.if defined(WITH_VORBIS) .if ${PORT_OPTIONS:MVORBIS}
LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis
CONFIGURE_ARGS+=--with-ogg=${LOCALBASE} --with-vorbis=${LOCALBASE} CONFIGURE_ARGS+=--with-ogg=${LOCALBASE} --with-vorbis=${LOCALBASE}
PLIST_SUB+= VORBIS="" PLIST_SUB+= VORBIS=""
@ -71,7 +71,7 @@ CONFIGURE_ARGS+=--disable-ogg --disable-vorbis
PLIST_SUB+= VORBIS="@comment " PLIST_SUB+= VORBIS="@comment "
.endif .endif
.if defined(WITH_XMMS) .if ${PORT_OPTIONS:MXMMS}
LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms
CONFIGURE_ARGS+=--with-xmms-prefix=${LOCALBASE} CONFIGURE_ARGS+=--with-xmms-prefix=${LOCALBASE}
PLIST_SUB+= XMMS="" PLIST_SUB+= XMMS=""
@ -83,9 +83,9 @@ PLIST_SUB+= XMMS="@comment "
.else .else
CONFIGURE_ARGS+=--with-clients="" CONFIGURE_ARGS+=--with-clients=""
PLIST_SUB+= CLIENTS="@comment " PLIST_SUB+= CLIENTS="@comment "
.endif # WITH_CLIENTS .endif
.if !defined(WITHOUT_OPTIMIZED_CFLAGS) .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
CFLAGS+= -O3 -funroll-loops -fomit-frame-pointer -fno-common \ CFLAGS+= -O3 -funroll-loops -fomit-frame-pointer -fno-common \
-fexpensive-optimizations -fstrict-aliasing -fexpensive-optimizations -fstrict-aliasing
. if ${ARCH} != "alpha" . if ${ARCH} != "alpha"
@ -93,14 +93,14 @@ CFLAGS+= -ffast-math
. endif . endif
.endif .endif
.if !defined(WITHOUT_SERVERS) .if ${PORT_OPTIONS:MSERVERS}
PLIST_SUB+= SERVERS="" PLIST_SUB+= SERVERS=""
.else .else
CONFIGURE_ARGS+=--with-servers="" CONFIGURE_ARGS+=--with-servers=""
PLIST_SUB+= SERVERS="@comment " PLIST_SUB+= SERVERS="@comment "
.endif .endif
.if defined(WITH_SKYBOXES) .if ${PORT_OPTIONS:MSKYBOXES}
MASTER_SITES+= http://www.quakeforge.net/files/:qf MASTER_SITES+= http://www.quakeforge.net/files/:qf
DISTFILES+= skyboxes.pak:qf DISTFILES+= skyboxes.pak:qf
PLIST_SUB+= SKYBOXES="" PLIST_SUB+= SKYBOXES=""
@ -109,10 +109,10 @@ PLIST_SUB+= SKYBOXES="@comment "
.endif .endif
post-install: post-install:
.if defined(WITH_SKYBOXES) .if ${PORT_OPTIONS:MSKYBOXES}
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/skyboxes.pak ${DATADIR}/QF ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/skyboxes.pak ${DATADIR}/QF
.endif .endif
.if !defined(NOPORTDOCS) .if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR} ${MKDIR} ${DOCSDIR}
. for f in *.txt *.q1 *.q2 *.ico *.gif *.fig *.h CodingStyle . for f in *.txt *.q1 *.q2 *.ico *.gif *.fig *.h CodingStyle
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR}
@ -123,4 +123,4 @@ post-install:
.endif .endif
@${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}
.include <bsd.port.post.mk> .include <bsd.port.mk>

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: dcss # Created by: Tobias Rehbein <tobias.rehbein@web.de>
# Date created: 2008-07-11
# Whom: Tobias Rehbein <tobias.rehbein@web.de>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= stonesoup PORTNAME= stonesoup
PORTVERSION= 0.11.1 PORTVERSION= 0.11.1
@ -19,7 +15,7 @@ LICENSE_FILE= ${WRKDIR}/stone_soup-${PORTVERSION}/licence.txt
USE_SQLITE= yes USE_SQLITE= yes
USE_XZ= yes USE_XZ= yes
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
USE_LUA= 5.1 USE_LUA= 5.1
USE_PERL5_BUILD= yes USE_PERL5_BUILD= yes

View file

@ -26,7 +26,7 @@ LIB_DEPENDS= physfs:${PORTSDIR}/devel/physfs \
RUN_DEPENDS= ${LOCALBASE}/lib/X11/fonts/dejavu/DejaVuSans.ttf:${PORTSDIR}/x11-fonts/dejavu RUN_DEPENDS= ${LOCALBASE}/lib/X11/fonts/dejavu/DejaVuSans.ttf:${PORTSDIR}/x11-fonts/dejavu
USE_XZ= yes USE_XZ= yes
USE_BISON= build USES= bison
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_OPENAL= al USE_OPENAL= al
USE_GL= yes USE_GL= yes

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: windstille # Created by: Dmitry Marakasov <amdmi3@amdmi3.ru>
# Date created: 14 Jun 2007
# Whom: Dmitry Marakasov <amdmi3@amdmi3.ru>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= windstille PORTNAME= windstille
PORTVERSION= 0.3.0 PORTVERSION= 0.3.0
@ -27,7 +23,7 @@ USE_SCONS= yes
USE_OPENAL= al USE_OPENAL= al
USE_GL= glew USE_GL= glew
USE_SDL= sdl image USE_SDL= sdl image
USE_BISON= build USES= bison
MAKE_JOBS_SAFE= yes MAKE_JOBS_SAFE= yes
post-extract: post-extract:

View file

@ -16,9 +16,9 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex
DIST_SUBDIR= e17 DIST_SUBDIR= e17
USE_BZIP2= yes USE_BZIP2= yes
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
USE_BISON= build USES= bison pathfix
USE_EFL= eina enesim libtool_hack USE_EFL= eina enesim libtool_hack
USE_GNOME= gnomehack pkgconfig USE_GNOME= pkgconfig
USE_LDCONFIG= yes USE_LDCONFIG= yes
CONFIGURE_ARGS= --disable-static CONFIGURE_ARGS= --disable-static

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: flasm # Created by: Jun Kuriyama <kuriyama@FreeBSD.org>
# Date created: 22 January 2002
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= flasm PORTNAME= flasm
PORTVERSION= 1.62 PORTVERSION= 1.62
@ -20,7 +16,7 @@ PLIST_FILES= bin/flasm
USE_ZIP= YES USE_ZIP= YES
USE_GMAKE= YES USE_GMAKE= YES
USE_DOS2UNIX= YES USE_DOS2UNIX= YES
USE_BISON= build USES= bison
NO_WRKSUBDIR= YES NO_WRKSUBDIR= YES
MAKE_ARGS= CFLAGS="${CFLAGS}" MAKE_ARGS= CFLAGS="${CFLAGS}"

View file

@ -16,7 +16,7 @@ COMMENT= Fractal generation program
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff
USE_QT_VER= 3 USE_QT_VER= 3
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
MAKE_JOBS_UNSAFE= yes MAKE_JOBS_UNSAFE= yes

View file

@ -17,7 +17,7 @@ LIB_DEPENDS+= jpeg:${PORTSDIR}/graphics/jpeg \
expat:${PORTSDIR}/textproc/expat2 \ expat:${PORTSDIR}/textproc/expat2 \
gd:${PORTSDIR}/${GD_PORT} gd:${PORTSDIR}/${GD_PORT}
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
USE_AUTOTOOLS= libltdl libtool USE_AUTOTOOLS= libltdl libtool
WANT_GNOME= yes WANT_GNOME= yes

View file

@ -16,9 +16,9 @@ RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gsettings-desktop-schemas.pc:${PORTS
USE_XZ= yes USE_XZ= yes
USE_GETTEXT= yes USE_GETTEXT= yes
USE_BISON= build USES= bison pathfix
USE_GMAKE= yes USE_GMAKE= yes
USE_GNOME= gnomeprefix gnomehack intlhack gnomedocutils gconf2 USE_GNOME= gnomeprefix intlhack gnomedocutils gconf2
WANT_GSTREAMER= yes WANT_GSTREAMER= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
USE_PKGCONFIG= build USE_PKGCONFIG= build

View file

@ -15,6 +15,7 @@ COMMENT= Physically based and unbiased rendering system
LICENSE= GPLv3 LICENSE= GPLv3
ONLY_FOR_ARCHS= i386 amd64
BROKEN= does not build with boost-1.48.0 BROKEN= does not build with boost-1.48.0
BUILD_DEPENDS= ${LOCALBASE}/lib/libfreeimage.a:${PORTSDIR}/graphics/freeimage BUILD_DEPENDS= ${LOCALBASE}/lib/libfreeimage.a:${PORTSDIR}/graphics/freeimage
@ -25,7 +26,7 @@ LIB_DEPENDS= boost_thread:${PORTSDIR}/devel/boost-libs \
HG_NODEID= 9206b3ba7011 HG_NODEID= 9206b3ba7011
USE_BZIP2= yes USE_BZIP2= yes
USE_BISON= build USES= bison
USE_CMAKE= yes USE_CMAKE= yes
CMAKE_VERBOSE= yes CMAKE_VERBOSE= yes
WRKSRC= ${WRKDIR}/lux-${HG_NODEID} WRKSRC= ${WRKDIR}/lux-${HG_NODEID}
@ -35,17 +36,20 @@ DESKTOP_ENTRIES="LuxRender" "${COMMENT}" \
"${PREFIX}/share/pixmaps/luxrender.svg" "${PORTNAME}" \ "${PREFIX}/share/pixmaps/luxrender.svg" "${PORTNAME}" \
"Graphics;3DGraphics;" false "Graphics;3DGraphics;" false
OPTIONS= QT4 "Build Qt4 GUI executable" on \ OPTIONS_DEFINE= QT4 WX
WX "Build wxWidgets GUI executable" off OPTIONS_DEFAULT= QT4
QT4_DESC= Qt4-enabled GUI executable
WX_DESC= wxWidgets-enabled GUI executable
.include <bsd.port.options.mk> .include <bsd.port.options.mk>
.if defined(WITH_QT4) .if ${PORT_OPTIONS:MQT4}
USE_QT4= moc_build qmake_build rcc_build uic_build corelib gui USE_QT4= moc_build qmake_build rcc_build uic_build corelib gui
PLIST_FILES+= bin/luxrender PLIST_FILES+= bin/luxrender
.endif .endif
.if defined(WITH_WX) .if ${PORT_OPTIONS:MWX}
USE_WX= 2.8+ USE_WX= 2.8+
PLIST_FILES+= bin/luxrenderwx PLIST_FILES+= bin/luxrenderwx
.endif .endif
@ -60,10 +64,4 @@ post-patch:
's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \ 's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \
-e 's|int_p_NULL|NULL|g' ${WRKSRC}/core/external/cimg.h -e 's|int_p_NULL|NULL|g' ${WRKSRC}/core/external/cimg.h
.include <bsd.port.pre.mk> .include <bsd.port.mk>
.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
BROKEN= Does not compile4: uses i386-specific options
.endif
.include <bsd.port.post.mk>

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: Ming # Created by: Akinori MUSHA aka knu <knu@idaemons.org>
# Date created: 14 October 2000
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= ming PORTNAME= ming
PORTVERSION= 0.4.4 PORTVERSION= 0.4.4
@ -26,9 +22,8 @@ CPPFLAGS+= -I. -I.. -I${LOCALBASE}/include
LDFLAGS+= -L. -L.. -L${LOCALBASE}/lib LDFLAGS+= -L. -L.. -L${LOCALBASE}/lib
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
MAKE_JOBS_UNSAFE= yes MAKE_JOBS_UNSAFE= yes
USE_BISON= build USES= bison pathfix
USE_GMAKE= yes USE_GMAKE= yes
USE_GNOME= gnomehack
USE_LDCONFIG= yes USE_LDCONFIG= yes
DOCS= HISTORY NEWS README TODO DOCS= HISTORY NEWS README TODO

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: vips # Created by: Lev Serebryakov <lev@FreeBSD.org>
# Date created: 19 December 2003
# Whom: Lev Serebryakov <lev@FreeBSD.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= nip2 PORTNAME= nip2
PORTVERSION= 7.26.3 PORTVERSION= 7.26.3
@ -18,7 +14,7 @@ LIB_DEPENDS= vips.3[0-9]:${PORTSDIR}/graphics/vips \
gsl:${PORTSDIR}/math/gsl \ gsl:${PORTSDIR}/math/gsl \
xml2:${PORTSDIR}/textproc/libxml2 xml2:${PORTSDIR}/textproc/libxml2
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
USE_GNOME= gnomemimedata glib20 pkgconfig gtk20 USE_GNOME= gnomemimedata glib20 pkgconfig gtk20
GNU_CONFIGURE= yes GNU_CONFIGURE= yes

View file

@ -16,7 +16,7 @@ LIB_DEPENDS= MagickWand:${PORTSDIR}/graphics/ImageMagick \
cdf.0:${PORTSDIR}/science/cdf cdf.0:${PORTSDIR}/science/cdf
USE_XORG= xinerama xext xpm xmu sm ice USE_XORG= xinerama xext xpm xmu sm ice
USE_BISON= build USES= bison
USE_GCC= any USE_GCC= any
USE_GL= yes USE_GL= yes
USE_MOTIF= yes USE_MOTIF= yes

View file

@ -33,7 +33,7 @@ CMAKE_ARGS= -DFLEX_EXECUTABLE:STRING=${LOCALBASE}/bin/flex \
-DUSE_TBB:BOOL=OFF -DUSE_TBB:BOOL=OFF
CXXFLAGS+= -I${LOCALBASE}/include/flex CXXFLAGS+= -I${LOCALBASE}/include/flex
USE_LDCONFIG= yes USE_LDCONFIG= yes
USE_BISON= build USES= bison
MAKE_JOBS_SAFE= yes MAKE_JOBS_SAFE= yes
.include <bsd.port.pre.mk> .include <bsd.port.pre.mk>

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: picviz # Created by: Tim Hemel
# Date created: 08 Nov 2008
# Whom: Tim Hemel
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= picviz PORTNAME= picviz
PORTVERSION= 0.4 PORTVERSION= 0.4
@ -20,7 +16,7 @@ LIB_DEPENDS= pcre.3:${PORTSDIR}/devel/pcre \
USE_CMAKE= yes USE_CMAKE= yes
USE_LDCONFIG= yes USE_LDCONFIG= yes
USE_BISON= build USES= bison
MAN1= pcv.1 MAN1= pcv.1

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: pixie # Created by: Igor Pokrovsky <tiamat@comset.net>
# Date created: 29 Jan 2004
# Whom: Igor Pokrovsky <tiamat@comset.net>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= pixie PORTNAME= pixie
PORTVERSION= 2.2.6 PORTVERSION= 2.2.6
@ -25,9 +21,8 @@ NOT_FOR_ARCHS= amd64
WRKSRC= ${WRKDIR}/Pixie WRKSRC= ${WRKDIR}/Pixie
USE_GNOME= gnomehack
USE_GL= glu USE_GL= glu
USE_BISON= build USES= bison pathfix
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool
CONFIGURE_ARGS= --includedir=${PREFIX}/include/pixie \ CONFIGURE_ARGS= --includedir=${PREFIX}/include/pixie \
--libdir=${PREFIX}/lib/pixie \ --libdir=${PREFIX}/lib/pixie \

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: qgis # Created by: Laurent Courty
# Date created: Apr 2006
# Whom: Laurent Courty
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= qgis PORTNAME= qgis
PORTVERSION= 1.8.0 PORTVERSION= 1.8.0
@ -24,7 +20,7 @@ LIB_DEPENDS= geos:${PORTSDIR}/graphics/geos \
USE_BZIP2= yes USE_BZIP2= yes
USE_PYTHON= yes USE_PYTHON= yes
USE_BISON= build USES= bison
USE_CMAKE= yes USE_CMAKE= yes
USE_SQLITE= yes USE_SQLITE= yes
USE_QT4= gui svg xml network sql designer linguist_build \ USE_QT4= gui svg xml network sql designer linguist_build \

View file

@ -1,9 +1,5 @@
# Ports collection makefile for: sswf # Created by: anhot
# Date created: Oct 17, 2005
# Whom: anhot
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= sswf PORTNAME= sswf
PORTVERSION= 1.8.4 PORTVERSION= 1.8.4
@ -20,7 +16,7 @@ LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USE_BISON= build USES= bison
USE_ICONV= yes USE_ICONV= yes
USE_PKGCONFIG= yes USE_PKGCONFIG= yes
USE_AUTOTOOLS= libtool USE_AUTOTOOLS= libtool

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: lcdtest # Created by: Rob Farmer <rfarmer@predatorlabs.net>
# Date created: 12 Jan 2010
# Whom: Rob Farmer <rfarmer@predatorlabs.net>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= tumble PORTNAME= tumble
PORTVERSION= 0.33 PORTVERSION= 0.33
@ -20,6 +16,7 @@ LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \
BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex
USE_GMAKE= yes USE_GMAKE= yes
USES= bison
USE_BISON= build USE_BISON= build
MAKE_JOBS_SAFE= yes MAKE_JOBS_SAFE= yes

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: ja-Ming # Created by: kuriyama
# Date created: Aug 6 2002
# Whom: kuriyama
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= ming PORTNAME= ming
PORTVERSION= 0.1.5 PORTVERSION= 0.1.5
@ -26,7 +22,7 @@ CONFLICTS= ming-*
WRKSRC= ${WRKDIR}/jaming-${PORTVERSION}/src WRKSRC= ${WRKDIR}/jaming-${PORTVERSION}/src
MAKE_ARGS= NOPROFILE=true MAKE_ARGS= NOPROFILE=true
USE_LDCONFIG= yes USE_LDCONFIG= yes
USE_BISON= build USES= bison
UTILS= gif2dbl \ UTILS= gif2dbl \
gif2mask \ gif2mask \

View file

@ -1,9 +1,5 @@
# New ports collection makefile for: JNetHack 3.4.x # Created by: Akinori MUSHA aka knu <knu@idaemons.org>
# Date created: 16 June 2002
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= nethack PORTNAME= nethack
PORTVERSION= 3.4.3 PORTVERSION= 3.4.3
@ -23,7 +19,7 @@ COMMENT= Japanized NetHack
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
USE_BISON= build USES= bison
USE_GMAKE= yes USE_GMAKE= yes
MAKE_ENV= GRAPHICS="${GRAPHICS}" MAKE_ENV= GRAPHICS="${GRAPHICS}"
PLIST_SUB= HACKNAME="${HACKNAME}" \ PLIST_SUB= HACKNAME="${HACKNAME}" \

View file

@ -11,7 +11,7 @@ DISTNAME= XJTEXT-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org MAINTAINER= ports@FreeBSD.org
COMMENT= A text viewer for Japanese vertical writings COMMENT= A text viewer for Japanese vertical writings
USE_BISON= build USES= bison
USE_GNOME= imlib USE_GNOME= imlib
MAKE_JOBS_SAFE= yes MAKE_JOBS_SAFE= yes

View file

@ -18,7 +18,7 @@ BUILD_DEPENDS= espeak:${PORTSDIR}/audio/espeak \
WRKSRC= ${WRKDIR} WRKSRC= ${WRKDIR}
USE_BISON= build USES= bison
USE_SDL= sdl mixer USE_SDL= sdl mixer
USE_QT4= corelib gui network xml webkit moc_build qmake_build rcc_build uic_build USE_QT4= corelib gui network xml webkit moc_build qmake_build rcc_build uic_build
USE_DOS2UNIX= yes USE_DOS2UNIX= yes

View file

@ -30,7 +30,7 @@ GCC_VERSION= ${PORTVERSION:C/(.+)\.[0-9]{8}/\1/}
SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/} SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/}
ONLY_FOR_ARCHS= amd64 i386 ia64 powerpc sparc64 ONLY_FOR_ARCHS= amd64 i386 ia64 powerpc sparc64
USE_BINUTILS= yes USE_BINUTILS= yes
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_ICONV= yes USE_ICONV= yes

View file

@ -1,10 +1,5 @@
# ex:ts=8 # Created by: John Polstra <jdp@polstra.com>
# Ports collection makefile for: egcs
# Date created: 9 Jan 1998
# Whom: John Polstra <jdp@polstra.com>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= gcc PORTNAME= gcc
PORTVERSION= 3.4.6 PORTVERSION= 3.4.6
@ -23,7 +18,7 @@ COMMENT= GNU Compiler Collection 3.4
SUFFIX= 34 SUFFIX= 34
LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX} LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX}
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_ICONV= yes USE_ICONV= yes

View file

@ -1,10 +1,5 @@
# ex:ts=8 # Created by: Gerald Pfeifer <gerald@FreeBSD.org>
# Ports collection makefile for: gcc42
# Date created: 2005-12-11
# Whom: Gerald Pfeifer <gerald@FreeBSD.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= gcc PORTNAME= gcc
PORTVERSION= 4.2.5.20090325 PORTVERSION= 4.2.5.20090325
@ -28,7 +23,7 @@ VERSIONSTRING= ${PORTVERSION:C/([0-9]+\.[0-9]+).*\.([0-9]+)/\1-\2/}
SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/} SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/}
LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX} LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX}
NOT_FOR_ARCHS= arm powerpc NOT_FOR_ARCHS= arm powerpc
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GCC= any USE_GCC= any
USE_GMAKE= yes USE_GMAKE= yes

View file

@ -1,10 +1,5 @@
# ex:ts=8 # Created by: Gerald Pfeifer <gerald@FreeBSD.org>
# Ports collection makefile for: gcc44
# Date created: 2008-03-01
# Whom: Gerald Pfeifer <gerald@FreeBSD.org>
#
# $FreeBSD$ # $FreeBSD$
#
PORTNAME= gcc PORTNAME= gcc
PORTVERSION= 4.4.7 PORTVERSION= 4.4.7
@ -27,7 +22,7 @@ SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/}
LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX} LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX}
ONLY_FOR_ARCHS= amd64 i386 sparc64 ONLY_FOR_ARCHS= amd64 i386 sparc64
USE_BINUTILS= yes USE_BINUTILS= yes
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GCC= any USE_GCC= any
USE_GMAKE= yes USE_GMAKE= yes

View file

@ -31,7 +31,7 @@ SUFFIX= ${PORTVERSION:C/([0-9]+).([0-9]+).*/\1\2/}
LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX} LATEST_LINK= gcc${SUFFIX}${PKGNAMESUFFIX}
ONLY_FOR_ARCHS= amd64 i386 ia64 powerpc sparc64 ONLY_FOR_ARCHS= amd64 i386 ia64 powerpc sparc64
USE_BINUTILS= yes USE_BINUTILS= yes
USE_BISON= build USES= bison
USE_BZIP2= yes USE_BZIP2= yes
USE_GMAKE= yes USE_GMAKE= yes
USE_ICONV= yes USE_ICONV= yes

Some files were not shown because too many files have changed in this diff Show more