aboutsummaryrefslogtreecommitdiff
path: root/irc/weechat
Commit message (Collapse)AuthorAgeFilesLines
* Remove ${PORTSDIR}/ from dependencies, categories h, i, j, k, and l.Mathieu Arnold2016-04-011-10/+10
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412347
* - Update security/gnutls to 3.4.10.Tijl Coosemans2016-03-271-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* Readd removed ${PORTSDIR} in dependency chain too early there are still fixesBaptiste Daroussin2016-02-261-10/+10
| | | | | | | needed in bsd.ports.mk to allow removing them entirely Notes: svn path=/head/; revision=409617
* - Switch to USES=execinfo localbasePawel Pekala2016-01-161-3/+2
| | | | | | | | | | | | - USES=localbase conversion fixes detection of libexecinfo on FreeBSD 10+ PR: 205760 Submitted by: myself Approved by: maintainer timeout Notes: svn path=/head/; revision=406223
* Update irc/weechat to 1.4Renato Botelho2016-01-129-45/+37
| | | | Notes: svn path=/head/; revision=405897
* - Fix build if lang/v8 is installedSunpoet Po-Chuan Hsieh2015-12-213-1/+17
| | | | | | | | | | | - Add JAVASCRIPT option and set it off by default PR: 204881 Submitted by: sunpoet (myself) Approved by: maintainer (timeout, 23 days) Notes: svn path=/head/; revision=404174
* Upgrade irc/weechat to 1.3Renato Botelho2015-10-108-74/+48
| | | | Notes: svn path=/head/; revision=399019
* Uses/iconv.mk: Set iconv-related CMake variables.Raphael Kubo da Costa2015-09-032-58/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The way we deal with iconv in base and ports across different FreeBSD releases is complicated: 9.x does not have iconv.h in base, 10.1 has it with a different prototype for iconv(3) and later versions have the right iconv(3) prototype. And, in some cases (USES=iconv:{translit,wchar_t}), we must always use the libiconv port. This is why there are so many checks in Uses/iconv.mk: we need to know the situation we currently have in order to decide whether to pull iconv from converters/libiconv, whether to just use its header (and pull the library from base) or whether to use everything from base. r384038 adjusted several CMake-based ports, but did so in a way that was not very scalable and required a few intrusive patches to some ports. Most ports that have both USES=cmake and USES=iconv use variations of FindIconv.cmake that behave similarly. This change passes the header and library values we really want to use to CMake using the most common variable names, bypassing the calls to find_path() and find_library() that would sometimes end up finding the wrong file. The few ports that use different variable names have had their Makefiles adjusted (we manually pass the values we want via CMAKE_ARGS). Other changes: - chinese/fcitx: Explicitly set LIBICONV_LIBC_HAS_ICONV_OPEN=OFF as we always want the version from ports because of USES=iconv:wchar_t. - editors/calligra: Explicitly use iconv:translit because Kexi needs it. - irc/weechat and irc/weechat-devel: The FindIconv.cmake patches could not be entirely removed because the check_library_exists() calls are wrong. Sent upstream: https://github.com/weechat/weechat/pull/513 - textproc/ctpp2: Use iconv:translit when the TRANSLITERATE option is used. PORTREVISION has been bumped in editors/calligra and textproc/ctpp2 because their dependency list has changed in 10.2 and later as the ports version is always used now. PR: 202798 Reviewed by: antoine, tijl Approved by: portmgr (antoine) Notes: svn path=/head/; revision=395972
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* converters/libiconv:Tijl Coosemans2015-04-152-0/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove const qualifier from iconv(3) to match POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html - Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is defined because the base system iconv supports these extensions too. Add/remove patches to/from ports to call iconv with non-const arguments. This breaks some ports on FreeBSD 10 because base system iconv.h still has the const qualifier. Fix this by letting USES=iconv add a build dependency on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG defined) instead of the base system iconv.h. This exposed some ports that link with libiconv when it is available instead of using libc iconv. In these cases one of the following changes has been made: - patch configure scripts to test for libc iconv first - add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable some configure tests - converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4 - lang/gcc5-aux: respect CFLAGS and friends during configure such that LIBICONV_PLUG is defined in the iconv test, also switch to external gettext - mail/gnarwl: replace patches with CPPFLAGS/LIBS - multimedia/ffmpeg2theora: remove iconv test from SConstruct and use ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c - net-im/licq: finish conversion to cmake - net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4: don't need iconv - textproc/p5-XML-TinyXML: finish conversion to USES=perl5 Other changes: - databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2 and lzo support - games/ldmud: respect CFLAGS and friends - graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg dependencies PR: 199099 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=384038
* irc/weechat: Update to v1.1.1Jase Thew2015-01-276-83/+50
| | | | | | | Changes: https://weechat.org/files/changelog/ChangeLog-1.1.1.html Notes: svn path=/head/; revision=377969
* 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
* irc/weechat: Remove CFLAGS+= Qunused-argumentsJohn Marino2014-10-271-1/+0
| | | | | | | | | | | | That switch is not recognized by GCC, and GCC 4.7 and later will considered unrecognized switches as errors and break the build. This was seen on dports, but can be reproduced on ports with USE_GCC=yes. PR: 194575 Approved by: jase@ (maintainer) Notes: svn path=/head/; revision=371561
* irc/weechat: Add default dependency on Mozilla CA Bundle for cert verificationJase Thew2014-10-171-7/+9
| | | | | | | | | | | | | | - Configure WeeChat to use Mozilla CA Bundle location - Remove some custom descriptions that are no longer required While I'm here: - Reword two custom descriptions for consistency Suggested by: Benjamin Stier PR: ports/192737 Notes: svn path=/head/; revision=371062
* irc/weechat: Update to 1.0.1Jase Thew2014-10-167-277/+195
| | | | | | | | | | | | - Utilise OPTIONS helpers - Quieten compiler warnings about unused arguments (caused by unconditionally passing LOCALBASE/{lib,includes} via CFLAGS) - Remove occurrences of deprecated @dirrm and @dirrmtry from plist Changes: http://www.weechat.org/files/changelog/ChangeLog-1.0.1.html Notes: svn path=/head/; revision=371017
* 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/+1
| | | | | | | | | | | | | | | - 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
* Convert textproc/aspell to "USES=libtool tar:bzip2" and bump dependent portsTijl Coosemans2014-07-041-5/+5
| | | | | | | Approved by: portmgr (implicit, PORTREVISION bump on unstaged port) Notes: svn path=/head/; revision=360658
* Remove indefinite articles and trailing periods from COMMENT, plusJimmy Olgeni2014-06-131-1/+1
| | | | | | | | | | minor COMMENT typos and surrounding whitespace fixes. Categories G-I. CR: D201 Approved by: portmgr (bapt) Notes: svn path=/head/; revision=357654
* - Fix fallout from r355360 and allow lua plugin to be builtJase Thew2014-06-062-2/+2
| | | | | | | successfully Notes: svn path=/head/; revision=356767
* Replace lang/lua with the new lang/lua51Baptiste Daroussin2014-05-261-1/+1
| | | | | | | | | | | lang/lua51 is working the same way lang/lua52, chase ports using lua 5.1 Make the default lua lua52 Make all lua ports using USES=lua Approved by: portmgr (implicit) Notes: svn path=/head/; revision=355360
* - Convert to USES=tclPietro Cerutti2014-02-201-4/+3
| | | | | | | - Fix LIB_DEPENDS format Notes: svn path=/head/; revision=345201
* - Add additional primary MASTER_SITES for docs and manpages distfilesJase Thew2014-02-131-17/+17
| | | | | | | | | | to workaround ftp mirroring delay [1] - Consolidate all MASTER_SITES and MASTER_SITE_SUBDIR assignments Reported by: David Cecchin (via email) [1] Notes: svn path=/head/; revision=344099
* - Update to 0.4.3Jase Thew2014-02-125-125/+134
| | | | | | | | | | | | | | | | | - Rename DOCUMENTATION option to DOCS and add a pre-built docs distfile - Utilise DOCSDIR macro in pkg-plist - Change defaults to enable all OPTIONS [1] - Remove COLOR256 option as devel/ncurses no longer supports building with extended colour support - Rework MAINTAINER_MODE to cater for building both manpages and docs Changes: http://www.weechat.org/files/changelog/ChangeLog-0.4.3.html PR: ports/185908 [1] Requested by: dumbbell [1] Notes: svn path=/head/; revision=343932
* Python cleanup:Rene Ladan2014-01-131-1/+1
| | | | | | | | | | - USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat) Notes: svn path=/head/; revision=339634
* - Update to 0.4.2Jase Thew2013-10-184-21/+61
| | | | | | | | | | | | | | - Convert to latest LIB_DEPENDS format - Add STAGE support - Fix whitespace nits - Revise pkg-descr to reflect reality - WeeChat client is ncurses only and other front-ends will connect to the ncurses client - Add MANPAGES option along with pre-built manpages for all supported languages Changes: http://www.weechat.org/files/changelog/ChangeLog-0.4.2.html Notes: svn path=/head/; revision=330776
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | irc) Notes: svn path=/head/; revision=327736
* - convert to the new perl5 frameworkAndrej Zverev2013-09-161-2/+1
| | | | | | | | | - convert USE_GMAKE to Uses Approved by: portmgr (bapt@, blanket) Notes: svn path=/head/; revision=327418
* - Update to 7.31.0Sunpoet Po-Chuan Hsieh2013-07-111-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | - Bump PORTREVISION for ftp/curl shlib change - Add TEST_DEPENDS - Convert to new options framework - Adjust options: - Add COOKIES - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1] - Add GSSAPI and SPNEGO [2] - Remove KERBEROS4 - Rename LIBIDN to IDN - Remove TRACKMEMORY [1] - Sort option handler - Add SLAVEDIRS: ftp/curl-hiphop - Cosmetic change - Cleanup Makefile header - While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile Changes: http://curl.haxx.se/changes.html PR: ports/172325 (-exp run), ports/177369 (based on) [1] Submitted by: Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2] Exp run by: miwi Notes: svn path=/head/; revision=322783
* - Update to 0.4.1Jase Thew2013-05-243-25/+32
| | | | | | | | | | | | | | | - Support for guile scripting module has been disabled. WeeChat now requires guile >= 2.0 and there is currently no guile 2.x port available in the Ports Collection While I am here: - Fix whitespace nits - Fix typo in COMMENT Changes: http://www.weechat.org/files/changelog/ChangeLog-0.4.1.html Notes: svn path=/head/; revision=318973
* Convert USE_NCURSES by USES=ncursesBaptiste Daroussin2013-05-061-4/+5
| | | | | | | Convert USE_READLINE by USES=readline Notes: svn path=/head/; revision=317525
* 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 while here Reviewed by: zeising Notes: svn path=/head/; revision=316662
* - Convert USE_GETTEXT to USES (part 4)Alex Kozlov2013-04-261-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=316596
* - Remove lang/tcl83 and x11-toolkits/tk83 (expired)Pietro Cerutti2013-04-231-1/+1
| | | | | | | | | - Remove references to Tcl/Tk 8.3 from bsd.tcl.mk - Update ports that required 8.3+ to require 8.4+ (since 8.5 is the default, I don't expect this change to cause much trouble) Notes: svn path=/head/; revision=316351
* - convert USE_CMAKE to USESMax Brazhnikov2013-03-221-1/+1
| | | | | | | | | | - while here clean up some ports from CMAKE_VERBOSE, which is intended for users Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314960
* - 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 to 0.4.0Jase Thew2013-01-204-17/+39
| | | | | | | Changes: http://www.weechat.org/files/changelog/ChangeLog-0.4.0.html Notes: svn path=/head/; revision=310703
* - Update to 0.3.9.2Jase Thew2012-11-182-3/+3
| | | | | | | | | | Changes: http://www.weechat.org/files/changelog/ChangeLog-0.3.9.2.html Security: 81826d12-317a-11e2-9186-406186f3d89d Feature safe: yes Notes: svn path=/head/; revision=307536
* - Remove extraneous patchJase Thew2012-11-101-133/+0
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=307276
* - Update to 0.3.9.1Jase Thew2012-11-102-4/+3
| | | | | | | | | Changes: http://www.weechat.org/files/changelog/ChangeLog-0.3.9.1.html Feature safe: yes Notes: svn path=/head/; revision=307275
* Apply an upstream patch that fixes a security holeEitan Adler2012-11-102-0/+134
| | | | | | | | | | | | | | when receiving a special colored message. The maintainer was contacted but due to the nature of the issue apply the patch ASAP. Approved by: secteam-ports (swills) Security: e02c572f-2af0-11e2-bb44-003067b2972c Feature safe: yes Notes: svn path=/head/; revision=307263
* - Update to 0.3.9Jase Thew2012-09-297-69/+57
| | | | | | | | | | | - Convert to new format Makefile header Changes: http://www.weechat.org/files/changelog/ChangeLog-0.3.9.html Approved by: flo, culot (mentors, implicit) Notes: svn path=/head/; revision=305035
* - Add temporary patch (taken from upstream master) to fix color attributesJase Thew2012-08-172-1/+16
| | | | | | | | | on wrapped lines. Approved by: culot (mentor) Notes: svn path=/head/; revision=302675
* - Make dependency on devel/ncurses optional [1]Jase Thew2012-08-151-5/+21
| | | | | | | | | | - Fix SASL option and its description Requested by: Peter Jeremy <peter@rulingia.com> [1] Approved by: flo (mentor) Notes: svn path=/head/; revision=302581
* - Add SASL option to enable SASL authentication supportJase Thew2012-07-115-54/+31
| | | | | | | | | | | | - Use devel/ncurses as it provides ability for 256 color support for ncursesw - Fix Lua support when used with devel/lua50 - Remove 'Enable' from option descriptions Approved by: flo (mentor) Notes: svn path=/head/; revision=300767
* - Update to 0.3.8 [1]Jase Thew2012-06-104-37/+68
| | | | | | | | | | | | | - Transfer maintainership to jase@FreeBSD.org [2] - Convert to new options framework - Remove shlib version from LIB_DEPENDS PR: ports/168662 Submitted by: jase [1] Approved by: flo, culot (mentors), miwi [2] Notes: svn path=/head/; revision=298966
* - Update to 0.3.7Martin Wilke2012-03-045-36/+20
| | | | | | | | PR: 165486 Submitted by: Jase Thew <freebsd@beardz.net> Notes: svn path=/head/; revision=292629
* Remove CMAKE_USE_PTHREAD from the ports using it.Raphael Kubo da Costa2011-11-141-1/+0
| | | | | | | | | | | This setting has not had any effect since r1.13 to bsd.cmake.mk, as it was only useful when we supported FreeBSD < 7. Approved by: avilla (mentor), portmgr (miwi) Feature safe: yes Notes: svn path=/head/; revision=285744
* - Update to 0.3.6Martin Wilke2011-10-236-15/+56
| | | | | | | | | | | - Add LICENSE - ADD CONFLICTS PR: 161903 Submitted by: Jase Thew <freebsd@beardz.net> Notes: svn path=/head/; revision=284181