aboutsummaryrefslogtreecommitdiff
path: root/security/barnyard2
Commit message (Collapse)AuthorAgeFilesLines
* security/barnyard2*: Mark DEPRECATEDMuhammad Moinur Rahman2026-07-081-2/+5
| | | | | | | - Upstream has archived the project in 2024 - This only works with snort2 and support of snort2 is being silently dropped by upstream in favor of snort3 - Set EXPIRATION_DATE 2026-08-07
* */*: Refactor with IGNORE_WITH_MYSQLMuhammad Moinur Rahman2023-12-291-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | - There are multiple ports which has MYSQL options and are non-DEFAULT. Most of the time committers actually forget to check with the OPTION enabled and in some cases they are BROKEN with newr versions of mysql. So test with different versions of mysql and mark IGNOPRE_WITH_MYSQL appropriately. Due to the EOL of 5.7 this has not been checked. - Unbreak sysutils/cfengine* with MySQL 8.0 and later - The primary purpose of running this check is having statistics of the MySQL usability over MariaDB to explore the future possibility of shifting to MariaDB as the default as major ports upstream have moved their codebase to support MariaDB over MySQL. - The following actions will also be taken after the sunset of MySQL 5.7 If a port is broken on all instances of MySQL/MariaDB: - If a port has the option of multiple DB backends and MySQL is the default then the DEFAULT will be changed to PGSQL/SQLITE before 2024Q1. And the OPTION will be removed before 2024Q2. If a MAINTAINER is aware about such cases and want to prefer PGSQL over SQLITE or vice versa please do so at your own accord. Otherwise PGSQL will be preferred over SQLITE. - If a port has the option of multiple DB backends and MySQL is not the default then the the OPTION will be removed before 2024Q1. Approved by: portmgr (blanket)
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* Fix CONFLICTS entries of multiple portsStefan Eßer2022-01-101-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There have been lots of missing CONFLICTS_INSTALL entries, either because conflicting ports were added without updating existing ports, due to name changes of generated packages, due to mis-understanding the format and semantics of the conflicts entries, or just due to typoes in package names. This patch is the result of a comparison of all files contained in the official packages with each other. This comparison was based on packages built with default options and may therefore have missed further conflicts with optionally installed files. Where possible, version numbers in conflicts entries have been generalized, some times taking advantage of the fact that a port cannot conflict with itself (due to logic in bsd.port.mk that supresses the pattern match result in that case). A few ports that set the conflicts variables depending on complex conditions (e.g. port options), have been left unmodified, despite probably containing outdated package names. These changes should only affect the installation of locally built ports, not the package building with poudriere. They should give an early indication of the install conflict in cases where currently the pkg command aborts an installation when it detects that an existing file would be overwritten, Approved by: portmgr (implicit)
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* all: Remove all other $FreeBSD keywords.Mathieu Arnold2021-04-061-2/+0
|
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* security/barnyard2: Remove reference of stale documentationMuhammad Moinur Rahman2021-01-262-6/+5
| | | | | | | | PR: 251625 Submitted by: danmcgrath.ca@gmail.com Notes: svn path=/head/; revision=563007
* security/barnyard2: remove optional dependency on expired security/broccoliRene Ladan2021-01-021-5/+1
| | | | Notes: svn path=/head/; revision=559948
* Move remaining USE_MYSQL, WANT_MYSQL_VER to USES=mysqlTobias Kortkamp2019-11-151-1/+1
| | | | Notes: svn path=/head/; revision=517643
* security/barnyard2: CleanupTobias Kortkamp2019-10-051-4/+1
| | | | | | | | | - Drop nop WANT_PGSQL_VER - Spell TCL_DESC correctly (there is no OPTIONS_DESC) - No need to include bsd.port.options.mk in this port Notes: svn path=/head/; revision=513827
* security/barnyard2: Spell ODBC_CONFIGURE_WITH correctlyTobias Kortkamp2019-09-181-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | The option now actually activates the ODBC code paths but the port fails to build with it. The code seems to lack full support for it in a couple of places, so mark the ODBC option as broken for now. spo_database.c:3547:3: error: use of undeclared identifier 'result' result = 0; ^ spo_database.c:3841:41: warning: incompatible pointer types passing 'SQLINTEGER *' (aka 'int *') to parameter of type 'SQLLEN *' (aka 'long *') [-Wincompatible-pointer-types] if(SQLRowCount(data->u_statement, &data->u_rows) == SQL_SUCCESS) ^~~~~~~~~~~~~ /usr/local/include/sql.h:768:44: note: passing argument to parameter 'RowCount' here SQLLEN *RowCount); ^ spo_database.c:3849:33: error: use of undeclared identifier 'result' result = 0; ^ 1 warning and 2 errors generated. PR: 240237 Approved by: bofh (maintainer timeout, 17 days) Notes: svn path=/head/; revision=512264
* Convert to UCL & cleanup pkg-message (categories s)Mathieu Arnold2019-08-141-2/+6
| | | | Notes: svn path=/head/; revision=508909
* security/barnyard2: Undeprecate BRO optionMuhammad Moinur Rahman2019-02-141-6/+1
| | | | | | | | PR: 235723 Submitted by: leres Notes: svn path=/head/; revision=492914
* security/barnyard2: fix compile with ooption BROMuhammad Moinur Rahman2019-01-2211-3/+298
| | | | | | | | PR: 231265 Submitted by: freebsd@onyphe.io Notes: svn path=/head/; revision=490954
* Deprecate everything that depends on net/GeoIP and everything that dependsAdam Weinberger2019-01-131-0/+7
| | | | | | | on those ports. Notes: svn path=/head/; revision=490213
* security/barnyard2: Fix ambiguous specification of libpcapMuhammad Moinur Rahman2016-08-041-1/+2
| | | | | | | | PR: 211578 Submitted by: marino Notes: svn path=/head/; revision=419628
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* security/barnyard: Update WWW as it has moved to githubMuhammad Moinur Rahman2016-03-061-1/+1
| | | | | | | | PR: 207573 Submitted by: vvelox@vvelox.net Notes: svn path=/head/; revision=410478
* Update ports in the remaining categories to not use GH_COMMIT.Mathieu Arnold2015-05-072-4/+3
| | | | | | | | | | With minor cleanups to make things simpler. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=385665
* Convert to USES=autoreconfTijl Coosemans2015-04-181-4/+1
| | | | Notes: svn path=/head/; revision=384225
* security/barnyard2: Ports cleanupMuhammad Moinur Rahman2015-01-152-6/+5
| | | | | | | | | | | | | | | | - Move DATABASE Backend options to OPTIONS_RADIO as only one backend is supported at a time. MYSQL and MYSQL_SSL will create conflict in previous state - Update pkg-plist to make proper use of @sample - Pass Maintainership [1] PR: 196552 [1] Differential Revision: https://reviews.freebsd.org/D1514 Submitted by: pauls@utdallas.edu [1] Approved by: bapt(mentor) Notes: svn path=/head/; revision=377067
* Switch to USES=pgsqlChris Rees2014-11-221-1/+1
| | | | Notes: svn path=/head/; revision=373091
* Cleanup plistAntoine Brodin2014-11-131-2/+0
| | | | Notes: svn path=/head/; revision=372514
* Use default LIBTOOLIZE_ARGSTijl Coosemans2014-09-131-1/+0
| | | | Notes: svn path=/head/; revision=368126
* security/barnyard2: Remove PRELUDE optionJohn Marino2014-09-071-4/+2
| | | | | | | | The prelude-manager port is unstaged, and its removal is imminent. Before that happens, remove the optional dependency Barnyard2 has on it. Notes: svn path=/head/; revision=367571
* Add DOCS option where PORTDOCS is in plist.Adam Weinberger2014-07-161-1/+1
| | | | Notes: svn path=/head/; revision=362024
* - Add a new OPTION PORT_PCAP to build using libpcap from ports instead of baseRenato Botelho2014-02-171-82/+27
| | | | | | | | | | - Use OPTIONS helpers and simplify Makefile PR: ports/186542 Approved by: Paul Schmehl <pauls@utdallas.edu> (maintainer) Notes: svn path=/head/; revision=344800
* security/barnyard2: update to 1.13William Grzybowski2013-12-043-6/+6
| | | | | | | | PR: ports/184476 Submitted by: maintainer Notes: svn path=/head/; revision=335636
* security/barnyard2: remove BROKEN for one optionWilliam Grzybowski2013-11-021-1/+0
| | | | | | | | PR: ports/183574 Submitted by: Paul Schmehl <pauls utdallas.edu> (maintainer) Notes: svn path=/head/; revision=332471
* security/barnyard2: allow statingWilliam Grzybowski2013-11-012-21/+26
| | | | | | | | | | - Allw staging [1] (based on) PR: ports/183404 [1] Submitted by: Paul Schmehl <pauls utdallas.edu> (maintainer) Notes: svn path=/head/; revision=332399
* - Use USES=tclSunpoet Po-Chuan Hsieh2013-09-221-2/+2
| | | | | | | | | | - While I'm here, add NO_STAGE=yes PR: ports/182250 Submitted by: Paul Schmehl <pauls@utdallas.edu> (maintainer) Notes: svn path=/head/; revision=327850
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | security) Notes: svn path=/head/; revision=327769
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* Fix rc script.Lars Engels2013-05-101-2/+3
| | | | | | | | PR: ports/178488 Submitted by: maintainer Notes: svn path=/head/; revision=317833
* - update to 1.12Jason Helfman2013-02-152-6/+5
| | | | | | | | | | - where here drop default GH_PROJECT variable assignment PR: 176176 Submitted by: maintainer, pauls@utdallas.edu Notes: svn path=/head/; revision=312306
* - update PGSQL option, as only version 9.2 has the correct libraries to buildJason Helfman2013-02-141-5/+6
| | | | | | | | | | | | - rename option MYSQL-SSL -> MYSQL_SSL - fix incorrectly defined option of OPTIONS_DEFAULT within MYSQL_SSL - use ${CP} in favor of cp PR: 176124 Submitted by: maintainer, pauls@utdallas.edu Notes: svn path=/head/; revision=312249
* Update GH_TAGNAME to make the distfile fetchableSteven Kreuzer2013-02-111-1/+1
| | | | | | | | | | again PR: ports/175836 Submitted by: Paul Schmehl <pauls@utdallas.edu> Notes: svn path=/head/; revision=312063
* - revert PORTDOCS change from r308105 - it made this port not DOCS-safeRuslan Makhmatkhanov2012-12-032-8/+1
| | | | | | | | Reported by: sunpoet Feature safe: yes Notes: svn path=/head/; revision=308173
* - update to 1.11Ruslan Makhmatkhanov2012-12-025-46/+89
| | | | | | | | | | | - add new port options PR: 174024 Submitted by: Paul Schmehl <pauls@utdallas.edu> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=308105
* - Update to 1.10Jason E. Hale2012-10-126-240/+75
| | | | | | | | | | | | | | | | | - Convert to new options framework - Allow for any available version of TCL to be used - Add LICENSE - Remove indefinite article from COMMENT, update - Mark MAKE_JOBS_SAFE - Trim Makefile header PR: ports/172456 Submitted by: Paul Schmehl <pauls@utdallas.edu> (maintainer) Approved by: makc (mentor) Feature safe: yes Notes: svn path=/head/; revision=305773
* Move the rc.d scripts of the form *.sh.in to *.inDoug Barton2012-08-052-4/+4
| | | | | | | | | Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op Notes: svn path=/head/; revision=302141
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. Notes: svn path=/head/; revision=289156
* - Selectivly adds mysql/and/or postgresql to rc script 'REQUIRES:'Michael Scheidell2012-01-062-3/+7
| | | | | | | | | PR: ports/163825 Submitted by: scheidell Approved by: pauls@utdallas.edu (maintainer), gabor (mentor, implicit) Notes: svn path=/head/; revision=288647
* - Fix support of status and restart for multi-config rc scriptGabor Kovesdan2011-10-121-1/+6
| | | | | | | | | PR: ports/161168 Submitted by: Michael Scheidell <scheidell@secnap.net> Approved by: Paul Schmehl <pauls@utdallas.edu> (maintainer) Notes: svn path=/head/; revision=283409
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-1/+0
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* Add support for running multiple instancesRyan Steinmetz2011-08-192-44/+23
| | | | | | | | | | | Adjust whitespace in Makefile PR: ports/159892 Submitted by: Paul Schmehl <pauls@utdallas.edu> (maintainer) Approved by: tabthorpe (mentor) Notes: svn path=/head/; revision=280012
* - add patch to barnyard2 to allow build with postgresql and tclOlli Hauer2011-05-152-8/+200
| | | | | | | | | | | | | | | | (reported and fixed upstream) - display option TCL only for Master port, it makes no sense if the slave can de-select a required option - remove broken barnyard-sguil (master port was removed 2011-04-04) - add new port barnyard2-sguil [1] - add entry to MOVED PR: ports/156188 [1] Submitted by: me Approved by: maintainer timeout Notes: svn path=/head/; revision=274149
* - add OPTION tcl (default off) to allow sguil* ports build against barnyard2Olli Hauer2011-05-141-1/+8
| | | | | | | | | PR: ports/156341 Submitted by: Brandon <m37a11 _at_ gmail.com> Approved by: maintainer timeout Notes: svn path=/head/; revision=274123