notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photos
All times are UTC
Ukraine
The recently imposed "must be logged in" restriction is a response to increased bot traffic on the site. This affects search, commits, and vuxml pages.
Search engines are not blocked. Try using "site:www.freshports.org" and your search terms.
Port details on branch 2022Q3
bison Parser generator from FSF, (mostly) compatible with Yacc
3.8.2_2,1 devel on this many watch lists=486 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 3.8.2_2,1Version of this port present on the latest quarterly branch.
Maintainer: sunpoet@FreeBSD.org search for ports maintained by this maintainer
Port Added: unknown
Last Update: 2024-07-10 04:57:24
Commit Hash: c7c4c9e
People watching this port, also watch:: gmake, m4, libiconv, gettext, expat
License: GPLv3+
WWW:
https://www.gnu.org/software/bison/
https://savannah.gnu.org/projects/bison/
Description:
Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables. As an experimental feature, Bison can also generate IELR(1) or canonical LR(1) parser tables. Once you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in simple desk calculators to complex programming languages. Bison is upward compatible with Yacc: all properly-written Yacc grammars ought to work with Bison with no change. Anyone familiar with Yacc should be able to use Bison with little trouble. You need to be fluent in C or C++ programming in order to use Bison. Java is also supported as an experimental feature.
HomepageHomepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
pkg-plist: as obtained via: make generate-plist
Expand this list (202 items)
Collapse this list.
  1. /usr/local/share/licenses/bison-3.8.2_2,1/catalog.mk
  2. /usr/local/share/licenses/bison-3.8.2_2,1/LICENSE
  3. /usr/local/share/licenses/bison-3.8.2_2,1/GPLv3+
  4. bin/bison
  5. share/aclocal/bison-i18n.m4
  6. share/bison/README.md
  7. share/bison/bison-default.css
  8. share/bison/m4sugar/foreach.m4
  9. share/bison/m4sugar/m4sugar.m4
  10. share/bison/skeletons/bison.m4
  11. share/bison/skeletons/c++-skel.m4
  12. share/bison/skeletons/c++.m4
  13. share/bison/skeletons/c-like.m4
  14. share/bison/skeletons/c-skel.m4
  15. share/bison/skeletons/c.m4
  16. share/bison/skeletons/d-skel.m4
  17. share/bison/skeletons/d.m4
  18. share/bison/skeletons/glr.c
  19. share/bison/skeletons/glr.cc
  20. share/bison/skeletons/glr2.cc
  21. share/bison/skeletons/java-skel.m4
  22. share/bison/skeletons/java.m4
  23. share/bison/skeletons/lalr1.cc
  24. share/bison/skeletons/lalr1.d
  25. share/bison/skeletons/lalr1.java
  26. share/bison/skeletons/location.cc
  27. share/bison/skeletons/stack.hh
  28. share/bison/skeletons/traceon.m4
  29. share/bison/skeletons/variant.hh
  30. share/bison/skeletons/yacc.c
  31. share/bison/xslt/bison.xsl
  32. share/bison/xslt/xml2dot.xsl
  33. share/bison/xslt/xml2text.xsl
  34. share/bison/xslt/xml2xhtml.xsl
  35. share/doc/bison/AUTHORS
  36. share/doc/bison/COPYING
  37. share/doc/bison/NEWS
  38. share/doc/bison/README
  39. share/doc/bison/THANKS
  40. share/doc/bison/TODO
  41. share/doc/bison/examples/c/glr/Makefile
  42. share/doc/bison/examples/c/glr/README.md
  43. share/doc/bison/examples/c/glr/c++-types.y
  44. share/doc/bison/examples/d/calc/Makefile
  45. share/doc/bison/examples/d/calc/calc.y
  46. share/doc/bison/examples/d/simple/Makefile
  47. share/doc/bison/examples/d/simple/calc.y
  48. share/examples/bison/README.md
  49. share/examples/bison/c++/Makefile
  50. share/examples/bison/c++/README.md
  51. share/examples/bison/c++/calc++/Makefile
  52. share/examples/bison/c++/calc++/README.md
  53. share/examples/bison/c++/calc++/calc++.cc
  54. share/examples/bison/c++/calc++/driver.cc
  55. share/examples/bison/c++/calc++/driver.hh
  56. share/examples/bison/c++/calc++/parser.yy
  57. share/examples/bison/c++/calc++/scanner.ll
  58. share/examples/bison/c++/simple.yy
  59. share/examples/bison/c++/variant-11.yy
  60. share/examples/bison/c++/variant.yy
  61. share/examples/bison/c/README.md
  62. share/examples/bison/c/bistromathic/Makefile
  63. share/examples/bison/c/bistromathic/README.md
  64. share/examples/bison/c/bistromathic/parse.y
  65. share/examples/bison/c/calc/Makefile
  66. share/examples/bison/c/calc/README.md
  67. share/examples/bison/c/calc/calc.y
  68. share/examples/bison/c/lexcalc/Makefile
  69. share/examples/bison/c/lexcalc/README.md
  70. share/examples/bison/c/lexcalc/parse.y
  71. share/examples/bison/c/lexcalc/scan.l
  72. share/examples/bison/c/mfcalc/Makefile
  73. share/examples/bison/c/mfcalc/calc.h
  74. share/examples/bison/c/mfcalc/mfcalc.y
  75. share/examples/bison/c/pushcalc/Makefile
  76. share/examples/bison/c/pushcalc/README.md
  77. share/examples/bison/c/pushcalc/calc.y
  78. share/examples/bison/c/reccalc/Makefile
  79. share/examples/bison/c/reccalc/README.md
  80. share/examples/bison/c/reccalc/parse.y
  81. share/examples/bison/c/reccalc/scan.l
  82. share/examples/bison/c/rpcalc/Makefile
  83. share/examples/bison/c/rpcalc/rpcalc.y
  84. share/examples/bison/d/README.md
  85. share/examples/bison/java/README.md
  86. share/examples/bison/java/calc/Calc.y
  87. share/examples/bison/java/calc/Makefile
  88. share/examples/bison/java/simple/Calc.y
  89. share/examples/bison/java/simple/Makefile
  90. share/locale/af/LC_MESSAGES/bison-gnulib.mo
  91. share/locale/ast/LC_MESSAGES/bison-runtime.mo
  92. share/locale/be/LC_MESSAGES/bison-gnulib.mo
  93. share/locale/bg/LC_MESSAGES/bison-gnulib.mo
  94. share/locale/bg/LC_MESSAGES/bison-runtime.mo
  95. share/locale/bg/LC_MESSAGES/bison.mo
  96. share/locale/ca/LC_MESSAGES/bison-gnulib.mo
  97. share/locale/ca/LC_MESSAGES/bison-runtime.mo
  98. share/locale/ca/LC_MESSAGES/bison.mo
  99. share/locale/cs/LC_MESSAGES/bison-gnulib.mo
  100. share/locale/da/LC_MESSAGES/bison-gnulib.mo
  101. share/locale/da/LC_MESSAGES/bison-runtime.mo
  102. share/locale/da/LC_MESSAGES/bison.mo
  103. share/locale/de/LC_MESSAGES/bison-gnulib.mo
  104. share/locale/de/LC_MESSAGES/bison-runtime.mo
  105. share/locale/de/LC_MESSAGES/bison.mo
  106. share/locale/el/LC_MESSAGES/bison-gnulib.mo
  107. share/locale/el/LC_MESSAGES/bison-runtime.mo
  108. share/locale/el/LC_MESSAGES/bison.mo
  109. share/locale/eo/LC_MESSAGES/bison-gnulib.mo
  110. share/locale/eo/LC_MESSAGES/bison-runtime.mo
  111. share/locale/eo/LC_MESSAGES/bison.mo
  112. share/locale/es/LC_MESSAGES/bison-gnulib.mo
  113. share/locale/es/LC_MESSAGES/bison-runtime.mo
  114. share/locale/es/LC_MESSAGES/bison.mo
  115. share/locale/et/LC_MESSAGES/bison-gnulib.mo
  116. share/locale/et/LC_MESSAGES/bison-runtime.mo
  117. share/locale/et/LC_MESSAGES/bison.mo
  118. share/locale/eu/LC_MESSAGES/bison-gnulib.mo
  119. share/locale/fi/LC_MESSAGES/bison-gnulib.mo
  120. share/locale/fi/LC_MESSAGES/bison-runtime.mo
  121. share/locale/fi/LC_MESSAGES/bison.mo
  122. share/locale/fr/LC_MESSAGES/bison-gnulib.mo
  123. share/locale/fr/LC_MESSAGES/bison-runtime.mo
  124. share/locale/fr/LC_MESSAGES/bison.mo
  125. share/locale/ga/LC_MESSAGES/bison-gnulib.mo
  126. share/locale/ga/LC_MESSAGES/bison-runtime.mo
  127. share/locale/ga/LC_MESSAGES/bison.mo
  128. share/locale/gl/LC_MESSAGES/bison-gnulib.mo
  129. share/locale/gl/LC_MESSAGES/bison-runtime.mo
  130. share/locale/hr/LC_MESSAGES/bison-runtime.mo
  131. share/locale/hr/LC_MESSAGES/bison.mo
  132. share/locale/hu/LC_MESSAGES/bison-gnulib.mo
  133. share/locale/hu/LC_MESSAGES/bison-runtime.mo
  134. share/locale/ia/LC_MESSAGES/bison-runtime.mo
  135. share/locale/id/LC_MESSAGES/bison-runtime.mo
  136. share/locale/id/LC_MESSAGES/bison.mo
  137. share/locale/it/LC_MESSAGES/bison-gnulib.mo
  138. share/locale/it/LC_MESSAGES/bison-runtime.mo
  139. share/locale/it/LC_MESSAGES/bison.mo
  140. share/locale/ja/LC_MESSAGES/bison-gnulib.mo
  141. share/locale/ja/LC_MESSAGES/bison-runtime.mo
  142. share/locale/ja/LC_MESSAGES/bison.mo
  143. share/locale/ko/LC_MESSAGES/bison-gnulib.mo
  144. share/locale/ky/LC_MESSAGES/bison-runtime.mo
  145. share/locale/lt/LC_MESSAGES/bison-runtime.mo
  146. share/locale/lv/LC_MESSAGES/bison-runtime.mo
  147. share/locale/ms/LC_MESSAGES/bison-gnulib.mo
  148. share/locale/ms/LC_MESSAGES/bison-runtime.mo
  149. share/locale/ms/LC_MESSAGES/bison.mo
  150. share/locale/nb/LC_MESSAGES/bison-gnulib.mo
  151. share/locale/nb/LC_MESSAGES/bison-runtime.mo
  152. share/locale/nb/LC_MESSAGES/bison.mo
  153. share/locale/nl/LC_MESSAGES/bison-gnulib.mo
  154. share/locale/nl/LC_MESSAGES/bison-runtime.mo
  155. share/locale/nl/LC_MESSAGES/bison.mo
  156. share/locale/pl/LC_MESSAGES/bison-gnulib.mo
  157. share/locale/pl/LC_MESSAGES/bison-runtime.mo
  158. share/locale/pl/LC_MESSAGES/bison.mo
  159. share/locale/pt/LC_MESSAGES/bison-gnulib.mo
  160. share/locale/pt/LC_MESSAGES/bison-runtime.mo
  161. share/locale/pt/LC_MESSAGES/bison.mo
  162. share/locale/pt_BR/LC_MESSAGES/bison-gnulib.mo
  163. share/locale/pt_BR/LC_MESSAGES/bison-runtime.mo
  164. share/locale/pt_BR/LC_MESSAGES/bison.mo
  165. share/locale/ro/LC_MESSAGES/bison-gnulib.mo
  166. share/locale/ro/LC_MESSAGES/bison-runtime.mo
  167. share/locale/ro/LC_MESSAGES/bison.mo
  168. share/locale/ru/LC_MESSAGES/bison-gnulib.mo
  169. share/locale/ru/LC_MESSAGES/bison-runtime.mo
  170. share/locale/ru/LC_MESSAGES/bison.mo
  171. share/locale/rw/LC_MESSAGES/bison-gnulib.mo
  172. share/locale/sk/LC_MESSAGES/bison-gnulib.mo
  173. share/locale/sl/LC_MESSAGES/bison-gnulib.mo
  174. share/locale/sl/LC_MESSAGES/bison-runtime.mo
  175. share/locale/sq/LC_MESSAGES/bison-runtime.mo
  176. share/locale/sr/LC_MESSAGES/bison-gnulib.mo
  177. share/locale/sr/LC_MESSAGES/bison-runtime.mo
  178. share/locale/sr/LC_MESSAGES/bison.mo
  179. share/locale/sv/LC_MESSAGES/bison-gnulib.mo
  180. share/locale/sv/LC_MESSAGES/bison-runtime.mo
  181. share/locale/sv/LC_MESSAGES/bison.mo
  182. share/locale/ta/LC_MESSAGES/bison-runtime.mo
  183. share/locale/th/LC_MESSAGES/bison-runtime.mo
  184. share/locale/tr/LC_MESSAGES/bison-gnulib.mo
  185. share/locale/tr/LC_MESSAGES/bison-runtime.mo
  186. share/locale/tr/LC_MESSAGES/bison.mo
  187. share/locale/uk/LC_MESSAGES/bison-gnulib.mo
  188. share/locale/uk/LC_MESSAGES/bison-runtime.mo
  189. share/locale/uk/LC_MESSAGES/bison.mo
  190. share/locale/vi/LC_MESSAGES/bison-gnulib.mo
  191. share/locale/vi/LC_MESSAGES/bison-runtime.mo
  192. share/locale/vi/LC_MESSAGES/bison.mo
  193. share/locale/zh_CN/LC_MESSAGES/bison-gnulib.mo
  194. share/locale/zh_CN/LC_MESSAGES/bison-runtime.mo
  195. share/locale/zh_CN/LC_MESSAGES/bison.mo
  196. share/locale/zh_TW/LC_MESSAGES/bison-gnulib.mo
  197. share/locale/zh_TW/LC_MESSAGES/bison-runtime.mo
  198. share/locale/zh_TW/LC_MESSAGES/bison.mo
  199. share/man/man1/bison.1.gz
  200. @owner
  201. @group
  202. @mode
Collapse this list.
USE_RC_SUBR (Service Scripts)
  • no SUBR information found for this port
Dependency lines:
  • bison>0:devel/bison
To install the port:
cd /usr/ports/devel/bison/ && make install clean
To add the package, run one of these commands:
  • pkg install devel/bison
  • pkg install bison
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: bison
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1632690789 SHA256 (bison-3.8.2.tar.xz) = 9bba0214ccf7f1079c5d59210045227bcf619519840ebfa80cd3849cff5a5bf2 SIZE (bison-3.8.2.tar.xz) = 2817324

Packages (timestamps in pop-ups are UTC):
bison
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest3.8.2_2,13.8.2_2,13.6.4,13.8.2_2,13.8.2_2,1n/an/an/a
FreeBSD:13:quarterly3.8.2_2,13.8.2_2,13.8.2,13.8.2_2,13.8.2_2,1n/an/an/a
FreeBSD:14:latest3.8.2_2,13.8.2_2,13.8.2,13.8.2_2,13.8.2_2,13.8.2,1-3.8.2,1
FreeBSD:14:quarterly3.8.2_2,13.8.2_2,1-3.8.2_2,13.8.2_2,13.8.2,13.8.2,13.8.2,1
FreeBSD:15:latest3.8.2_2,13.8.2_2,1n/a3.8.2_2,1n/an/a3.8.2_1,13.8.2_1,1
FreeBSD:15:quarterly3.8.2_2,13.8.2_2,1n/a-n/an/a--
FreeBSD:16:latest3.8.2_2,13.8.2_2,1n/a-n/an/a--
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. m4>=1.4.16,1 : devel/m4
  2. indexinfo : print/indexinfo
  3. libtextstyle>=0.21 : devel/libtextstyle
  4. gmake>=4.4.1 : devel/gmake
  5. gettext-runtime>=0.22_1 : devel/gettext-runtime
  6. msgfmt : devel/gettext-tools
  7. perl5>=5.36<5.37 : lang/perl5.36
Runtime dependencies:
  1. m4>=1.4.16,1 : devel/m4
  2. indexinfo : print/indexinfo
Library dependencies:
  1. libtextstyle.so : devel/libtextstyle
  2. libintl.so : devel/gettext-runtime
This port is required by:
for Build
  1. astro/kosmindoormap
  2. audio/csound
  3. audio/linuxsampler
  4. audio/rezound
  5. benchmarks/iorate
  6. biology/sra-tools
  7. biology/viennarna
Expand this list (675 items / 668 hidden - sorry, this count includes any deleted ports)
  1. Collapse this list).
  2. cad/adms
  3. cad/cascade-compiler
  4. cad/gmsh
  5. cad/iverilog
  6. cad/openroad
  7. cad/openscad
  8. cad/openscad-devel
  9. cad/qucs-s
  10. cad/qucsator
  11. cad/verilator
  12. cad/xschem
  13. cad/xyce
  14. cad/yosys
  15. comms/cyclonedds
  16. converters/bibtexconv
  17. databases/libmemcached
  18. databases/mariadb1011-client
  19. databases/mariadb1011-server
  20. databases/mariadb106-client
  21. databases/mariadb106-server
  22. databases/mariadb114-client
  23. databases/mariadb114-server
  24. databases/mariadb118-client
  25. databases/mariadb118-server
  26. databases/mdbtools
  27. databases/mysql80-client
  28. databases/mysql80-server
  29. databases/mysql84-client
  30. databases/mysql84-server
  31. databases/mysql96-client
  32. databases/mysql96-server
  33. databases/mysql97-client
  34. databases/mysql97-server
  35. databases/postgresql-plproxy
  36. databases/postgresql14-contrib
  37. databases/postgresql15-contrib
  38. databases/postgresql16-contrib
  39. databases/postgresql17-client
  40. databases/postgresql17-contrib
  41. databases/postgresql17-docs
  42. databases/postgresql17-plperl
  43. databases/postgresql17-plpython
  44. databases/postgresql17-pltcl
  45. databases/postgresql17-server
  46. databases/postgresql18-client
  47. databases/postgresql18-contrib
  48. databases/postgresql18-docs
  49. databases/postgresql18-plperl
  50. databases/postgresql18-plpython
  51. databases/postgresql18-pltcl
  52. databases/postgresql18-server
  53. databases/proxysql
  54. databases/slony1v2
  55. databases/xtrabackup80
  56. databases/xtrabackup84
  57. deskutils/recoll
  58. devel/avr-gcc
  59. devel/babeltrace
  60. devel/bitkeeper
  61. devel/cbmc
  62. devel/cdecl
  63. devel/clixon
  64. devel/doxygen
  65. devel/eclipse-titan
  66. devel/electron37
  67. devel/electron38
  68. devel/electron39
  69. devel/electron40
  70. devel/electron41
  71. devel/electron42
  72. devel/fbthrift
  73. devel/ffs
  74. devel/fhist
  75. devel/gaa
  76. devel/gcc-msp430-ti-toolchain
  77. devel/gobject-introspection
  78. devel/hp48cc
  79. devel/inja
  80. devel/intel-graphics-compiler
  81. devel/ispc
  82. devel/kdevelop-pg-qt
  83. devel/kf5-kservice
  84. devel/kf5-solid
  85. devel/kf6-solid
  86. devel/kopeninghours
  87. devel/libexplain
  88. devel/libgraphqlparser
  89. devel/msitools
  90. devel/nsgenbind
  91. devel/pire
  92. devel/rgbds
  93. devel/template-glib
  94. devel/thrift
  95. devel/thrift-c_glib
  96. devel/thrift-cpp
  97. devel/tigcc
  98. devel/xtensa-esp-elf
  99. editors/abiword
  100. editors/libreoffice
  101. editors/openoffice-4
  102. editors/openoffice-devel
  103. editors/xcoral
  104. emulators/einstein-newton
  105. emulators/qemu-devel
  106. emulators/qemu-powernv
  107. emulators/qemu-user-static
  108. emulators/qemu-user-static-devel
  109. emulators/wine
  110. emulators/wine-devel
  111. emulators/wine-proton
  112. emulators/xen-kernel
  113. filesystems/libblkid
  114. filesystems/lkl
  115. finance/beancount
  116. french/aster
  117. games/dreamchess
  118. games/flobopuyo
  119. games/gnubg
  120. games/quakeforge
  121. games/stonesoup
  122. games/vultures-eye
  123. games/warzone2100
  124. graphics/cfdg
  125. graphics/cptutils
  126. graphics/digikam
  127. graphics/flasm
  128. graphics/graphviz
  129. graphics/gthumb
  130. graphics/igt-gpu-tools
  131. graphics/kseexpr
  132. graphics/libosmesa
  133. graphics/mesa-devel
  134. graphics/mesa-dri
  135. graphics/mesa-gallium-va
  136. graphics/mesa-gallium-vdpau
  137. graphics/mesa-gallium-xa
  138. graphics/mesa-libs
  139. graphics/nip2
  140. graphics/opendx
  141. graphics/openshadinglanguage
  142. graphics/pixie
  143. graphics/py-openshadinglanguage
  144. graphics/qgis
  145. graphics/qgis-ltr
  146. graphics/seexpr
  147. graphics/sswf
  148. graphics/tikzit
  149. java/openjfx14
  150. lang/basic256
  151. lang/clover
  152. lang/gnat12
  153. lang/gnat13
  154. lang/gnat14
  155. lang/hla
  156. lang/lfortran
  157. lang/maude
  158. lang/mono5.10
  159. lang/mono5.20
  160. lang/mono6.8
  161. lang/php85
  162. lang/ptoc
  163. lang/sdcc
  164. lang/vala
  165. lang/yabasic
  166. mail/filtermail
  167. mail/libcmime
  168. mail/mairix
  169. mail/rmilter
  170. math/asymptote
  171. math/chuffed
  172. math/eukleides
  173. math/freefem++
  174. math/gecode
  175. math/igraph
  176. math/jags
  177. math/kalk
  178. math/labplot
  179. math/minizinc
  180. math/mpsolve
  181. math/openturns
  182. math/pari
  183. math/pcalc
  184. math/py-igraph
  185. math/rumur
  186. math/scipoptsuite
  187. math/stp
  188. math/zimpl
  189. misc/adios2
  190. misc/boxes
  191. misc/libuuid
  192. misc/lifelines
  193. misc/ola
  194. multimedia/gstreamer1
  195. multimedia/gstreamer1-editing-services
  196. multimedia/gstreamer1-libav
  197. multimedia/gstreamer1-rtsp-server
  198. multimedia/libaacs
  199. net/apinger
  200. net/asterisk20
  201. net/asterisk22
  202. net/bird2
  203. net/bird3
  204. net/daq
  205. net/dictd
  206. net/freediameter
  207. net/frr10
  208. net/frr8
  209. net/frr9
  210. net/kamailio
  211. net/kf5-kcalendarcore
  212. net/kf6-kholidays
  213. net/lambdamoo
  214. net/libpcap
  215. net/ntpsec
  216. net/olsrd
  217. net/packetdrill
  218. net/samba416
  219. net/samba419
  220. net/samba420
  221. net/samba422
  222. net/samba423
  223. net/tac_plus4
  224. net/tcptrace
  225. net/tcpview
  226. net/yate
  227. net/yptransitd
  228. net-mgmt/argus
  229. net-mgmt/argus-clients
  230. net-mgmt/docsis
  231. net-mgmt/ettercap
  232. net-mgmt/icinga2
  233. net-mgmt/irrtoolset
  234. net-p2p/amule
  235. print/lilypond
  236. print/lilypond-devel
  237. print/miktex
  238. science/code_saturne
  239. science/dynare
  240. science/mcstas
  241. science/mcxtrace
  242. science/minc2
  243. science/py-mmcif
  244. science/qcl
  245. science/rdkit
  246. security/aide
  247. security/libreswan
  248. security/oidentd
  249. security/opencryptoki
  250. security/openvas
  251. security/pkcs11-tools
  252. security/snort
  253. security/zeek
  254. shells/bash
  255. shells/bash-static
  256. shells/bashc
  257. sysutils/am-utils
  258. sysutils/dtc
  259. sysutils/fluent-bit
  260. sysutils/grub2-bhyve
  261. sysutils/grub2-efi
  262. sysutils/grub2-pcbsd
  263. sysutils/kf6-kuserfeedback
  264. sysutils/monit
  265. sysutils/nix
  266. sysutils/u-boot-a13-olinuxino
  267. sysutils/u-boot-a64-olinuxino
  268. sysutils/u-boot-bananapi
  269. sysutils/u-boot-bananapi-r2-pro
  270. sysutils/u-boot-bananapim2
  271. sysutils/u-boot-beaglebone
  272. sysutils/u-boot-bhyve-arm64
  273. sysutils/u-boot-bhyve-riscv
  274. sysutils/u-boot-chip
  275. sysutils/u-boot-clearfog
  276. sysutils/u-boot-cubieboard
  277. sysutils/u-boot-cubieboard2
  278. sysutils/u-boot-cubox-hummingboard
  279. sysutils/u-boot-firefly-rk3399
  280. sysutils/u-boot-master
  281. sysutils/u-boot-nanopi-a64
  282. sysutils/u-boot-nanopi-m1plus
  283. sysutils/u-boot-nanopi-neo
  284. sysutils/u-boot-nanopi-neo-air
  285. sysutils/u-boot-nanopi-neo2
  286. sysutils/u-boot-nanopi-r2s
  287. sysutils/u-boot-nanopi-r4s
  288. sysutils/u-boot-nanopi-r5s
  289. sysutils/u-boot-nanopi-r6s
  290. sysutils/u-boot-olimex-a20-som-evb
  291. sysutils/u-boot-olinuxino-lime
  292. sysutils/u-boot-olinuxino-lime2
  293. sysutils/u-boot-olinuxino-lime2-emmc
  294. sysutils/u-boot-orangepi-one
  295. sysutils/u-boot-orangepi-pc
  296. sysutils/u-boot-orangepi-pc-plus
  297. sysutils/u-boot-orangepi-pc2
  298. sysutils/u-boot-orangepi-plus-2e
  299. sysutils/u-boot-orangepi-r1
  300. sysutils/u-boot-orangepi-zero
  301. sysutils/u-boot-orangepi-zero-plus
  302. sysutils/u-boot-pcduino3
  303. sysutils/u-boot-pine-h64
  304. sysutils/u-boot-pine64
  305. sysutils/u-boot-pine64-lts
  306. sysutils/u-boot-pinebook
  307. sysutils/u-boot-pinebookpro
  308. sysutils/u-boot-qemu-arm
  309. sysutils/u-boot-qemu-arm64
  310. sysutils/u-boot-qemu-riscv64
  311. sysutils/u-boot-quartz64-a
  312. sysutils/u-boot-quartz64-b
  313. sysutils/u-boot-radxa-zero3
  314. sysutils/u-boot-riotboard
  315. sysutils/u-boot-rock-pi-4
  316. sysutils/u-boot-rock64
  317. sysutils/u-boot-rockpro64
  318. sysutils/u-boot-rpi
  319. sysutils/u-boot-rpi-0-w
  320. sysutils/u-boot-rpi-arm64
  321. sysutils/u-boot-rpi2
  322. sysutils/u-boot-rpi3
  323. sysutils/u-boot-rpi3-32
  324. sysutils/u-boot-rpi4
  325. sysutils/u-boot-sifive-fu540
  326. sysutils/u-boot-sifive-fu740
  327. sysutils/u-boot-sinovoip-bpi-m3
  328. sysutils/u-boot-sopine
  329. sysutils/u-boot-sopine-spi
  330. sysutils/u-boot-starfive-visionfive2
  331. sysutils/u-boot-tools
  332. sysutils/u-boot-wandboard
  333. sysutils/xen-guest-tools
  334. sysutils/xen-tools
  335. textproc/dict
  336. textproc/htmltolatex
  337. textproc/kmflcomp
  338. textproc/libcue
  339. textproc/xxdiff
  340. www/chromium
  341. www/h2o
  342. www/iridium
  343. www/mod_auth_gssapi
  344. www/mod_php85
  345. www/netsurf
  346. www/qt5-webengine
  347. www/qt6-webengine
  348. www/ungoogled-chromium
  349. www/webkit2-gtk
  350. x11/libxkbcommon
  351. x11/rofi
  352. x11-clocks/buici-clock
  353. x11-toolkits/libwnck
  354. x11-toolkits/libwnck3
  355. x11-wm/wlmaker
  356. Collapse this list.

Deleted ports which required this port:

Expand this list of 314 deleted ports
  1. audio/csound6*
  2. biology/chemeq*
  3. cad/cvc*
  4. cad/opensta*
  5. cad/qucs*
  6. databases/drizzle*
  7. databases/firebird20-client*
  8. databases/firebird20-server*
  9. databases/firebird21-client*
  10. databases/firebird21-server*
  11. databases/mariadb100-client*
  12. databases/mariadb100-server*
  13. databases/mariadb101-client*
  14. databases/mariadb101-server*
  15. databases/mariadb102-client*
  16. databases/mariadb102-server*
  17. databases/mariadb103-client*
  18. databases/mariadb103-server*
  19. databases/mariadb104-client*
  20. databases/mariadb104-server*
  21. databases/mariadb105-client*
  22. databases/mariadb105-server*
  23. databases/mariadb114-connector-c*
  24. databases/monetdb*
  25. databases/mysql56-client*
  26. databases/mysql56-server*
  27. databases/mysql57-client*
  28. databases/mysql57-server*
  29. databases/mysql81-client*
  30. databases/mysql81-server*
  31. databases/mysql90-client*
  32. databases/mysql90-server*
  33. databases/mysql91-client*
  34. databases/mysql91-server*
  35. databases/mysql94-client*
  36. databases/mysql94-server*
  37. databases/mysqlwsrep56-server*
  38. databases/mysqlwsrep57-server*
  39. databases/percona-pam-for-mysql*
  40. databases/percona55-client*
  41. databases/percona55-server*
  42. databases/percona56-client*
  43. databases/percona56-server*
  44. databases/percona57-client*
  45. databases/percona57-pam-for-mysql*
  46. databases/percona57-server*
  47. databases/postgis*
  48. databases/postgresql10-contrib*
  49. databases/postgresql11-contrib*
  50. databases/postgresql12-contrib*
  51. databases/postgresql13-contrib*
  52. databases/postgresql82-contrib*
  53. databases/postgresql83-contrib*
  54. databases/postgresql84-contrib*
  55. databases/postgresql90-contrib*
  56. databases/postgresql91-contrib*
  57. databases/postgresql92-contrib*
  58. databases/postgresql93-contrib*
  59. databases/postgresql94-contrib*
  60. databases/postgresql95-contrib*
  61. databases/postgresql96-contrib*
  62. databases/slony1*
  63. databases/xtrabackup*
  64. databases/xtrabackup8*
  65. databases/xtrabackup81*
  66. deskutils/kdepim3*
  67. deskutils/kuserfeedback*
  68. devel/aegis*
  69. devel/anjuta*
  70. devel/arm-eabi-gcc*
  71. devel/arm-rtems-gcc*
  72. devel/as31*
  73. devel/avr-gcc-3*
  74. devel/avr-gcc-devel*
  75. devel/cloudabi-binutils*
  76. devel/cloudabi-binutils-aarch64*
  77. devel/cloudabi-binutils-x86_64*
  78. devel/cross-gcc*
  79. devel/electron11*
  80. devel/electron12*
  81. devel/electron13*
  82. devel/electron17*
  83. devel/electron18*
  84. devel/electron19*
  85. devel/electron21*
  86. devel/electron22*
  87. devel/electron23*
  88. devel/electron24*
  89. devel/electron25*
  90. devel/electron26*
  91. devel/electron27*
  92. devel/electron28*
  93. devel/electron29*
  94. devel/electron30*
  95. devel/electron31*
  96. devel/electron32*
  97. devel/electron33*
  98. devel/electron34*
  99. devel/electron35*
  100. devel/electron36*
  101. devel/electron4*
  102. devel/electron5*
  103. devel/electron6*
  104. devel/electron7*
  105. devel/electron9*
  106. devel/i386-linux-binutils*
  107. devel/i386-rtems-gcc*
  108. devel/kdevelop-pg-qt-kde4*
  109. devel/kscope*
  110. devel/libbonobo*
  111. devel/m68k-rtems-gcc*
  112. devel/mingw32-gcc*
  113. devel/mips-rtems-gcc*
  114. devel/msp430-gcc*
  115. devel/pinba_engine*
  116. devel/powerpc-rtems-gcc*
  117. devel/ptlib26*
  118. devel/pwlib*
  119. devel/py-bison*
  120. devel/ruby-rbison*
  121. devel/rubygem-ripper*
  122. devel/sdts++*
  123. devel/sfslite*
  124. devel/sfslite-dbg*
  125. devel/sfslite-noopt*
  126. devel/sh-rtems-gcc*
  127. devel/sparc-rtems-gcc*
  128. devel/xtensa-esp32-elf*
  129. devel/yosys*
  130. dns/knot*
  131. dns/knot1*
  132. dns/powerdns-devel*
  133. editors/lfhex*
  134. editors/libreoffice-legacy*
  135. editors/libreoffice4*
  136. editors/libreoffice6*
  137. editors/openoffice-3*
  138. editors/openoffice-3-devel*
  139. editors/openoffice.org-3*
  140. editors/openoffice.org-3-RC*
  141. editors/openoffice.org-3-devel*
  142. editors/openoffice.org-vcltesttool*
  143. editors/xmleditor*
  144. emulators/nonpareil*
  145. emulators/qemu-sbruno*
  146. emulators/qemu2*
  147. emulators/qemu30*
  148. emulators/qemu31*
  149. emulators/qemu40*
  150. emulators/qemu41*
  151. emulators/qemu42*
  152. emulators/qemu5*
  153. emulators/qemu50*
  154. emulators/wine-compholio*
  155. emulators/wine-staging*
  156. emulators/wine7*
  157. emulators/wine8*
  158. games/goldencheetah*
  159. games/kaid*
  160. games/noegnud-littlehack*
  161. games/noegnud-nethack*
  162. games/noegnud-nethack-deet*
  163. games/noegnud-slashem*
  164. games/secretmaryochronicles*
  165. games/stonesoup-sdl*
  166. games/windstille*
  167. graphics/aqsis*
  168. graphics/dri*
  169. graphics/ender*
  170. graphics/fractorama*
  171. graphics/gbm*
  172. graphics/kipi-plugin-panorama*
  173. graphics/libEGL*
  174. graphics/libGL*
  175. graphics/libglapi*
  176. graphics/libglesv2*
  177. graphics/libglut*
  178. graphics/libxatracker*
  179. graphics/luxrays*
  180. graphics/luxrender*
  181. graphics/luxrender14*
  182. graphics/ming*
  183. graphics/p5-ming*
  184. graphics/picviz*
  185. graphics/sketch*
  186. graphics/tumble*
  187. graphics/vkd3d*
  188. japanese/ming*
  189. japanese/xjtext*
  190. java/jmp*
  191. java/openjfx8-devel*
  192. lang/gcc34*
  193. lang/gcc42*
  194. lang/gdc*
  195. lang/gnat*
  196. lang/harbour*
  197. lang/hiphop-php*
  198. lang/hugs*
  199. lang/llvm-gcc4*
  200. lang/ohugs*
  201. lang/parrot*
  202. lang/phantomjs*
  203. lang/pike76*
  204. lang/pike78*
  205. lang/q*
  206. lang/qore*
  207. lang/rakudo*
  208. lang/rubinius*
  209. lang/spl*
  210. lang/vala-vapigen*
  211. mail/esmtp*
  212. mail/libmapi*
  213. math/abakus*
  214. math/cvc3*
  215. math/foma*
  216. math/gcalctool*
  217. math/graphthing*
  218. math/gringo*
  219. math/py-python-igraph*
  220. misc/libmcal*
  221. multimedia/avinfo*
  222. multimedia/gstreamer*
  223. multimedia/gstreamer-qt4*
  224. multimedia/gstreamer1-qt*
  225. multimedia/gstreamer1-qt4*
  226. multimedia/gstreamer1-qt5*
  227. multimedia/gstreamer1-vaapi*
  228. multimedia/moonlight*
  229. net/asterisk*
  230. net/asterisk10*
  231. net/asterisk11*
  232. net/asterisk13*
  233. net/asterisk14*
  234. net/asterisk15*
  235. net/asterisk16*
  236. net/asterisk18*
  237. net/bird*
  238. net/bird-devel*
  239. net/bird6*
  240. net/cphone*
  241. net/freeswitch-core*
  242. net/freeswitch-core-devel*
  243. net/frr*
  244. net/frr3*
  245. net/frr4*
  246. net/frr5*
  247. net/frr6*
  248. net/frr7*
  249. net/glusterfs*
  250. net/kcalcore*
  251. net/nfs-ganesha*
  252. net/ohphone*
  253. net/openh323*
  254. net/openmcu*
  255. net/opensips*
  256. net/twinkle*
  257. net/yate-devel*
  258. net-im/gtkyahoo*
  259. net-im/telepathy-logger-qt4*
  260. net-im/telepathy-logger-qt5*
  261. net-mgmt/argus3*
  262. net-mgmt/argus3-clients*
  263. net-mgmt/cflowd*
  264. net-mgmt/netmond*
  265. net-p2p/amule-devel*
  266. news/xrn*
  267. palm/gnome-pilot-conduits*
  268. print/libgnomeprint*
  269. russian/ircd-hybrid*
  270. security/bro*
  271. security/broccoli*
  272. security/fastd*
  273. security/fastd-devel*
  274. security/ike*
  275. security/nessus-libnasl*
  276. security/nessus-libraries*
  277. security/openvas-libnasl*
  278. security/openvas-libraries*
  279. security/openvas8-libraries*
  280. security/openvas9-libraries*
  281. security/pbc*
  282. shells/bash-devel*
  283. shells/bash-static-devel*
  284. shells/bash53*
  285. sysutils/fusefs-lkl*
  286. sysutils/grub2*
  287. sysutils/heartbeat*
  288. sysutils/lttng-tools*
  289. sysutils/syslog-ng-incubator*
  290. sysutils/syslog-ng-incubator03*
  291. sysutils/u-boot-duovero*
  292. sysutils/u-boot-pandaboard*
  293. sysutils/u-boot-zedboard*
  294. sysutils/u-boot-zybo*
  295. textproc/confetti*
  296. textproc/libpathan*
  297. textproc/mifluz*
  298. textproc/scrollkeeper*
  299. textproc/syck*
  300. www/egueb*
  301. www/h2o-devel*
  302. www/qt5-webkit*
  303. www/webkit-gtk2*
  304. www/webkit-gtk3*
  305. www/webkit-qt5*
  306. www/webkit2-gtk3*
  307. www/webkit2-gtk4*
  308. x11/libgnome*
  309. x11/rofi-wayland*
  310. x11-toolkits/libgnomeprintui*
  311. x11-toolkits/libgnomeui*
  312. x11-toolkits/libmatewnck*
  313. x11-toolkits/libzvt*
  314. x11-toolkits/vte290*
  315. Collapse this list of deleted ports.
for Run
  1. devel/eclipse-titan

Deleted ports which required this port:

Expand this list of 3 deleted ports
  1. devel/py-bison*
  2. net/freeswitch-core*
  3. net/freeswitch-core-devel*
  4. Collapse this list of deleted ports.
* - deleted ports are only shown under the This port is required by section. It was harder to do for the Required section. Perhaps later...

Configuration Options:
===> The following configuration options are available for bison-3.8.2_2,1: DOCS=on: Build and/or install documentation EXAMPLES=on: Build and/or install examples NLS=on: Native Language Support ===> Use 'make config' to modify these settings
Options name:
devel_bison
USES:
charsetfix compiler:c11 cpe gmake iconv localbase perl5 tar:xz gettext
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (11 items)
Collapse this list.
  1. ftp://ftp.fu-berlin.de/unix/gnu/bison/
  2. ftp://ftp.mirrorservice.org/sites/ftp.gnu.org/gnu/bison/
  3. ftp://mirrors.rit.edu/gnu/bison/
  4. http://ftp.halifax.rwth-aachen.de/gnu/bison/
  5. http://ftp.kddilabs.jp/GNU/gnu/bison/
  6. http://mirror.navercorp.com/gnu/bison/
  7. https://ftp.gnu.org/gnu/bison/
  8. https://ftpmirror.gnu.org/bison/
  9. https://mirror.netcologne.de/gnu/bison/
  10. https://mirrors.kernel.org/gnu/bison/
  11. https://www.nic.funet.fi/pub/gnu/gnu/bison/
Collapse this list.

There are no commits on branch 2022Q3 for this port