| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2015-10-31 audio/cmus-post.fm: Broken for more than 6 months
2015-10-31 devel/libphish: Broken for more than 6 months
2015-10-31 devel/rubygem-debugger: This port is for Ruby 1.9 only. Upstream stopped maintenance.
2015-10-31 games/linux-ningpo-demo: Broken for more than 6 months
2015-10-30 graphics/gdal-grass: Superseded by gdal-2.0.0
2015-10-31 graphics/picviz: Broken for more than 6 months
2015-10-31 irc/weechat-devel: far behind stable irc/weechat (use it instead)
2015-10-31 mail/cucipop: Broken for more than 6 months
2015-10-31 math/rkward-kde4: Depends on deprecated math/R-cran-car
2015-10-31 multimedia/streamanalyze: Broken for more than 6 months
2015-10-31 net-mgmt/collectd: Please move to collectd5 - collect4 is not developed/patched
2015-10-31 sysutils/sdd: Broken for more than 6 months
2015-10-31 sysutils/xfce4-minicmd-plugin: Broken for more than 6 months
2015-10-31 www/linux-libgtkembedmoz: Broken for more than 6 months
2015-10-31 www/py-feedfinder: Broken for more than 6 months
2015-10-31 www/py-openssl-proxy: Broken for more than 6 months
2015-10-31 www/py-webware: Broken for more than 6 months
2015-10-31 www/py-webware-component: Depends on deprecated www/py-webware
2015-10-31 x11-fonts/code2001: Broken for more than 6 months
2015-10-31 x11-wm/e-module-diskio: Broken for more than 7 months
Notes:
svn path=/head/; revision=400622
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
| |
Reported by: pkg-fallout
Notes:
svn path=/head/; revision=364416
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add secondary MASTER_SITES entry
- 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
PR: ports/185908 [1]
Requested by: dumbbell [1]
Notes:
svn path=/head/; revision=344137
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
Notes:
svn path=/head/; revision=330833
|
|
|
|
|
|
|
|
| |
- Add pre-built manpage as build requirements for creating the manpage
are somewhat excessive.
Notes:
svn path=/head/; revision=324811
|
|
|
|
| |
Notes:
svn path=/head/; revision=310213
|
|
|
|
|
|
|
|
|
| |
- Remove extraneous patch
Feature safe: yes
Notes:
svn path=/head/; revision=307279
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
Approved by: flo (mentor)
Notes:
svn path=/head/; revision=304557
|
|
|
|
|
|
|
| |
Approved by: flo (mentor)
Notes:
svn path=/head/; revision=303661
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Make dependency on devel/ncurses optional [1]
- Fix SASL option and its description
- Add secondary master site
Requested by: Peter Jeremy <peter@rulingia.com> [1]
Approved by: flo (mentor)
Notes:
svn path=/head/; revision=302582
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add SASL option to enable SASL authentication support
- Use devel/ncurses as it provides ability for 256 color support for
ncursesw
- Remove support for devel/lua50 (upstream removing it shortly)
- Remove 'Enable' from option descriptions
Approved by: flo (mentor)
Notes:
svn path=/head/; revision=300768
|
|
|
|
|
|
|
|
| |
PR: 164807
Submitted by: Jase Thew <freebsd@beardz.net> (maintainer)
Notes:
svn path=/head/; revision=290566
|
|
|
|
|
|
|
|
|
|
|
| |
- Add LICENSE section
- Change default for BACKTRACE option to On
PR: ports/159850
Submitted by: Jase Thew <freebsd@beardz.net> (maintainer)
Notes:
svn path=/head/; revision=279944
|
|
|
|
|
|
|
|
| |
PR: ports/156131
Submitted by: Jase Thew <freebsd AT beardz.net> (maintainer)
Notes:
svn path=/head/; revision=272143
|
|
|
|
|
|
|
|
|
|
| |
PR: ports/154128
Submitted by: Jase Thew <freebsd at beardz.net>
Feature safe: yes
Approved by: ehaupt (mentor)
Notes:
svn path=/head/; revision=268076
|
|
|
|
|
|
|
|
| |
PR: 153325
Submitted by: maintainer
Notes:
svn path=/head/; revision=266689
|
|
|
|
|
|
|
|
|
|
|
| |
- Honour LOCALBASE
- Honour various script languages wanted version variables when building
PR: 153117
Submitted by: Jase Thew <freebsd@beardz.net> (maintainer)
Notes:
svn path=/head/; revision=266603
|
|
|
|
|
|
|
|
| |
PR: 150746
Submitted by: Jase Thew <freebsd@beardz.net> (maintainer)
Notes:
svn path=/head/; revision=262145
|
|
|
|
|
|
|
|
| |
PR: 143407
Submitted by: Jase Thew <freebsd@beardz.net>
Notes:
svn path=/head/; revision=249126
|
|
|
|
|
|
|
|
|
|
|
| |
- Change port to use cmake instead of make/configure/autotools,
- ChangeLog : http://www.weechat.org/files/changelog/ChangeLog-0.3.1.html
PR: 143128
Submitted by: Jase Thew <freebsd@beardz.net>
Notes:
svn path=/head/; revision=248652
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add build documentation option.
* Fix incorrect logic for charset option.
* Remove broken tag from Ruby option.
* Update option conditionals to be more readable
* Remove mandatory dependancies on Ruby, Perl and gettext, add them to
corresponding options as optional dependancies instead.
* Add missing .pl NLS message catalog to plist.
PR: 140603
Submitted by: Jase Thew <freebsd@beardz.net>
Notes:
svn path=/head/; revision=244592
|
|
|
|
|
|
|
| |
- Changelog: http://cvs.savannah.gnu.org/viewcvs/weechat/weechat/ChangeLog?rev=1.328
Notes:
svn path=/head/; revision=170988
|
|
|
|
|
|
|
|
|
|
|
| |
- Fix bug with NLS (thanks to kolter@freenode[weechat])
- Add new plugin language (ruby)
- Add support of doing secure connection to irc server (gnutls)
- Switch from PLIST to pkg-plist for better Makefile reading
- Disabled plugin language LUA (if someone want it, just ask me)
Notes:
svn path=/head/; revision=166826
|
|
|
|
| |
Notes:
svn path=/head/; revision=126505
|
|
WeeChat (Wee Enhanced Environment for Chat) is a fast and light IRC client.
Everything can be done with a keyboard, and it is customizable and extensible
with scripts. For the moment, only ncurse GUI issupported by this port.
WWW: http://weechat.flashtux.org
Notes:
svn path=/head/; revision=100489
|