Migration from bison 1.x to 2.x
PR: 117086 Tested by: -exp runs
This commit is contained in:
parent
7431345880
commit
dbd39ca660
1
MOVED
1
MOVED
@ -3316,3 +3316,4 @@ www/w3||2007-10-14|Has expired: distfile is 10 years old and depends on emacs19
|
||||
security/p5-Digest-SHA2||2007-10-16|Has expired: Has numerious known bugs, deprecated in favor of Digest::SHA
|
||||
devel/p5-Devel-Peek||2007-10-16|Has expired: depends on antique versions of perl
|
||||
net/skype-devel||2007-10-16|No longer needed: Please update to net/skype
|
||||
devel/bison2|devel/bison|2007-10-17|Bison 1.x to 2.x conversion
|
||||
|
||||
@ -362,7 +362,10 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org
|
||||
# - If set, this port uses the GNU version of the ghostscript
|
||||
# software instead of the GPL version, which is used otherwise.
|
||||
##
|
||||
# USE_BISON - If set, this port uses bison for building.
|
||||
# USE_BISON - Implies that the port uses bison in one way or another:
|
||||
# 'yes' (backwards compatibility) - use bison for building
|
||||
# new features: 'build', 'run', 'both', implying build,
|
||||
# runtime, and both build/run dependencies
|
||||
##
|
||||
# USE_IMAKE - If set, this port uses imake. Implies USE_X_PREFIX.
|
||||
# XMKMF - Set to path of `xmkmf' if not in $PATH
|
||||
@ -1926,7 +1929,26 @@ RUN_DEPENDS+= ${_GL_${_component}_RUN_DEPENDS}
|
||||
.endif
|
||||
|
||||
.if defined(USE_BISON)
|
||||
BUILD_DEPENDS+= bison:${PORTSDIR}/devel/bison
|
||||
_BISON_DEPENDS= bison:${PORTSDIR}/devel/bison
|
||||
|
||||
# XXX: backwards compatibility
|
||||
. if ${USE_BISON:L} == "yes"
|
||||
USE_BISON= build
|
||||
pre-everything::
|
||||
@${ECHO_MSG} "WARNING: USE_BISON=yes deprecated, use build/run/both"
|
||||
. endif
|
||||
|
||||
. if ${USE_BISON:L} == "build"
|
||||
BUILD_DEPENDS+= ${_BISON_DEPENDS}
|
||||
. elif ${USE_BISON:L} == "run"
|
||||
RUN_DEPENDS+= ${_BISON_DEPENDS}
|
||||
. elif ${USE_BISON:L} == "both"
|
||||
BUILD_DEPENDS+= ${_BISON_DEPENDS}
|
||||
RUN_DEPENDS+= ${_BISON_DEPENDS}
|
||||
. else
|
||||
IGNORE= uses unknown USE_BISON construct
|
||||
. endif
|
||||
|
||||
.endif
|
||||
|
||||
.if !defined(_PERL_REFACTORING_COMPLETE)
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= denemo
|
||||
PORTVERSION= 0.7.6
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -18,7 +18,7 @@ COMMENT= Graphical score editor
|
||||
USE_XLIB= yes
|
||||
USE_GNOME= gnometarget gtk20 libxml2
|
||||
USE_GCC= 3.4+
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GETOPT_LONG= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= rezound
|
||||
DISTVERSION= 0.12.3beta
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -15,9 +15,9 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
MAINTAINER= danfe@FreeBSD.org
|
||||
COMMENT= Graphical audio file editor
|
||||
|
||||
BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison
|
||||
LIB_DEPENDS= FOX-1.4:${PORTSDIR}/x11-toolkits/fox14
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib" \
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= sfront
|
||||
PORTVERSION= 0.91
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://critical.ch/distfiles/ \
|
||||
http://energy.critical.ch/distfiles/
|
||||
@ -18,7 +19,7 @@ PORTDOCS= book sfman
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}/src
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"
|
||||
ALL_TARGET= ${PORTNAME}
|
||||
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= chemeq
|
||||
PORTVERSION= 1.50
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= biology textproc
|
||||
MASTER_SITES= http://download.gna.org/chemeq/chemeq-1.5/ \
|
||||
http://freebsd.nsu.ru/distfiles/
|
||||
@ -18,7 +19,7 @@ COMMENT= Outputs LaTeX code for chemical reaction
|
||||
MAKE_ARGS= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-1.5
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
|
||||
MAN1= chemeq.1
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
|
||||
PORTNAME= alliance
|
||||
PORTVERSION= 5.0.20060509
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= cad
|
||||
MASTER_SITES= http://www-asim.lip6.fr/pub/alliance/distribution/5.0/ \
|
||||
${MASTER_SITE_LOCAL}
|
||||
@ -21,7 +21,7 @@ NOT_FOR_ARCHS_REASON= ${PKGNAME} does not build on ${ARCH}
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-5.0
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_MOTIF= yes
|
||||
USE_XLIB= yes
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
|
||||
PORTNAME= iverilog
|
||||
PORTVERSION= 0.8.5
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= cad
|
||||
MASTER_SITES= ftp://icarus.com/pub/eda/verilog/v${PORTVERSION:C,\.[0-9]$,,}/ \
|
||||
ftp://ftp.geda.seul.org/pub/geda/dist/
|
||||
@ -17,7 +18,7 @@ MAINTAINER= stas@FreeBSD.org
|
||||
COMMENT= A Verilog simulation and synthesis tool
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnometarget
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= opencascade
|
||||
PORTVERSION= 6.2
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= cad science
|
||||
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||
MASTER_SITE_SUBDIR= thierry
|
||||
@ -26,7 +26,7 @@ LIB_DEPENDS= itcl.${ITCL_VER}:${PORTSDIR}/lang/itcl \
|
||||
dps.0:${PORTSDIR}/x11/dgs
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_XLIB= yes
|
||||
USE_TK= yes
|
||||
USE_TCL_BUILD= 84
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= tkgate
|
||||
PORTVERSION= 1.8.7
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= cad
|
||||
MASTER_SITES= ftp://gadoid.ices.cmu.edu/pub/tkgate/
|
||||
EXTRACT_SUFX= .tgz
|
||||
@ -20,7 +20,7 @@ RUN_DEPENDS= tclsh8.4:${PORTSDIR}/lang/tcl84
|
||||
BUILD_DEPENDS= xmkmf:${X_IMAKE_PORT}
|
||||
|
||||
HAS_CONFIGURE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_X_PREFIX= yes
|
||||
|
||||
PLIST_SUB= VERSION=${PORTVERSION}
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= clip
|
||||
DISTVERSION= 1.1.16-1
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= databases lang
|
||||
MASTER_SITES= ftp://ftp.linux.ru.net/mirrors/clip/ \
|
||||
ftp://www.cis.by/pub/clip/pub/clip/ \
|
||||
@ -95,7 +95,7 @@ OPT_CLIPLIBS+=clip-interbase
|
||||
PLIST_SUB+= IBASE="@comment "
|
||||
.endif
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_ICONV= yes
|
||||
REINPLACE_ARGS= -i ""
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
|
||||
PORTNAME= evolution-data-server
|
||||
PORTVERSION= 1.10.3.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= databases gnome
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME}
|
||||
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
|
||||
@ -22,7 +23,7 @@ LIB_DEPENDS= soup-2.2.8:${PORTSDIR}/devel/libsoup \
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GETTEXT= yes
|
||||
USE_XLIB= yes
|
||||
USE_GNOME= gnomeprefix gnomehack intlhack gnometarget libgnomeui \
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME?= firebird
|
||||
PORTVERSION= 1.5.4
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR=firebird
|
||||
@ -19,7 +19,7 @@ COMMENT?= The open-source InterBase(tm) 6.0 spin-off (Classic version)
|
||||
|
||||
LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX}
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME?= firebird
|
||||
PORTVERSION= 2.0.3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= SF
|
||||
MASTER_SITE_SUBDIR=firebird
|
||||
@ -18,7 +19,7 @@ COMMENT?= Firebird-2 relational database (server)
|
||||
|
||||
LATEST_LINK= ${PORTNAME}2${PKGNAMESUFFIX}
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME?= firebird
|
||||
PORTVERSION= 2.0.3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= SF
|
||||
MASTER_SITE_SUBDIR=firebird
|
||||
@ -18,7 +19,7 @@ COMMENT?= Firebird-2 relational database (server)
|
||||
|
||||
LATEST_LINK= ${PORTNAME}2${PKGNAMESUFFIX}
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= mdbtools
|
||||
PORTVERSION= 0.5
|
||||
PORTREVISION= 10
|
||||
PORTREVISION= 11
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -19,7 +19,7 @@ COMMENT= Utilities and libraries to export data from MS Access databases (.mdb)
|
||||
BUILD_DEPENDS= gawk:${PORTSDIR}/lang/gawk
|
||||
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GNOME= glib20
|
||||
WANT_GNOME= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -7,16 +7,17 @@
|
||||
|
||||
PORTNAME= postgis
|
||||
DISTVERSION= 1.3.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= databases geography
|
||||
MASTER_SITES= http://postgis.refractions.net/download/
|
||||
|
||||
MAINTAINER= anderson@cnpm.embrapa.br
|
||||
COMMENT= Adds support for geographic objects to PostgreSQL databases
|
||||
|
||||
BUILD_DEPENDS= bison2:${PORTSDIR}/devel/bison2
|
||||
LIB_DEPENDS= proj.5:${PORTSDIR}/graphics/proj
|
||||
RUN_DEPENDS= postmaster:${PORTSDIR}/databases/postgresql${PGSQL_VER}-server
|
||||
|
||||
USE_BISON= build
|
||||
USE_GCC= 3.2+
|
||||
USE_PGSQL= yes
|
||||
USE_GMAKE= yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= postgresql
|
||||
PKGNAMESUFFIX= -contrib
|
||||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= girgen@FreeBSD.org
|
||||
@ -30,7 +30,7 @@ PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]
|
||||
PGSQL_VER= ${DEFAULT_PGSQL_VER}
|
||||
.endif
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
|
||||
BUILD_DIRS= src/port contrib
|
||||
INSTALL_DIRS= contrib
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME?= postgresql
|
||||
PORTVERSION?= 7.4.18
|
||||
PORTREVISION?= 0
|
||||
PORTREVISION?= 1
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${PORTVERSION}
|
||||
@ -97,7 +97,7 @@ OPTIONS+= HIER "Builds with query hierarchy (server)" off
|
||||
. if (defined(SERVER_ONLY) && defined(WITH_HIER)) || make(makesum)
|
||||
PATCH_SITES+= http://gppl.moonbone.ru/:hier74053
|
||||
PATCHFILES+= hier-Pg7.4-0.5.3.tar.gz:hier74053
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
. endif
|
||||
|
||||
. if defined(SERVER_ONLY) && defined(WITH_PAM)
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME?= postgresql
|
||||
PORTVERSION?= 8.0.14
|
||||
PORTREVISION?= 1
|
||||
PORTREVISION?= 2
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${PORTVERSION}
|
||||
@ -104,7 +104,7 @@ OPTIONS+= INTDATE "Builds with 64-bit date/time type (server)" off
|
||||
. if (defined(SERVER_ONLY) && defined(WITH_HIER)) || make(makesum)
|
||||
PATCH_SITES+= http://gppl.moonbone.ru/:hier801055
|
||||
PATCHFILES+= hier-Pg8.0.3-0.5.5.diff.gz:hier801055
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
. endif
|
||||
|
||||
. if (defined(SERVER_ONLY) && defined(WITH_ICU)) || make(makesum)
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME?= postgresql
|
||||
PORTVERSION?= 8.1.10
|
||||
PORTREVISION?= 1
|
||||
PORTREVISION?= 2
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${PORTVERSION}
|
||||
@ -105,7 +105,7 @@ OPTIONS+= INTDATE "Builds with 64-bit date/time type (server)" off
|
||||
. if (defined(SERVER_ONLY) && defined(WITH_HIER)) || make(makesum)
|
||||
PATCH_SITES+= http://gppl.moonbone.ru/:hier812055
|
||||
PATCHFILES+= hier-Pg8.1.2-0.5.5.diff.gz:hier812055
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
. endif
|
||||
|
||||
. if (defined(SERVER_ONLY) && defined(WITH_ICU)) || make(makesum)
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME?= postgresql
|
||||
PORTVERSION?= 8.2.5
|
||||
PORTREVISION?= 1
|
||||
PORTREVISION?= 2
|
||||
CATEGORIES?= databases
|
||||
MASTER_SITES= ${MASTER_SITE_PGSQL}
|
||||
MASTER_SITE_SUBDIR= source/v${PORTVERSION}
|
||||
@ -106,7 +106,7 @@ OPTIONS+= INTDATE "Builds with 64-bit date/time type (server)" off
|
||||
. if (defined(SERVER_ONLY) && defined(WITH_HIER)) || make(makesum)
|
||||
PATCH_SITES+= http://gppl.moonbone.ru/:hier820055
|
||||
PATCHFILES+= hier-v0.5.5-Pg8.2.0.diff.gz:hier820055
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
. endif
|
||||
|
||||
# . if (defined(SERVER_ONLY) && defined(WITH_ICU)) || make(makesum)
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
|
||||
PORTNAME= xbsql
|
||||
PORTVERSION= 0.11
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.rekallrevealed.org/packages/
|
||||
EXTRACT_SUFX= .tgz
|
||||
@ -17,7 +17,7 @@ COMMENT= An SQL wrapper for the XBase DBMS library
|
||||
LIB_DEPENDS= xbase-2.0.0:${PORTSDIR}/databases/xbase
|
||||
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= gnome-pim
|
||||
PORTVERSION= 1.4.9
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= deskutils gnome
|
||||
MASTER_SITES= http://www.jroger.in-berlin.de/gnome-pim/
|
||||
DIST_SUBDIR= gnome
|
||||
@ -16,7 +16,7 @@ MAINTAINER= gnome@FreeBSD.org
|
||||
COMMENT= Gnome pim package
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomeprefix gnomehack gnomelibs libcapplet
|
||||
USE_GETTEXT= yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= kdepim
|
||||
PORTVERSION= ${KDE_VERSION}
|
||||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= deskutils mail news palm kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
|
||||
@ -27,7 +27,7 @@ USE_KDEBASE_VER=3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_OPENSSL= yes
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_GMAKE= yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= kdepim
|
||||
PORTVERSION= ${KDE_VERSION}
|
||||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= deskutils mail news palm kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
|
||||
@ -27,7 +27,7 @@ USE_KDEBASE_VER=3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_OPENSSL= yes
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_GMAKE= yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= kdepim
|
||||
PORTVERSION= ${KDE_VERSION}
|
||||
PORTREVISION= 0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= deskutils mail news palm kde
|
||||
MASTER_SITES= ${MASTER_SITE_KDE}
|
||||
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
|
||||
@ -27,7 +27,7 @@ USE_KDEBASE_VER=3
|
||||
PREFIX= ${KDE_PREFIX}
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_OPENSSL= yes
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_GMAKE= yes
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
|
||||
PORTNAME= tpb
|
||||
PORTVERSION= 0.6.4
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= deskutils
|
||||
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -21,7 +21,7 @@ ONLY_FOR_ARCHS= i386 amd64
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_ICONV= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ARGS= --with-libiconv-prefix=${LOCALBASE}
|
||||
|
||||
@ -96,7 +96,6 @@
|
||||
SUBDIR += bicyclerepair
|
||||
SUBDIR += bin86
|
||||
SUBDIR += bison
|
||||
SUBDIR += bison2
|
||||
SUBDIR += bisongen
|
||||
SUBDIR += bnf
|
||||
SUBDIR += bnfc
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= as31
|
||||
PORTVERSION= 2.0.b3
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.pjrc.com/tech/8051/tools/
|
||||
DISTNAME= ${PORTNAME}_beta3
|
||||
@ -22,7 +22,7 @@ PLIST_SUB+= X11=""
|
||||
ALL_TARGET= as31
|
||||
PLIST_SUB+= X11="@comment "
|
||||
.endif
|
||||
USE_BISON= YES
|
||||
USE_BISON= build
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= gcc-3
|
||||
PORTVERSION= 3.4.6
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GCC}
|
||||
MASTER_SITES+= http://people.freebsd.org/~joerg/:local
|
||||
@ -32,7 +33,7 @@ USE_AUTOTOOLS= autoheader:213
|
||||
USE_PERL5_BUILD= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
CONFLICTS= avr-gcc-4*
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= gcc
|
||||
PORTVERSION= 4.1.2
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GCC}
|
||||
MASTER_SITES+= http://people.freebsd.org/~joerg/:local
|
||||
@ -37,7 +37,7 @@ NO_LATEST_LINK= Use devel/avr-gcc for a stable version.
|
||||
USE_PERL5_BUILD= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
@ -6,9 +6,8 @@
|
||||
#
|
||||
|
||||
PORTNAME= bison
|
||||
PORTVERSION= 1.75
|
||||
PORTREVISION= 2
|
||||
PORTEPOCH= 1
|
||||
PORTVERSION= 2.3
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GNU}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -19,20 +18,18 @@ COMMENT= A parser generator from FSF, (mostly) compatible with Yacc
|
||||
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
|
||||
RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4
|
||||
|
||||
CONFLICTS= bison-1.8[0-9]* bison-2.[0-9]*
|
||||
|
||||
USE_BZIP2= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib" \
|
||||
MAKEINFO="makeinfo --no-split"
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= bison.1
|
||||
INFO= bison
|
||||
|
||||
CONFIGURE_ARGS+=--disable-yacc
|
||||
.if defined(WITHOUT_NLS)
|
||||
CONFIGURE_ARGS+= --disable-nls
|
||||
CONFIGURE_ARGS+=--disable-nls
|
||||
PLIST_SUB+= NLS="@comment "
|
||||
.else
|
||||
USE_GETTEXT= yes
|
||||
@ -43,7 +40,23 @@ PLIST_SUB+= NLS=""
|
||||
.error You have `USE_BISON' variable defined either in environment or in make(1) arguments. Please undefine and try again.
|
||||
.endif
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
post-extract:
|
||||
@${RM} -f ${WRKSRC}/doc/bison.info*
|
||||
|
||||
.include <bsd.port.mk>
|
||||
#
|
||||
# Requires texinfo 4.8 or above
|
||||
#
|
||||
.if ${OSVERSION} < 601000
|
||||
@${REINPLACE_CMD} "/^@headitem/d" ${WRKSRC}/doc/bison.texinfo
|
||||
.endif
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
post-install:
|
||||
${MKDIR} ${EXAMPLESDIR}/calc++
|
||||
${INSTALL_DATA} ${WRKSRC}/examples/calc++/*.[chly]* \
|
||||
${EXAMPLESDIR}/calc++
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
MD5 (bison-1.75.tar.bz2) = dd88fe42e35d554c00af430a9342456a
|
||||
SHA256 (bison-1.75.tar.bz2) = dcdf92c9d847798366f31633e8a58ffd4b4e60c94a36bdc343eef81275e0182a
|
||||
SIZE (bison-1.75.tar.bz2) = 773106
|
||||
MD5 (bison-2.3.tar.bz2) = c18640c6ec31a169d351e3117ecce3ec
|
||||
SHA256 (bison-2.3.tar.bz2) = b10d7e9e354be72aee4e4911cf19dd27b5c527d4e7200857365b5fcdeea0dffb
|
||||
SIZE (bison-2.3.tar.bz2) = 1080319
|
||||
|
||||
@ -1,23 +1,72 @@
|
||||
@comment $FreeBSD$
|
||||
bin/bison
|
||||
share/aclocal/bison-i18n.m4
|
||||
%%DATADIR%%/README
|
||||
%%DATADIR%%/c++.m4
|
||||
%%DATADIR%%/c.m4
|
||||
%%DATADIR%%/glr.c
|
||||
%%DATADIR%%/glr.cc
|
||||
%%DATADIR%%/lalr1.cc
|
||||
%%DATADIR%%/location.cc
|
||||
%%DATADIR%%/m4sugar/m4sugar.m4
|
||||
%%DATADIR%%/m4sugar/version.m4
|
||||
%%DATADIR%%/yacc.c
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-driver.cc
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-driver.hh
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-parser.cc
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-parser.hh
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-parser.yy
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-scanner.cc
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-scanner.ll
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++.cc
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/location.hh
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/position.hh
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/stack.hh
|
||||
%%NLS%%share/locale/da/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/da/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/et/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/et/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ga/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ga/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/hr/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/hr/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/id/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/id/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/it/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/it/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ja/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ja/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ms/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ms/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/nb/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/nb/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/nl/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/nl/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/pl/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/pl/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/pt_BR/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/pt_BR/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ro/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ro/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ru/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ru/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/rw/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/rw/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/sl/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/sv/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/sv/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/tr/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/tr/LC_MESSAGES/bison.mo
|
||||
@dirrm %%DATADIR%%/m4sugar
|
||||
@dirrm %%DATADIR%%
|
||||
%%NLS%%share/locale/vi/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/vi/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/zh_TW/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%@dirrmtry share/locale/rw/LC_MESSAGES
|
||||
%%NLS%%@dirrmtry share/locale/rw
|
||||
%%PORTDOCS%%@dirrmtry %%EXAMPLESDIR%%/calc++
|
||||
%%PORTDOCS%%@dirrmtry %%EXAMPLESDIR%%
|
||||
@dirrmtry %%DATADIR%%/m4sugar
|
||||
@dirrmtry %%DATADIR%%
|
||||
|
||||
@ -1,67 +0,0 @@
|
||||
# Ports collection makefile for: bison
|
||||
# Date created: 27 Mar 1999
|
||||
# Whom: Jerry Hicks
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= bison
|
||||
PORTVERSION= 2.3
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GNU}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
|
||||
MAINTAINER= ade@FreeBSD.org
|
||||
COMMENT= A parser generator from FSF, (mostly) compatible with Yacc
|
||||
|
||||
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
|
||||
RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4
|
||||
|
||||
CONFLICTS= bison-1.*
|
||||
|
||||
NO_LATEST_LINK= yes
|
||||
USE_BZIP2= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
MAN1= bison.1
|
||||
INFO= bison
|
||||
|
||||
CONFIGURE_ARGS+=--disable-yacc
|
||||
.if defined(WITHOUT_NLS)
|
||||
CONFIGURE_ARGS+=--disable-nls
|
||||
PLIST_SUB+= NLS="@comment "
|
||||
.else
|
||||
USE_GETTEXT= yes
|
||||
PLIST_SUB+= NLS=""
|
||||
.endif
|
||||
|
||||
.ifdef USE_BISON
|
||||
.error You have `USE_BISON' variable defined either in environment or in make(1) arguments. Please undefine and try again.
|
||||
.endif
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
post-extract:
|
||||
@${RM} -f ${WRKSRC}/doc/bison.info*
|
||||
|
||||
#
|
||||
# Requires texinfo 4.8 or above
|
||||
#
|
||||
.if ${OSVERSION} < 601000
|
||||
@${REINPLACE_CMD} "/^@headitem/d" ${WRKSRC}/doc/bison.texinfo
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
${LN} -sf ${PREFIX}/bin/bison ${PREFIX}/bin/bison2
|
||||
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${EXAMPLESDIR}/calc++
|
||||
${INSTALL_DATA} ${WRKSRC}/examples/calc++/*.[chly]* \
|
||||
${EXAMPLESDIR}/calc++
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
@ -1,3 +0,0 @@
|
||||
MD5 (bison-2.3.tar.bz2) = c18640c6ec31a169d351e3117ecce3ec
|
||||
SHA256 (bison-2.3.tar.bz2) = b10d7e9e354be72aee4e4911cf19dd27b5c527d4e7200857365b5fcdeea0dffb
|
||||
SIZE (bison-2.3.tar.bz2) = 1080319
|
||||
@ -1,22 +0,0 @@
|
||||
Bison is a tool used to write parsers, such as the parser for GNU cc.
|
||||
It is similar to Yacc, which is included in the base FreeBSD system.
|
||||
|
||||
The main difference between Bison and Yacc that I know of is that
|
||||
Bison supports the @N construction, which gives you access to
|
||||
the starting and ending line number and character number associated
|
||||
with any of the symbols in the current rule.
|
||||
|
||||
Also, Bison supports the command `%expect N' which says not to mention
|
||||
the conflicts if there are N shift/reduce conflicts and no reduce/reduce
|
||||
conflicts.
|
||||
|
||||
The differences in the algorithms stem mainly from the horrible
|
||||
kludges that Johnson had to perpetrate to make Yacc fit in a PDP-11.
|
||||
|
||||
Also, Bison uses a faster but less space-efficient encoding for the
|
||||
parse tables (see Corbett's PhD thesis from Berkeley, "Static
|
||||
Semantics in Compiler Error Recovery", June 1985, Report No. UCB/CSD
|
||||
85/251), and more modern technique for generating the lookahead sets.
|
||||
(See "Efficient Construction of LALR(1) Lookahead Sets" by F. DeRemer
|
||||
and A. Pennello, in ACM TOPLS Vol 4 No 4, October 1982. Their
|
||||
technique is the standard one now.)
|
||||
@ -1,73 +0,0 @@
|
||||
bin/bison
|
||||
bin/bison2
|
||||
share/aclocal/bison-i18n.m4
|
||||
%%DATADIR%%/README
|
||||
%%DATADIR%%/c++.m4
|
||||
%%DATADIR%%/c.m4
|
||||
%%DATADIR%%/glr.c
|
||||
%%DATADIR%%/glr.cc
|
||||
%%DATADIR%%/lalr1.cc
|
||||
%%DATADIR%%/location.cc
|
||||
%%DATADIR%%/m4sugar/m4sugar.m4
|
||||
%%DATADIR%%/yacc.c
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-driver.cc
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-driver.hh
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-parser.cc
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-parser.hh
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-parser.yy
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-scanner.cc
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++-scanner.ll
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/calc++.cc
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/location.hh
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/position.hh
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/calc++/stack.hh
|
||||
%%NLS%%share/locale/da/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/da/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/et/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/et/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ga/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ga/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/hr/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/hr/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/id/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/id/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/it/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/it/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ja/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ja/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ms/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ms/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/nb/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/nb/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/nl/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/nl/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/pl/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/pl/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/pt_BR/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/pt_BR/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ro/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ro/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/ru/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/ru/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/rw/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/rw/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/sl/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/sv/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/sv/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/tr/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/tr/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/vi/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%share/locale/vi/LC_MESSAGES/bison.mo
|
||||
%%NLS%%share/locale/zh_TW/LC_MESSAGES/bison-runtime.mo
|
||||
%%NLS%%@dirrmtry share/locale/rw/LC_MESSAGES
|
||||
%%NLS%%@dirrmtry share/locale/rw
|
||||
%%PORTDOCS%%@dirrmtry %%EXAMPLESDIR%%/calc++
|
||||
%%PORTDOCS%%@dirrmtry %%EXAMPLESDIR%%
|
||||
@dirrmtry %%DATADIR%%/m4sugar
|
||||
@dirrmtry %%DATADIR%%
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME?= gcc
|
||||
PORTVERSION= 4.2.0
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GCC:S,$,:gcc,} \
|
||||
${MASTER_SITE_SOURCEWARE:S,$,:newlib,}
|
||||
@ -37,7 +37,7 @@ RUN_DEPENDS= ${OURTARGET}-as:${PORTSDIR}/devel/cross-binutils
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
ALL_TARGET= all info
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
PORTNAME= eboxy
|
||||
PORTVERSION= 0.4.1
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -16,7 +16,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Create simple GUI interfaces for entertainment PC
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_BZIP2= yes
|
||||
USE_SDL= sdl gui mixer
|
||||
USE_GNOME= gnometarget libxml2 lthack
|
||||
|
||||
@ -7,14 +7,14 @@
|
||||
|
||||
PORTNAME= hp48cc
|
||||
PORTVERSION= 1.3
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= devel lang
|
||||
MASTER_SITES= http://www.sigala.it/sandro/files/
|
||||
|
||||
MAINTAINER= danfe@FreeBSD.org
|
||||
COMMENT= C-like compiler that translates input code to the HP48 RPN language
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
PORTNAME= kimwitu++
|
||||
PORTVERSION= 2.3.8
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www2.informatik.hu-berlin.de/~piefel/kimwitu++/ \
|
||||
http://www.netsw.org/softeng/compilerconstruct/kimwitu/
|
||||
@ -16,7 +16,7 @@ MASTER_SITES= http://www2.informatik.hu-berlin.de/~piefel/kimwitu++/ \
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A tool for processing trees (i.e. terms)
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GETOPT_LONG= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= kscope
|
||||
PORTVERSION= 1.6.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel kde
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR=${PORTNAME}/
|
||||
@ -14,7 +15,6 @@ MASTER_SITE_SUBDIR=${PORTNAME}/
|
||||
MAINTAINER= frank@exit.com
|
||||
COMMENT= KDE front-end to Cscope
|
||||
|
||||
BUILD_DEPENDS+= bison2:${PORTSDIR}/devel/bison2
|
||||
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg
|
||||
RUN_DEPENDS= exctags:${PORTSDIR}/devel/ctags \
|
||||
cscope:${PORTSDIR}/devel/cscope \
|
||||
@ -22,6 +22,7 @@ RUN_DEPENDS= exctags:${PORTSDIR}/devel/ctags \
|
||||
|
||||
DOCSDIR= ${PREFIX}/share/doc/HTML/en/${PORTNAME}
|
||||
|
||||
USE_BISON= build
|
||||
USE_KDEBASE_VER=3
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_GMAKE= yes
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
|
||||
PORTNAME= libIDL
|
||||
PORTVERSION= 0.8.9
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME}
|
||||
MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.8
|
||||
@ -18,7 +19,7 @@ COMMENT= A library for creating trees of CORBA IDL files
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GNOME= gnomehack glib20
|
||||
USE_LDCONFIG= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
PORTNAME= libbonobo
|
||||
PORTVERSION= 2.18.0
|
||||
PORTREVISION?= 1
|
||||
PORTREVISION?= 2
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME}
|
||||
MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
|
||||
@ -24,7 +24,7 @@ USE_BZIP2= yes
|
||||
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GETTEXT= yes
|
||||
USE_LDCONFIG= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -6,6 +6,7 @@
|
||||
|
||||
PORTNAME= libmimedir
|
||||
PORTVERSION= 0.5
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= libmimedir
|
||||
@ -16,7 +17,7 @@ COMMENT= Library for parsing RFC2425 MIME Directory Profile information
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= libvc
|
||||
PORTVERSION= 003
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= rolo
|
||||
@ -17,7 +17,7 @@ COMMENT= A vCard library
|
||||
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_BZIP2= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= gcc
|
||||
PORTVERSION= 4.1.1
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GCC}
|
||||
MASTER_SITE_SUBDIR= releases/${DISTNAME}
|
||||
@ -19,7 +19,7 @@ WRKSRC= ${WRKDIR}/gcc-${PORTVERSION}
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
STRIP=
|
||||
NO_MTREE=yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= pwlib
|
||||
PORTVERSION= 1.10.3
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.voxgratia.org/releases/
|
||||
@ -21,7 +21,7 @@ LIB_DEPENDS= expat.6:${PORTSDIR}/textproc/expat2
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}_v${PORTVERSION:S/./_/g}
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_AUTOTOOLS= autoconf:261
|
||||
USE_GNOME= gnometarget
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
|
||||
PORTNAME= bison
|
||||
PORTVERSION= 0.1.8
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= http://www.freenet.org.nz/python/pybison/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
@ -17,8 +18,8 @@ MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Python-based parsing at the speed of C
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/Pyrex/__init__.py:${PORTSDIR}/devel/pyrex
|
||||
RUN_DEPENDS= bison:${PORTSDIR}/devel/bison
|
||||
|
||||
USE_BISON= run
|
||||
USE_PYTHON= yes
|
||||
USE_PYDISTUTILS= yes
|
||||
PYDISTUTILS_PKGVERSION= 0.1
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
|
||||
PORTNAME= ragel
|
||||
PORTVERSION= 5.23
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.cs.queensu.ca/home/thurston/ragel/ \
|
||||
http://mirror.inerd.com/FreeBSD/distfiles/${PORTNAME}/
|
||||
@ -17,7 +18,7 @@ COMMENT= Compile regular languages into executable C/C++ code
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= rbison
|
||||
PORTVERSION= 0.0.7
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= devel ruby
|
||||
MASTER_SITES= http://freebsd.unixfreunde.de/sources/
|
||||
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||
@ -16,8 +16,7 @@ DIST_SUBDIR= ruby
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Generates a Ruby parser class from a Bison-like specification file
|
||||
|
||||
RUN_DEPENDS= bison:${PORTSDIR}/devel/bison
|
||||
|
||||
USE_BISON= run
|
||||
USE_RUBY= yes
|
||||
|
||||
RUBY_SHEBANG_FILES= ${WRKSRC}/rbison
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= sfslite
|
||||
PORTVERSION= 1.2.2
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://dist.okws.org/dist/
|
||||
|
||||
@ -22,7 +23,7 @@ USE_GMAKE= yes
|
||||
#
|
||||
# rpcc does not work with byacc, so just require BISON
|
||||
#
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
|
||||
#
|
||||
# Map X.Y.Z.Q => X.Y
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= sourcenav
|
||||
PORTVERSION= 5.1.4
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= SF
|
||||
|
||||
@ -22,7 +22,7 @@ PREFIX:= ${PREFIX}/${PORTNAME}
|
||||
.else
|
||||
PREFIX?= ${LOCALBASE}/${PORTNAME}
|
||||
.endif
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_XLIB= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= tavrasm
|
||||
PORTVERSION= 1.22
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.tavrasm.org/:0
|
||||
DISTFILES= ${PORTNAME}${EXTRACT_SUFX}:0
|
||||
@ -15,8 +16,8 @@ MAINTAINER= wes@FreeBSD.org
|
||||
COMMENT= Tom's AVR Assembler
|
||||
|
||||
EXTRACT_DEPENDS=unzip:${PORTSDIR}/archivers/unzip
|
||||
BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison
|
||||
|
||||
USE_BISON= build
|
||||
WRKSRC= ${WRKDIR}/tavrasm.122
|
||||
BUILD_WRKSRC= ${WRKSRC}/src
|
||||
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= tigcc
|
||||
PORTVERSION= 0.96.b8
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GCC:S/$/:gcc/} \
|
||||
${MASTER_SITE_GNU:S/$/:gas/} \
|
||||
@ -22,7 +23,7 @@ COMMENT= C compiler for the TI89, 92, and 92+ calculators
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
NO_WRKSUBDIR= yes
|
||||
|
||||
do-extract:
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
PORTNAME= lfhex
|
||||
PORTVERSION= 0.3.7.2
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= editors
|
||||
MASTER_SITES= http://stoopidsimple.com/files/ \
|
||||
http://home.earthlink.net/~eyekode/data/
|
||||
@ -17,7 +17,7 @@ MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Large file hex editor
|
||||
|
||||
USE_QT_VER= 3
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME?= openoffice.org
|
||||
PORTVERSION?= 2.4.${SNAPDATE}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES+= editors java
|
||||
MASTER_SITES+= http://ooopackages.good-day.net/pub/OpenOffice.org/sources/ \
|
||||
http://openoffice.lunarshells.com/sources/ \
|
||||
@ -119,7 +120,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
|
||||
gcp:${PORTSDIR}/sysutils/coreutils \
|
||||
gpatch:${PORTSDIR}/devel/patch \
|
||||
${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
|
||||
bison2:${PORTSDIR}/devel/bison2 \
|
||||
bash:${PORTSDIR}/shells/bash \
|
||||
imake:${X_IMAKE_PORT}
|
||||
BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
@ -127,6 +127,7 @@ BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
|
||||
.endif
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC?= ${WRKDIR}/${OOOTAG}
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/config_office
|
||||
|
||||
@ -120,7 +120,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
|
||||
gcp:${PORTSDIR}/sysutils/coreutils \
|
||||
gpatch:${PORTSDIR}/devel/patch \
|
||||
${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
|
||||
bison2:${PORTSDIR}/devel/bison2 \
|
||||
bash:${PORTSDIR}/shells/bash \
|
||||
imake:${X_IMAKE_PORT}
|
||||
BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
@ -128,6 +127,7 @@ BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
|
||||
.endif
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC?= ${WRKDIR}/${OOOTAG}
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/config_office
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= openoffice.org
|
||||
PORTVERSION= 1.0.3
|
||||
PORTREVISION= 9
|
||||
PORTREVISION= 10
|
||||
CATEGORIES+= editors java
|
||||
MASTER_SITES+= http://openoffice.lunarshells.com/sources/:moz,ru,src,help \
|
||||
ftp://ooopackages.good-day.net/pub/OpenOffice.org/sources/1.0.3/:moz,ru,src,help \
|
||||
@ -35,7 +35,7 @@ DISTFILES+= ${MOZILLA_PROJECT}:moz ${MOZILLA_SOURCE}:mozsrc
|
||||
USE_GNOME= orbit
|
||||
USE_XLIB= yes
|
||||
USE_PERL5= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_JAVA= yes
|
||||
JAVA_VENDOR= bsdjava
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= openoffice.org
|
||||
PORTVERSION= 1.1.5.${SNAPDATE}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES+= editors
|
||||
MASTER_SITES+= http://ooopackages.good-day.net/pub/OpenOffice.org/sources/1.1/ \
|
||||
http://openoffice.lunarshells.com/sources/1.1/ \
|
||||
@ -32,7 +33,7 @@ USE_GNOME+= orbit
|
||||
|
||||
USE_XLIB= yes
|
||||
USE_PERL5= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GNOME+= gtk20
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= openoffice.org
|
||||
PORTVERSION= 1.1.5
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES+= editors java
|
||||
MASTER_SITES+= http://ooopackages.good-day.net/pub/OpenOffice.org/sources/1.1/ \
|
||||
http://openoffice.lunarshells.com/sources/1.1/ \
|
||||
@ -31,7 +31,7 @@ USE_GNOME+= orbit
|
||||
|
||||
USE_XLIB= yes
|
||||
USE_PERL5= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME+= gtk20
|
||||
WITHOUT_CPU_CFLAGS= true
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME?= openoffice.org
|
||||
PORTVERSION?= 2.3.${SNAPDATE}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES+= editors java
|
||||
MASTER_SITES+= http://ooopackages.good-day.net/pub/OpenOffice.org/sources/ \
|
||||
http://openoffice.lunarshells.com/sources/ \
|
||||
@ -119,7 +120,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
|
||||
gcp:${PORTSDIR}/sysutils/coreutils \
|
||||
gpatch:${PORTSDIR}/devel/patch \
|
||||
${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
|
||||
bison2:${PORTSDIR}/devel/bison2 \
|
||||
bash:${PORTSDIR}/shells/bash \
|
||||
imake:${X_IMAKE_PORT}
|
||||
BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
@ -127,6 +127,7 @@ BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
|
||||
.endif
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC?= ${WRKDIR}/${OOOTAG}
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/config_office
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME?= openoffice.org
|
||||
PORTVERSION?= 2.4.${SNAPDATE}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES+= editors java
|
||||
MASTER_SITES+= http://ooopackages.good-day.net/pub/OpenOffice.org/sources/ \
|
||||
http://openoffice.lunarshells.com/sources/ \
|
||||
@ -119,7 +120,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
|
||||
gcp:${PORTSDIR}/sysutils/coreutils \
|
||||
gpatch:${PORTSDIR}/devel/patch \
|
||||
${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
|
||||
bison2:${PORTSDIR}/devel/bison2 \
|
||||
bash:${PORTSDIR}/shells/bash \
|
||||
imake:${X_IMAKE_PORT}
|
||||
BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
@ -127,6 +127,7 @@ BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
|
||||
.endif
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC?= ${WRKDIR}/${OOOTAG}
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/config_office
|
||||
|
||||
@ -120,7 +120,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
|
||||
gcp:${PORTSDIR}/sysutils/coreutils \
|
||||
gpatch:${PORTSDIR}/devel/patch \
|
||||
${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
|
||||
bison2:${PORTSDIR}/devel/bison2 \
|
||||
bash:${PORTSDIR}/shells/bash \
|
||||
imake:${X_IMAKE_PORT}
|
||||
BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
@ -128,6 +127,7 @@ BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
|
||||
.endif
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC?= ${WRKDIR}/${OOOTAG}
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/config_office
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME?= openoffice.org
|
||||
PORTVERSION?= 2.3.${SNAPDATE}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES+= editors java
|
||||
MASTER_SITES+= http://ooopackages.good-day.net/pub/OpenOffice.org/sources/ \
|
||||
http://openoffice.lunarshells.com/sources/ \
|
||||
@ -119,7 +120,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
|
||||
gcp:${PORTSDIR}/sysutils/coreutils \
|
||||
gpatch:${PORTSDIR}/devel/patch \
|
||||
${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
|
||||
bison2:${PORTSDIR}/devel/bison2 \
|
||||
bash:${PORTSDIR}/shells/bash \
|
||||
imake:${X_IMAKE_PORT}
|
||||
BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
@ -127,6 +127,7 @@ BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
|
||||
.endif
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC?= ${WRKDIR}/${OOOTAG}
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/config_office
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME?= openoffice.org
|
||||
PORTVERSION?= 2.4.${SNAPDATE}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES+= editors java
|
||||
MASTER_SITES+= http://ooopackages.good-day.net/pub/OpenOffice.org/sources/ \
|
||||
http://openoffice.lunarshells.com/sources/ \
|
||||
@ -119,7 +120,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
|
||||
gcp:${PORTSDIR}/sysutils/coreutils \
|
||||
gpatch:${PORTSDIR}/devel/patch \
|
||||
${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
|
||||
bison2:${PORTSDIR}/devel/bison2 \
|
||||
bash:${PORTSDIR}/shells/bash \
|
||||
imake:${X_IMAKE_PORT}
|
||||
BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
@ -127,6 +127,7 @@ BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
|
||||
.endif
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC?= ${WRKDIR}/${OOOTAG}
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/config_office
|
||||
|
||||
@ -120,7 +120,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
|
||||
gcp:${PORTSDIR}/sysutils/coreutils \
|
||||
gpatch:${PORTSDIR}/devel/patch \
|
||||
${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
|
||||
bison2:${PORTSDIR}/devel/bison2 \
|
||||
bash:${PORTSDIR}/shells/bash \
|
||||
imake:${X_IMAKE_PORT}
|
||||
BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
@ -128,6 +127,7 @@ BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
|
||||
.endif
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC?= ${WRKDIR}/${OOOTAG}
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/config_office
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME?= openoffice.org
|
||||
PORTVERSION?= 2.4.${SNAPDATE}
|
||||
PORTREVISION= 1
|
||||
CATEGORIES+= editors java
|
||||
MASTER_SITES+= http://ooopackages.good-day.net/pub/OpenOffice.org/sources/ \
|
||||
http://openoffice.lunarshells.com/sources/ \
|
||||
@ -119,7 +120,6 @@ BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \
|
||||
gcp:${PORTSDIR}/sysutils/coreutils \
|
||||
gpatch:${PORTSDIR}/devel/patch \
|
||||
${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \
|
||||
bison2:${PORTSDIR}/devel/bison2 \
|
||||
bash:${PORTSDIR}/shells/bash \
|
||||
imake:${X_IMAKE_PORT}
|
||||
BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
@ -127,6 +127,7 @@ BUILD_DEPENDS+= ant:${PORTSDIR}/devel/apache-ant
|
||||
LIB_DEPENDS+= art_lgpl_2:${PORTSDIR}/graphics/libart_lgpl
|
||||
.endif
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
WRKSRC?= ${WRKDIR}/${OOOTAG}
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/config_office
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
PORTNAME= xmleditor
|
||||
PORTVERSION= 0.5.3
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= editors
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -18,7 +18,7 @@ COMMENT= XML editor
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GNOME= gnomehack libglade
|
||||
USE_GMAKE= yes
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
|
||||
@ -7,16 +7,16 @@
|
||||
|
||||
PORTNAME= nonpareil
|
||||
PORTVERSION= 0.78
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= http://nonpareil.brouhaha.com/download/
|
||||
|
||||
MAINTAINER= trasz@FreeBSD.org
|
||||
COMMENT= Simulator for many HP calculators
|
||||
|
||||
BUILD_DEPENDS= pnmtopng:${PORTSDIR}/graphics/netpbm \
|
||||
bison2:${PORTSDIR}/devel/bison2
|
||||
BUILD_DEPENDS= pnmtopng:${PORTSDIR}/graphics/netpbm
|
||||
|
||||
USE_BISON= build
|
||||
USE_SCONS= yes
|
||||
USE_GNOME= gtk20 libxml2
|
||||
USE_SDL= mixer
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
|
||||
PORTNAME= wine
|
||||
PORTVERSION= 0.9.46
|
||||
PORTREVISION= 1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} \
|
||||
@ -33,7 +34,7 @@ MAN1= widl.1 wine.1 winebuild.1 winedbg.1 winedump.1 winegcc.1 \
|
||||
winemaker.1 wineprefixcreate.1 wineserver.1 wmc.1 wrc.1
|
||||
MLINKS= winegcc.1 wineg++.1
|
||||
ONLY_FOR_ARCHS= i386
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GL= glut
|
||||
|
||||
@ -8,6 +8,7 @@
|
||||
|
||||
PORTNAME= wine
|
||||
PORTVERSION= 0.9.46
|
||||
PORTREVISION= 1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} \
|
||||
@ -33,7 +34,7 @@ MAN1= widl.1 wine.1 winebuild.1 winedbg.1 winedump.1 winegcc.1 \
|
||||
winemaker.1 wineprefixcreate.1 wineserver.1 wmc.1 wrc.1
|
||||
MLINKS= winegcc.1 wineg++.1
|
||||
ONLY_FOR_ARCHS= i386
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GL= glut
|
||||
|
||||
@ -9,6 +9,7 @@ PORTNAME= aster
|
||||
DISTVERSIONPREFIX= full-src-
|
||||
DISTVERSION= 9.1.0-1
|
||||
DISTVERSIONSUFFIX= .noarch
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= french cad python
|
||||
MASTER_SITES= http://www.code-aster.org/FICHIERS/
|
||||
|
||||
@ -48,7 +49,7 @@ RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/Gnuplot:${PORTSDIR}/math/py-gnuplot \
|
||||
${LOCALBASE}/bin/onmetis.exe:${PORTSDIR}/math/metis-edf \
|
||||
${LOCALBASE}/aster/ASTK/ASTK_SERV:${PORTSDIR}/cad/astk-serveur
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_PYTHON= yes
|
||||
HAS_CONFIGURE= yes
|
||||
REINPLACE_ARGS= -i ""
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= flobopuyo
|
||||
PORTVERSION= 0.20
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= http://www.ios-software.com/flobopuyo/ \
|
||||
http://www.amdmi3.ru/distfiles/
|
||||
@ -16,7 +16,7 @@ EXTRACT_SUFX= .tgz
|
||||
MAINTAINER= amdmi3@amdmi3.ru
|
||||
COMMENT= Clone of the famous PuyoPuyo
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_SDL= sdl mixer image
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= kaid
|
||||
PORTVERSION= 7.0.0.4b
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= games net
|
||||
MASTER_SITES= http://www.teamxlink.co.uk/binary/
|
||||
MASTER_SITE_SUBDIR=
|
||||
@ -19,7 +19,7 @@ COMMENT= XLink Kai tunneling server
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
USE_GMAKE= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_ZIP= yes
|
||||
CC= gcc
|
||||
CPP= g++
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= noegnud
|
||||
PORTVERSION= 0.8.3
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= http://www.darkarts.co.za/projects/noegnud/downloads/${PORTVERSION}/:noegnud \
|
||||
${MASTER_SITE_SOURCEFORGE:S/$/:nethack/}
|
||||
@ -23,7 +23,7 @@ COMMENT= The noeGNUd UI for the the LittleHack variation of Nethack
|
||||
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
|
||||
|
||||
NOEGNUDVERSION= ${PORTNAME}-0.8.0
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GL= yes
|
||||
WANT_SDL= yes
|
||||
USE_SDL= sdl image mixer
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= noegnud
|
||||
PORTVERSION= 0.8.3
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= http://www.darkarts.co.za/projects/noegnud/downloads/${PORTVERSION}/:noegnud \
|
||||
${MASTER_SITE_SOURCEFORGE:S/$/:nethack/}
|
||||
@ -23,7 +23,7 @@ COMMENT= The noeGNUd UI for Nethack with DeeT's hack font patch
|
||||
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
|
||||
|
||||
NOEGNUDVERSION= ${PORTNAME}-0.8.0
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GL= yes
|
||||
WANT_SDL= yes
|
||||
USE_SDL= sdl image mixer
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= noegnud
|
||||
PORTVERSION= 0.8.3
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= http://www.darkarts.co.za/projects/noegnud/downloads/${PORTVERSION}/:noegnud \
|
||||
${MASTER_SITE_SOURCEFORGE:S/$/:nethack/}
|
||||
@ -23,7 +23,7 @@ COMMENT= The noeGNUd UI for the vanilla Nethack
|
||||
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
|
||||
|
||||
NOEGNUDVERSION= ${PORTNAME}-0.8.0
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GL= yes
|
||||
WANT_SDL= yes
|
||||
USE_SDL= sdl image mixer
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= noegnud
|
||||
PORTVERSION= 0.8.3
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= http://www.darkarts.co.za/projects/noegnud/downloads/${PORTVERSION}/:noegnud \
|
||||
${MASTER_SITE_SOURCEFORGE:S/$/:slashem/}
|
||||
@ -23,7 +23,7 @@ COMMENT= The noeGNUd UI for the SLASH'EM variant of Nethack
|
||||
RUN_DEPENDS= ${LOCALBASE}/share/${NOEGNUDVERSION}/data/gui:${PORTSDIR}/games/noegnud-data
|
||||
|
||||
NOEGNUDVERSION= ${PORTNAME}-0.8.0
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GL= yes
|
||||
WANT_SDL= yes
|
||||
USE_SDL= sdl image mixer
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= quakeforge
|
||||
PORTVERSION= 0.5.5
|
||||
PORTREVISION= 6
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:S/$/:sf/}
|
||||
MASTER_SITE_SUBDIR= quake/:sf
|
||||
@ -22,7 +22,7 @@ NOT_FOR_ARCHS= sparc64
|
||||
NOT_FOR_ARCHS_REASON= generated Quake C compiler (qfcc) does not work
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
USE_BZIP2= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_LDCONFIG= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= warzone2100
|
||||
PORTVERSION= 2.0.7
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= http://download.gna.org/warzone/releases/2.0/
|
||||
|
||||
@ -17,8 +17,7 @@ PATCHFILES= ${DISTNAME}_hotfix1.patch
|
||||
MAINTAINER= alepulver@FreeBSD.org
|
||||
COMMENT= Innovative 3D real-time strategy game
|
||||
|
||||
BUILD_DEPENDS= bison<1,1:${PORTSDIR}/devel/bison2 \
|
||||
zip:${PORTSDIR}/archivers/zip \
|
||||
BUILD_DEPENDS= zip:${PORTSDIR}/archivers/zip \
|
||||
unzip:${PORTSDIR}/archivers/unzip
|
||||
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
||||
mad.2:${PORTSDIR}/audio/libmad \
|
||||
@ -28,6 +27,7 @@ LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
||||
png.5:${PORTSDIR}/graphics/png \
|
||||
vorbis.4:${PORTSDIR}/audio/libvorbis
|
||||
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GL= yes
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= windstille
|
||||
PORTVERSION= 0.3.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= BERLIOS CENKES
|
||||
|
||||
@ -26,7 +27,7 @@ USE_BZIP2= yes
|
||||
USE_SCONS= yes
|
||||
USE_GL= yes
|
||||
USE_SDL= sdl image
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
|
||||
post-extract:
|
||||
@${RM} -rf ${WRKSRC}/lib
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
PORTNAME= aqsis
|
||||
PORTVERSION= 1.0.1
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -22,7 +22,7 @@ LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \
|
||||
|
||||
USE_GCC= 3.4+
|
||||
USE_GNOME= gnometarget
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= flasm
|
||||
PORTVERSION= 1.52
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= graphics
|
||||
#MASTER_SITES= http://www.nowrap.de/download/
|
||||
MASTER_SITES= http://dist.bsdlab.org/
|
||||
@ -18,7 +19,7 @@ COMMENT= Command line assembler/disassembler of flash actionscript bytecode
|
||||
PLIST_FILES= bin/flasm
|
||||
USE_ZIP= YES
|
||||
USE_GMAKE= YES
|
||||
USE_BISON= YES
|
||||
USE_BISON= build
|
||||
NO_WRKSUBDIR= YES
|
||||
MAKE_ARGS= CFLAGS="${CFLAGS}"
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= fractorama
|
||||
PORTVERSION= 1.6.7
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://fractorama.com/ \
|
||||
http://critical.ch/distfiles/${PORTNAME}/${PORTVERSION}/ \
|
||||
@ -20,7 +20,7 @@ COMMENT= Fractal generation program
|
||||
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff
|
||||
|
||||
USE_QT_VER= 3
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
MAKE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \
|
||||
QTCPPFLAGS="${QTCPPFLAGS} ${PTHREAD_CFLAGS}" \
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= graphviz
|
||||
PORTVERSION= 2.14.1
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= graphics tk84
|
||||
MASTER_SITES= http://www.graphviz.org/pub/graphviz/ARCHIVE/ \
|
||||
http://mirror.inerd.com/FreeBSD/distfiles/${PORTNAME}/
|
||||
@ -22,7 +22,7 @@ LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
||||
expat.6:${PORTSDIR}/textproc/expat2 \
|
||||
gd.4:${PORTSDIR}/graphics/gd
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_AUTOTOOLS= libltdl:15 libtool:15
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= ming
|
||||
PORTVERSION= 0.3.0
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -21,7 +21,7 @@ LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
|
||||
CONFLICTS= ja-ming-[0-9]*
|
||||
|
||||
USE_GNOME= gnometarget
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||
CONFIGURE_ARGS= --includedir=${PREFIX}/include/ming \
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
PORTNAME= opendx
|
||||
PORTVERSION= 4.4.0
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= graphics math
|
||||
MASTER_SITES= http://opendx.npaci.edu/source/
|
||||
DISTNAME= dx-${PORTVERSION}
|
||||
@ -20,7 +20,7 @@ LIB_DEPENDS= Magick.10:${PORTSDIR}/graphics/ImageMagick \
|
||||
tiff.4:${PORTSDIR}/graphics/tiff \
|
||||
cdf.0:${PORTSDIR}/science/cdf
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GL= yes
|
||||
USE_MOTIF= yes
|
||||
USE_XLIB= yes
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= sswf
|
||||
PORTVERSION= 1.7.4
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= sswf
|
||||
@ -15,10 +16,10 @@ DISTNAME= sswf-${PORTVERSION}-src
|
||||
MAINTAINER= anholt@FreeBSD.org
|
||||
COMMENT= A library and script language tool to create Flash movies
|
||||
|
||||
BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison
|
||||
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \
|
||||
freetype.9:${PORTSDIR}/print/freetype2
|
||||
|
||||
USE_BISON= build
|
||||
USE_AUTOTOOLS= libtool:15
|
||||
WRKSRC= ${WRKDIR}/sswf-${PORTVERSION}
|
||||
USE_GCC= 3.4+
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= tcm
|
||||
PORTVERSION= 2.20
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= ftp://ftp.cs.utwente.nl/pub/tcm/ \
|
||||
ftp://ftp.cs.vu.nl/pub/tcm/
|
||||
@ -22,7 +22,7 @@ COMMENT= The Toolkit for Conceptual Modeling, create diagrams/tables/trees
|
||||
|
||||
RUN_DEPENDS= fig2dev:${PORTSDIR}/print/transfig
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
USE_MOTIF= yes
|
||||
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= ircd
|
||||
PORTVERSION= 7.2.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= irc russian
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
||||
ftp://rusunix.org/pub/FreeBSD/distfiles/
|
||||
@ -21,7 +22,7 @@ CONFLICTS= ircd-[0-9]*
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX}
|
||||
USE_OPENSSL= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_REINPLACE= yes
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/ircd-hybrid-ru
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= ming
|
||||
PORTVERSION= 0.1.5
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= japanese graphics
|
||||
MASTER_SITES= http://dist.bsdlab.org/
|
||||
#MASTER_SITES= http://blue.ribbon.to/~harpy/ming/jaming/
|
||||
@ -24,7 +24,7 @@ CONFLICTS= ming-*
|
||||
WRKSRC= ${WRKDIR}/jaming-${PORTVERSION}/src
|
||||
MAKE_ARGS= NOPROFILE=true
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
|
||||
UTILS= gif2dbl \
|
||||
gif2mask \
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= nethack
|
||||
PORTVERSION= 3.4.3
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= japanese games
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -24,7 +24,7 @@ COMMENT= Japanized NetHack
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GMAKE= yes
|
||||
MAKE_ENV= CXX="${CXX}" GRAPHICS="${GRAPHICS}"
|
||||
PLIST_SUB= HACKNAME="${HACKNAME}" \
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= oleo
|
||||
PORTVERSION= 1.99.16
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= japanese math
|
||||
MASTER_SITES= http://www.hh.iij4u.or.jp/~hayasida/oleo/ \
|
||||
${MASTER_SITE_GNU}
|
||||
@ -19,8 +19,9 @@ MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A Spreadsheet Program + Japanese patches
|
||||
|
||||
# xmkmf is for configure script, not for USE_IMAKE.
|
||||
BUILD_DEPENDS= xmkmf:${X_IMAKE_PORT} \
|
||||
bison:${PORTSDIR}/devel/bison
|
||||
BUILD_DEPENDS= xmkmf:${X_IMAKE_PORT}
|
||||
|
||||
USE_BISON= build
|
||||
|
||||
.if defined(WITH_MOTIF)
|
||||
BUILD_DEPENDS+= ${LOCALBASE}/include/Xbae/Matrix.h:${PORTSDIR}/x11-toolkits/xbae
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= xjtext
|
||||
PORTVERSION= 1.3
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= japanese
|
||||
MASTER_SITES= http://plaza.harmonix.ne.jp/~onizuka/
|
||||
DISTNAME= XJTEXT-${PORTVERSION}
|
||||
@ -15,7 +15,7 @@ DISTNAME= XJTEXT-${PORTVERSION}
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A text viewer for Japanese vertical writings
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GNOME= imlib
|
||||
|
||||
SUB_FILES= pkg-message
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= jmp
|
||||
PORTVERSION= 0.51
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= java devel
|
||||
MASTER_SITES= http://www.khelekore.org/jmp/
|
||||
|
||||
@ -21,7 +21,7 @@ OPTIONS+= OPTIMIZED_CFLAGS "Compile with -O3" off
|
||||
CONFIGURE_ARGS= --with-includes="${JAVA_HOME}/include ${LOCALBASE}/include" \
|
||||
--with-libintl-prefix="${LOCALBASE}"
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_GETTEXT= yes
|
||||
USE_GMAKE= yes
|
||||
USE_JAVA= yes
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
|
||||
PORTNAME= gcc-ooo
|
||||
PORTVERSION= 3.4.1
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= ${MASTER_SITE_GCC}
|
||||
MASTER_SITE_SUBDIR= releases/gcc-${PORTVERSION}
|
||||
@ -28,7 +28,7 @@ NOT_FOR_ARCHS= ia64
|
||||
|
||||
NO_LATEST_LINK= yes
|
||||
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_PERL5_BUILD=yes
|
||||
|
||||
@ -31,7 +31,7 @@ NOT_FOR_ARCHS= alpha ia64
|
||||
# Building libgcj with lang/gcc295 installed is causing a failure about
|
||||
# "hidden symbol `__eprintf'" in libgcc.a(_eprintf.o).
|
||||
CONFLICTS= gcc-2.95.*
|
||||
USE_BISON= yes
|
||||
USE_BISON= build
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_ICONV= yes
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user