aboutsummaryrefslogtreecommitdiff
path: root/security/libprelude
Commit message (Collapse)AuthorAgeFilesLines
* security/libprelude: unbreak on armv{6,7}Piotr Kubaj2019-07-141-3/+0
| | | | | | | | | Builds fine. Approved by: mentors (implicit approval) Notes: svn path=/head/; revision=506614
* For ports that are marked BROKEN on armv6, and also fail to build onMark Linimon2017-11-301-0/+1
| | | | | | | | | | | | | armv7, mark them so. This is part two of a multipart commit to bring armv7 ports to parity with armv6. Approved by: portmgr (tier-2 blanket) Obtained from: lonesome.com -exp run Notes: svn path=/head/; revision=455167
* Mark some ports failing on armv6, for errors classified as "configure_error".Mark Linimon2017-05-271-0/+2
| | | | | | | | | | | | | Note: this skips all the ports that _sometimes_ fail with CMake errors. We need to investigate that problem, and find out if it is specific to the qemu environment. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=441874
* 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
* - Update security/gnutls to 3.4.10.Tijl Coosemans2016-03-275-80/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Rename the LIBDANE option DANE because that's the name of the protocol supported by libgnutls-dane and gnutls-cli. Also clarify the option description. - Add an IDN option. - libgnutls-openssl has been removed in 3.4. Some ports used this library in their LIB_DEPENDS but no port actually required it. - Some old API functions have been removed. Ports that used these have been updated or patched to use the new API. - Add a patch to print/cups to prevent overlinking of libgnutls.so. - Bump PORTREVISION on dependent ports. net-im/jabber: This port used the old API to give users fine grained control over which crypto algorithms were used via a configuration file. It's not immediately obvious how to port this to the new API so the port always uses the defaults now. www/hydra: Mark BROKEN. This uses more removed calls than the other ports, is said to be alpha quality and not fully functional and has been abandoned 10 years ago. PR: 207768 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=411990
* By default libtool replaces -export-symbols <file> with -retain-symbols-fileTijl Coosemans2015-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <file> on ELF systems, but this doesn't really do what -export-symbols is meant to do. On GNU ELF systems it converts <file> to a simple version script first and then uses -version-script instead of -retain-symbols-file. Let USES=libtool patch libtool scripts to do this on all systems with GNU ld(1). Bump PORTREVISION on all ports where the build log contains -export-symbols. audio/calf: This port builds a module that now exports only one function, but it also builds a number of executables that link to this module and expect to see other functions. Because it's already a bit dodgy to link to a module (libtool warns about this) let the module continue to export only one function and instead build an ordinary library from the same source that the executables can link to. Fix a number of other issues in the same Makefile.am and clean up the port Makefile. japanese/scim-honoka: Tries to hide all symbols that start with an underscore, but because this library is written in C++ all symbols start with _Z so it ends up hiding everything. Just don't hide anything at all like the textproc/scim configure script does. multimedia/schroedinger: Apply an upstream patch. textproc/scim-input-pad: Same as japanese/scim-honoka. PR: 201922 Approved by: portmgr (antoine) Exp-run by: antoine Notes: svn path=/head/; revision=393429
* - Modernize plistDmitry Marakasov2015-07-122-10/+4
| | | | | | | | | - Modernize BROKEN Approved by: portmgr blanket Notes: svn path=/head/; revision=391863
* security/libgcrypt: 1.6.1 -> 1.6.2, bump dependsKurt Jaeger2015-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: - src/sexp.c (do_vsexp_sscan): Return error for invalid args. - cipher/md.c (_gcry_md_info): Fix a segv in case of calling with wrong parameters. - cipher/primegen.c (_gcry_generate_elg_prime): Change to return an error code, possible NULL deref in call to prime generator. - cipher/dsa.c (generate): Take care of new return code. - cipher/elgamal.c (generate): Change to return an error code. Take care of _gcry_generate_elg_prime return code. - ecc: Support the non-standard 0x40 compression flag for EdDSA. - mpi: Extend the internal mpi_get_buffer. - mpi: Fix regression for powerpc-apple-darwin detection. - Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in - Fix building for the x32 target without asm modules in mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI. - Fix ARM assembly when building __PIC__ - mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit. * mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear allocated but not used bits before resizing. * tests/t-mpi-bits.c (set_bit_with_resize): New. - Use internal malloc function in fips.c. * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/. - pubkey: Re-map all deprecated RSA algo numbers. - cipher: Fix possible NULL dereference in cipher/md.c for being NULL. - Fix ARMv6 detection when CFLAGS modify target CPU architecture. PR: 193264 Approved by: cpm@fbsd.es (maintainer) Notes: svn path=/head/; revision=376062
* Change the way Perl modules are installed, update the default Perl to 5.18.Mathieu Arnold2014-11-262-11/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, we had: site_perl : lib/perl5/site_perl/5.18 site_perl/perl_arch : lib/perl5/site_perl/5.18/mach perl_man3 : lib/perl5/5.18/man/man3 Now we have: site_perl : lib/perl5/site_perl site_arch : lib/perl5/site_perl/mach/5.18 perl_man3 : lib/perl5/site_perl/man/man3 Modules without any .so will be installed at the same place regardless of the Perl version, minimizing the upgrade when the major Perl version is changed. It uses a version dependent directory for modules with compiled bits. As PERL_ARCH is no longer needed in plists, it has been removed from PLIST_SUB. The USE_PERL5=fixpacklist keyword is removed, the .packlist file is now always removed, as is perllocal.pod. The old site_perl and site_perl/arch directories have been kept in the default Perl @INC for all Perl ports, and will be phased out as these old Perl versions expire. PR: 194969 Differential Revision: https://reviews.freebsd.org/D1019 Exp-run by: antoine Reviewed by: perl@ Approved by: portmgr Notes: svn path=/head/; revision=373448
* Replace USE_AUTOTOOLS=libltdl with an ordinary LIB_DEPENDS in all ports.Tijl Coosemans2014-09-171-2/+2
| | | | | | | | | | There are only 60 such ports so there doesn't need to be a separate keyword or USES for this. Approved by: portmgr (bapt) Notes: svn path=/head/; revision=368356
* security/libprelude: Take MAINTAINER'ship, STAGE & ModernizeKubilay Kocak2014-08-212-53/+42
| | | | | | | | | | | | | | | | | | | | | | | | - Take Maintainership - Enable STAGE support - Tweak MASTER_SITES https -> http (portlint) - Add LICENSE and LICENSE_FILE - Deprecate USE_AUTOTOOLS for libtool (-> USES) - Sort USES and OPTIONS - Use OPTIONS helpers as much as possible for now [1] - Add --enable-static to CONFIGURE_ARGS to retain the static lib - Assign and Use ETCDIR rather than hardcoding - Use the install-strip install target - Update pkg-plist, use @sample and other goodies While I'm here, bump dependent ports since our SHLIB major version has changed [1] https://reviews.freebsd.org/D665 Approved by: portmgr (implicit, bump unstaged port) Notes: svn path=/head/; revision=365562
* security/libgcrypt: 1.5.3_3 -> 1.6.1Kurt Jaeger2014-07-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | - Update to 1.6.1 - Remove some unneeded patches - Fix pkg-plist - report configure bug upstream https://bugs.g10code.com/gnupg/issue1668 - report API breakage downstream and find that MacPorts had the same issue https://rt.cpan.org/Ticket/Display.html?id=97201 - bump PORTREVISION for dependent ports (approx. 100 ports) - Thanks to exp-run by antoine@ to find ports that break - patch ports that would otherwise break security/shishi with PR 192164 is already committed [1] devel/ccrtp [2] editors/abiword [3] security/p5-Crypt-GCrypt PR: 191256, 192162 [1], 192163 [2], 192166 [3] Submitted by: Carlos Jacobo Puga Medina <cjpugmed@gmail.com> Approved by: maintainer timeout, antoine (exp-run), portmgr (implicit) Notes: svn path=/head/; revision=363436
* - Replace security/gnutls with security/gnutls3 and update to 3.2.15Tijl Coosemans2014-07-231-1/+4
| | | | | | | | | | | | | | | - Bump PORTREVISION on all ports that depend on security/gnutls and adjust all ports that depend on security/gnutls3 - Update mail/anubis to version 4.2 which supports gnutls 3.x - Update mail/libvmime to a development snapshot (recommended by upstream developers) PR: 191274 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=362645
* Modernize LIB_DEPENDSBaptiste Daroussin2014-07-141-6/+6
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361812
* Remove all the bootstrap files (.bs) from the plists.Mathieu Arnold2014-06-101-1/+0
| | | | | | | | | | | | | Starting with perl 5.20, they're not installed any more if empty, and on FreeBSD, they're (always ?) empty. PR: 190681 Submitted by: mat Exp-Run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=357300
* - Convert gmake, bzip2 to USESMartin Wilke2014-05-261-2/+1
| | | | | | | Approved by: portmgr Notes: svn path=/head/; revision=355321
* Fix properties on pkg-plistBaptiste Daroussin2014-01-211-1/+0
| | | | Notes: svn path=/head/; revision=340674
* 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
* - Convert to new perl frameworkAndrej Zverev2013-08-031-1/+1
| | | | | | | - Trim Makefile header Notes: svn path=/head/; revision=324181
* Add a missing directory to pkg-plistAntoine Brodin2013-06-192-1/+3
| | | | Notes: svn path=/head/; revision=321326
* - Fix build with new site_perlAndrej Zverev2013-06-121-1/+1
| | | | | | | Submitted by: olli hauer <ohauer@gmx.de> Notes: svn path=/head/; revision=320709
* - Fix buildMartin Wilke2013-06-091-1/+1
| | | | Notes: svn path=/head/; revision=320325
* Chase security/libgcrypt updateEmanuel Haupt2013-05-031-1/+1
| | | | Notes: svn path=/head/; revision=317220
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-2/+1
| | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig and USE_GETTEXT=yes to USES=gettext while here Notes: svn path=/head/; revision=316683
* - Convert USE_GETTEXT to USES (part 4)Alex Kozlov2013-04-261-2/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316596
* Finish converting the whole ports tree to USES=pkgconfigBaptiste Daroussin2013-04-231-2/+1
| | | | Notes: svn path=/head/; revision=316355
* This changes almost all the "gnomehack" only USE_GNOME cases to USES= pathfix.Eitan Adler2013-03-191-1/+1
| | | | | | | | | | | | If a port used other USE_GNOME items it was untouched. The ports that used other USES were fixed by hand. PR: ports/177081 Reviewed by: bapt Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314640
* - Add UPDATING entry for gnutls updateRoman Bogorodskiy2013-02-051-0/+1
| | | | | | | - Chase shlib version bump for dependant ports Notes: svn path=/head/; revision=311722
* Update Prelude-IDS ports to 1.0.1 releasePawel Pekala2012-12-154-65/+96
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | security/libprelude: - Remove BROKEN, update to version 1.0.1 [1] - Add missing deps, port requires pkg-config during build security/libpreludedb: - Update to version 1.0.1p1 - Add missing deps - Make options deterministic and not dependent on what's installed security/prelude-lml: - Update to version 1.0.1 - Add missing deps, port requires pkg-config during build - Convert to OptionsNG security/prelude-manager: - Update to version 1.0.2 - Add missing deps, port requires pkg-config during build - Convert to OptionsNG, remove PRELUDEDB option - it can't be turned off by CONFIGURE_ARGS, package links to preludedb at all times if available security/pflogger: - Bump PORTREVISION, libprelude ABI version changed www/py-prewikka: - Update to version 1.0.1p1 - Convert to OptionsNG - Sort plist PR: 172056 [1] Submitted by: KATO Tsuguru <tkato432@yahoo.com> [1] Notes: svn path=/head/; revision=308968
* Convert to new options frameworkBaptiste Daroussin2012-10-041-8/+5
| | | | Notes: svn path=/head/; revision=305249
* - Mark BROKEN: does not configureBeat Gaetzi2012-08-211-0/+2
| | | | | | | | | configure: error: libgnutls is required in order to build libprelude. Reported by: pointyhat Notes: svn path=/head/; revision=302885
* Fix master_siteBaptiste Daroussin2011-08-021-2/+1
| | | | Notes: svn path=/head/; revision=278800
* - Fix build by explicitly depending on libgcryptPav Lucistnik2011-07-171-1/+2
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=277875
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276991
* Chase security/gnutls update and add an UPDATING entry.Roman Bogorodskiy2011-06-051-1/+2
| | | | Notes: svn path=/head/; revision=275104
* Reset r.gruyters@snow.nl by request due to lack of time.Mark Linimon2009-09-231-1/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=241999
* - Update to 0.9.24.1, unbreakPav Lucistnik2009-09-184-25/+15
| | | | | | | | | | PR: ports/138371 Submitted by: Vladimir Korkodinov <viper@perm.raid.ru> Approved by: maintainer timeout (17 days) Feature safe: yes Notes: svn path=/head/; revision=241647
* - Mark BROKEN: does not configurePav Lucistnik2009-08-281-0/+2
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=240470
* - Chase gnuTLS slib bumpMartin Wilke2009-08-181-1/+1
| | | | Notes: svn path=/head/; revision=239852
* - Update to 0.9.21.2Dmitry Marakasov2009-02-185-160/+36
| | | | | | | | | PR: 131286 Submitted by: Vladimir Korkodinov <viper at perm dot raid dot ru> Approved by: Robin Gruyters <r dot gruyters at snow dot nl> (maintainer) Notes: svn path=/head/; revision=228620
* Restore previous maintainer, now with his new email address.Remko Lodder2008-11-301-1/+1
| | | | | | | Approved by: wxs (diff not reviewed, ack'ed to commit) Notes: svn path=/head/; revision=223642
* Reset r.gruyters@yirdis.nl: email address bounces.Mark Linimon2008-11-281-1/+1
| | | | Notes: svn path=/head/; revision=223508
* - define enable-gtk-doc=noBeech Rintoul2008-09-301-1/+3
| | | | | | | Reported by: QAT Notes: svn path=/head/; revision=221010
* - Update to 0.9.20.2Beech Rintoul2008-09-296-92/+35
| | | | | | | | | | | | | - Fix master sites - Fix portdocs handling - Perl and Python binding install new files PR: ports/127339 Submitted by: Yarema <yds@CoolRat.org> Approved by: maintainer timeout (> two weeks) Notes: svn path=/head/; revision=221005
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* - Update to 0.9.17.2Martin Wilke2008-05-134-49/+36
| | | | | | | | PR: 123486 Submitted by: Robin Gruyters <r.gruyters@yirdis.nl> (maintainer) Notes: svn path=/head/; revision=212992
* - Chase security/gnutls shlib version bumpRoman Bogorodskiy2008-03-031-1/+2
| | | | | | | - Add an entry to UPDATING Notes: svn path=/head/; revision=208375
* Mark as broken on sparc64: does not compile.Mark Linimon2008-02-011-0/+4
| | | | Notes: svn path=/head/; revision=206589