aboutsummaryrefslogtreecommitdiff
path: root/security/fwbuilder
Commit message (Collapse)AuthorAgeFilesLines
* */*: Remove redundant '-*' from CONFLICTS definitionsStefan Eßer2021-11-251-2/+2
| | | | | | | | | The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Approved by: portmgr (blanket)
* *: fix tab vs. space issues, and comments according to the guide.Jimmy Olgeni2021-10-161-1/+1
|
* cleanup: drop support for EOL FreeBSD 11.XRene Ladan2021-09-301-1/+0
| | | | | | | | | | | | | | | | | Search criteria used: - 11.4 - OSREL* - OSVER* - *_FreeBSD_11 Input from: - adridg: devel/qca-legacy - jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds - sunpoet: security/p5-*OpenSSL* Reviewed by: doceng, kde, multimedia, perl, python, ruby, rust Differential Revision: https://reviews.freebsd.org/D32008 Test Plan: make index
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Unmark certain ports as broken on powerpc64 elfv2, after a trybroken run.Mark Linimon2020-03-181-1/+2
| | | | | | | | | | | | (Note that these have not yet been re-tested on elfv1.) While here, pet portlint (e.g. location of BROKEN_*, and, in one case, USES). Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=528623
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* Add missing qt5 dependency.Cy Schubert2019-01-111-0/+2
| | | | | | | | Reported by: pi@ MFH: 2019Q1 Notes: svn path=/head/; revision=489994
* Add QT5 buildtools to the mix.Cy Schubert2018-12-291-1/+1
| | | | Notes: svn path=/head/; revision=488651
* Fix USE_GITHUB usage.Mathieu Arnold2018-12-272-6/+5
| | | | Notes: svn path=/head/; revision=488534
* Problem:Cy Schubert2018-12-274-337/+362
| | | | | | | | | | | | | | QT4 support is deprecated and will be removed in March 2019. fwbuilder upline is no longer supported. Solution: Use the fwbuilder fork on github. This: - updates fwbuilder from 5.1.0 to 5.3.7. - uses QT5. - is supported. Notes: svn path=/head/; revision=488503
* Mark QT4 ports/functionality for removal on 2019-03-15Rene Ladan2018-12-021-0/+3
| | | | | | | | | | | | | | While here, chase some KDE4 ports and functionality, these are scheduled for removal on 2018-12-31. Change the default option/flavor to QT5 where applicable or use alternative toolkits like GTK. Submitted by: tcberner Reviewed by: adridg, jhale, rene, tcberner Approved by: portmgr (implicit, flavor hook) Differential Revision: https://reviews.freebsd.org/D17741 Notes: svn path=/head/; revision=486467
* Add DOCS options to ports that should have one.Mathieu Arnold2018-09-101-1/+1
| | | | | | | | | | | Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine Notes: svn path=/head/; revision=479406
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* Mark as broken on powerpc64.Mark Linimon2018-06-081-3/+6
| | | | | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471976
* clang 6 is full of surprises. Fix build on 12-CURRENT 1200056.Cy Schubert2018-01-172-14/+8
| | | | Notes: svn path=/head/; revision=459218
* Make defining both PORTVERSION and DISTVERSION a DEV_ERROR.Mathieu Arnold2017-04-111-12/+5
| | | | | | | | | | | | | | | | | | | | There are two cases: - The upstream versionning is compatible with our versionning, or using DISTVERSION's magic leads to a compatible PORTVERSION, use DISTVERSION. If it is possible to use DISTVERSIONPREFIX and DISTVERSIONSUFFIX to make it compatible, use them. - The upstream versionning is not compatible with our versionning, and DISTVERSION's magic does not lead to a correct PORTVERSION, then set PORTVERSION to the equivalent of our versionning, and set DISTNAME. It is possible to use a third variable where you store upstream's version and use it to compute PORTVERSION and/or DISTNAME, like the dns/bind9* ports do. Sponsored by: Absolight Notes: svn path=/head/; revision=438272
* Remove all USE_OPENSSL occurrences.Mathieu Arnold2017-03-151-2/+1
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=436247
* Get rid of QT_PREFIX in favour of PREFIX.Tobias C. Berner2016-12-181-1/+1
| | | | | | | | | | | QT_PREFIX was a remnant of a bygone time. Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D8825 Notes: svn path=/head/; revision=428889
* security/fwbuilder: Fix bad RUN_DEPENDS specification for rcsJohn Marino2016-08-041-3/+3
| | | | | | | | | | | | | | | | | | | | | The fwbuilder makefile specifies devel/rcs as a run dependency for FreeBSD 10 and later, but the specification is ignored on a stock FreeBSD 10.3 installed from an ISO. At some point rcs was removed before FreeBSD-10 release, but it seems to have been put back and controlled with a build knob, so it may or may not be present on FreeBSD 10 or later. Change the test from checking OSVERSION to checking for the existence of /usr/bin/rcs. It's a better chek and it fixes a potential dependency mismatch issue between the port and the built package. While here, change RUN_DEPENDS= to RUN_DEPENDS+= to avoid a potential overwrite of existing values. Approved by: infrastructure blanket (redundant deps work) Notes: svn path=/head/; revision=419652
* - Fix trailing whitespace in pkg-descrs, categories [p-x]*Dmitry Marakasov2016-05-191-2/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415500
* 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
* Run included autogen.sh instead of autoreconf because it will also copyTijl Coosemans2015-04-201-6/+13
| | | | | | | | | config.sub and config.guess Reported by: antoine Notes: svn path=/head/; revision=384364
* Modernise configure.inTijl Coosemans2015-04-191-0/+80
| | | | | | | Reported by: antoine Notes: svn path=/head/; revision=384321
* Convert to USES=autoreconfTijl Coosemans2015-04-181-2/+2
| | | | Notes: svn path=/head/; revision=384225
* Remove OSVERSION checks that do not make sense any more.Mathieu Arnold2015-04-031-5/+1
| | | | | | | | | | | | | For example (${OSVERSION} >= 900000 && ${OSVERSION} < 900021) is always true, as is (${OSVERSION} > 900002 || ${OSVERSION} < 900000 && ${OSVERSION} > 800107). Regarding patches, when an EXTRA_PATCHES is no longer needed, I remove it, when it is always needed, I renamed it, in one case, I merged two patches. Differential Revision: https://reviews.freebsd.org/D2209 Notes: svn path=/head/; revision=383107
* Cleanup plistAntoine Brodin2014-11-131-26/+0
| | | | Notes: svn path=/head/; revision=372514
* Rename security/ patches to reflect the files they modify.Adam Weinberger2014-07-291-0/+0
| | | | Notes: svn path=/head/; revision=363328
* Remove NOPORTDOCS and NOPORTEXAMPLES.Adam Weinberger2014-07-041-4/+4
| | | | Notes: svn path=/head/; revision=360671
* UnbreakAntoine Brodin2014-05-311-3/+1
| | | | Notes: svn path=/head/; revision=356012
* Stagify. Modernize.Cy Schubert2014-05-302-17/+18
| | | | Notes: svn path=/head/; revision=355762
* - Convert gmake, bzip2 to USESMartin Wilke2014-05-261-1/+1
| | | | | | | Approved by: portmgr Notes: svn path=/head/; revision=355321
* - Remove manual creation and removal of share/applications, as it's now in ↵Dmitry Marakasov2013-10-221-1/+0
| | | | | | | | | the mtree (categories starting with [st]) Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331274
* r329531 makes this patchfile unnecessary.Cy Schubert2013-10-061-11/+0
| | | | Notes: svn path=/head/; revision=329561
* With the impending removal of rcs from base/head/, add new rcs 5.7 portCy Schubert2013-10-061-0/+5
| | | | | | | | | which is compatible with the soon to be removed rcs (5.7) in base/ and make security/fwbuilder (which will not work with any rcs newer than 5.7) depend on it. Notes: svn path=/head/; revision=329531
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | security) Notes: svn path=/head/; revision=327769
* On installations that have devel/rcs (GNU rcs) installed, fwbuilder failsCy Schubert2013-09-112-1/+12
| | | | | | | | | to check in udates to its .fwb files (they are saved but not checked into its RCS database). This patch prefers rcs in base (/usr/bin/rcs) over GNU rcs (/usr/local/bin/rcs). Notes: svn path=/head/; revision=326938
* - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4Martin Wilke2012-06-061-2/+1
| | | | | | | Review by: bapt, David Naylor (kde team) Notes: svn path=/head/; revision=298557
* - update png to 1.5.10Dirk Meyer2012-06-011-0/+2
| | | | Notes: svn path=/head/; revision=297915
* Update 5.0.1 ---> 5.1.0Cy Schubert2012-04-243-4/+6
| | | | Notes: svn path=/head/; revision=295429
* Update 5.0.0 --> 5.0.1Cy Schubert2011-12-303-4/+5
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=288297
* Adjust -devel bits for use in -devel version of this port.Cy Schubert2011-11-191-6/+5
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286033
* Set default DEVEL option (documentation).Cy Schubert2011-11-151-7/+8
| | | | | | | | | | | Add version 4 to conflicts. Adjust version 5 nightly builds URL for devel version of this Makefile. Feature safe: yes Notes: svn path=/head/; revision=285822
* Update 4.2.2 --> 5.0.0Cy Schubert2011-11-144-23/+8
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=285789
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-3/+3
| | | | | | | | | | | | - 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
* Now builds under 9.0-CURRENT.Cy Schubert2011-09-111-4/+0
| | | | Notes: svn path=/head/; revision=281645
* - Chase net-snmp shlib version bump.Sylvio Cesar Teixeira2011-07-281-1/+2
| | | | Notes: svn path=/head/; revision=278482
* Update 4.2.1 --> 4.2.2. This is a bugfix release.Cy Schubert2011-05-123-4/+5
| | | | | | | Notified by: Vadim Kurland <vadim@netcitadel.com> (Fwbuilder upline) Notes: svn path=/head/; revision=273987
* Update 4.2.0 --> 4.2.1. This is a bugfix release.Cy Schubert2011-05-113-4/+7
| | | | | | | Notified by: Vadim Kurland <vadim@netcitadel.com> (Fwbuilder upline) Notes: svn path=/head/; revision=273929
* Fix build on AMD64. Debugging information caused failure on pointyhat dueCy Schubert2011-05-091-2/+10
| | | | | | | | | | to ulimit. Rremoval of debugging information reduces the size of a static library file by 80%. Discovered by: pointyhat on amd64 8 Notes: svn path=/head/; revision=273876
* Update 4.1.3 --> 4.2.0.Cy Schubert2011-05-035-33/+137
| | | | | | | Libfwbuilder has been merged into fwbuilder. Notes: svn path=/head/; revision=273526