Commit graph

3901 commits

Author SHA1 Message Date
Jan Beich
f5f47a5a4e devel/nspr, security/nss: drop version from SONAME
No other downstream appends synthetic library version, and doing so
causes underlinking due to fragile build system (see below). Not to
mention being unable to swap out bundled libs from upstream builds.

  $ cc -lplds4 -L/usr/local/lib
  /usr/lib/crt1.o: In function `_start1':
  crt1_c.c:(.text+0xa6): undefined reference to `main'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_set_name_np'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_create'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_condattr_init'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_setschedparam'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_getschedparam'

PR:		213144
Exp-run by:	antoine
2016-10-09 12:10:02 +00:00
TAKATSU Tomonari
0e4698996a - Update to 2.0 2016-10-08 07:34:55 +00:00
Tijl Coosemans
1ee4da6dd1 Let USES=localbase add -L${LOCALBASE}/lib to LIBS instead of LDFLAGS.
USES=localbase:ldflags can be used to set LDFLAGS.  Normally LDFLAGS
appears too early on the command line causing some ports to link with
their own libraries in LOCALBASE (if installed) instead of WRKSRC.

Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as
possible after anything a port Makefile might set.  Use _USES_POST
instead of .include in libedit.mk and libarchive.mk so things like
'USES=libedit localbase:ldflags' work correctly.

Fix some issues with LIBS in some ports.

Switch ports that don't support LIBS to localbase:ldflags.

PR:		212987
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2016-09-30 19:24:30 +00:00
Torsten Zuehlsdorff
d9bd705a58 lang/php56: Update from 5.6.25 to 5.6.26
Security:    CVE-2016-7416
Security:    CVE-2016-7412
Security:    CVE-2016-7414
Security:    CVE-2016-7417
Security:    CVE-2016-7411
Security:    CVE-2016-7413
Security:    CVE-2016-7418

MFH:         2016Q3
Approved by: swills (mentor)
2016-09-23 08:26:44 +00:00
Mark Felder
5635e9adc4 ftp/curl: Update to 7.50.3
- Update installed docs

PR:		212677
MFH:		2016Q3
Security:	CVE-2016-7167
2016-09-21 19:53:33 +00:00
Torsten Zuehlsdorff
ad86e61f50 lang/php70: Update from 7.0.10 to 7.0.11
Security:    CVE-2016-7416
Security:    CVE-2016-7412
Security:    CVE-2016-7414
Security:    CVE-2016-7417
Security:    CVE-2016-7413
Security:    CVE-2016-7418

MFH:         2016Q3
Approved by: pi (mentor)
2016-09-21 15:43:47 +00:00
Steve Wills
149ba7338a Unmark broken on powerpc64
These ports built successfully
2016-09-15 01:41:28 +00:00
Mathieu Arnold
dbbfc7889a GOOGLE_CODE has gone away.
- If a port has another upstream, remove GOOGLE_CODE
- If a port only has GOOGLE_CODE mark it BROKEN

Some ports have a local mirror configured but for security reasons, it
is not considered upstream.

Sponsored by:	Absolight
2016-09-14 15:59:34 +00:00
John Marino
74f2e01aa4 ftp/curl: Remove second redundant ports SSL + base GSSAPI check
If one tries to use the base gssapi with SSL from ports, gssapi.mk
will add an IGNORE entry.

Suggested by:	mat
2016-09-13 16:05:45 +00:00
Johan van Selst
48644ba0e9 Update to ocurl 0.7.8
https://raw.githubusercontent.com/ygrek/ocurl/master/CHANGES.txt
2016-09-13 15:51:47 +00:00
John Marino
5f2c34b863 ftp/curl: Remove redundant ports SSL + base GSSAPI check
If one tries to use the base gssapi with SSL from ports, gssapi.mk
will add an IGNORE entry.

Suggested by:	mat
2016-09-13 15:37:00 +00:00
John Marino
5e0773b87a LibreSSL checks: Check for libressl-devel option too
Approved by:	SSL blanket
2016-09-13 14:24:45 +00:00
Dmitry Marakasov
12de23673f - Fix LICENSE
- Add LICENSE_FILE
- Switch to options helpers
2016-09-11 16:40:59 +00:00
Dmitry Marakasov
d776d52489 - Add LICENSE
- Regenerate patches
2016-09-11 16:37:22 +00:00
John Marino
f73414f315 ftp/uftp: document SSL requirement and configure its base
Approved by:	SSL blanket
2016-09-10 18:10:16 +00:00
John Marino
97925af178 ftp/bbftp: document SSL build requirement and configure SSL properly
While here, wrap subshell commands and set the make environment
2016-09-10 18:05:43 +00:00
Tijl Coosemans
aea21b3b36 - In Uses/linux.mk use the loop variable directly when appending to
*_DEPENDS.  Helper variables derived from the loop variable aren't
  expanded causing *_DEPENDS to be incorrect.
- Bump all ports with more than one value in USE_LINUX.

PR:		211645
Reported by:	jkim
2016-09-07 12:43:22 +00:00
Tijl Coosemans
82a87de90c - Replace Mk/bsd.linux-apps.mk and Mk/bsd.linux-rpm.mk with
Mk/Uses/linux.mk.
- Replace USE_LINUX=yes with USES+=linux and USE_LINUX=(.*) with
  USES+=linux:\1 in all ports.
- Replace USE_LINUX_APPS with USE_LINUX in all ports.
- Use INSTALL_SCRIPT instead of INSTALL_PROGRAM to install scripts in some
  ports.
- When USE_LINUX_RPM is defined, simplify the way DISTFILES and EXTRACT_ONLY
  are defined.
- Remove BRANDELF_DIRS and BRANDELF_FILES handling.  In the very rare cases
  that it is still necessary ports can run ${BRANDELF} from post-patch.
- Remove AUTOMATIC_PLIST handling.  Only one port used it.
- Fix Linux MASTER_SITES.
- Replace OVERRIDE_LINUX_BASE_PORT and OVERRIDE_LINUX_NONBASE_PORTS with
  default versions framework.
- bsd.port.mk:
  - Move Linux related bits to Uses/linux.mk, except USE_LINUX_PREFIX.
  - Put USE_LINUX_PREFIX handling after USES processing.
  - Define DOCSDIR, DATADIR, etc. after handling USE_LINUX_PREFIX so it can
    give these variables a different default value.
  - When a package needs to run Linux ldconfig check before installation if
    Linux support is enabled.
- emulators/linux_base-*:
  - Use USES=linux and remove duplication.
  - Remove files/lp.  FreeBSD or CUPS lp(1) should work.
  - Remove files/yp.conf.  No longer seems to be used.
  - Remove pkg-deinstall and move pkg-install into pkg-plist.
  - Update pkg-descr and pkg-message.
  - Fix handling of ldconfig cache in pkg-plist.
- devel/fb-adb: Use a Linux shell to run a Linux script but patch the script
  to use FreeBSD mkdir so mkdir -p $path creates $path and not
  /compat/linux/$path.

PR:		211645
Exp-run by:	antoine
Approved by:	portmgr (antoine)
2016-09-05 19:23:42 +00:00
Dmitry Marakasov
1c7690d885 - Update to 2.0.1
PR:		212271
Submitted by:	bob@eager.cx (maintainer)
2016-08-31 17:00:56 +00:00
Dmitry Marakasov
bd1e15ebe6 - Update to 3.21.0
PR:		212217
Submitted by:	matthew@reztek.cz (maintainer)
2016-08-30 15:59:28 +00:00
Torsten Zuehlsdorff
a6bc455d6d lang/php56: Update from 5.6.24 to 5.6.25
PR:           212183
Submitted by: Kurt Jaeger <pi@FreeBSD.org>
Approved by:  pi (mentor)
2016-08-30 12:55:20 +00:00
Philippe Audeoud
626435dd86 - Update to 0.33 2016-08-30 07:07:22 +00:00
Tobias C. Berner
0f583d8700 Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks and
Plasma5 ports

At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When
working on the ports for KDE Frameworks and Plasma5 it seemed to be more
reasonable to create a new kde.mk instead of adding an bsd.kde5.mk.

The kde.mk in this review is a stripped down version of the one we are using in
the KDE Test repositories plasma5 branch [1] to only contain the parts relevant
to the current KDE4 ports in the portstree [2].

Changes to the KDE Ports needed by this:

Replace USE_KDE4 by USE_KDE [3]
Add USES=kde:4 [4]
[1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk
[2] The version in the plasma5 branch also handles frameworks/plasma5 and
    handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt
    Ports -- I chose to leave this out for now, as the diff is already large
    enough.
[3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we
    want is already specified as argument to kde:<arg>
[4] For KDE Frameworks and Plasma5 ports this would be kde:5

PR:             210667
Approved by:    portmgr, mat (mentor), rakuco (mentor)
Reviewed by:    mat, rakuco
Differential Revision:   https://reviews.freebsd.org/D6961
2016-08-24 08:20:31 +00:00
Rene Ladan
f4bdc9ed51 Reset sem@'s ports per his request.
With hat:	portmgr-secretary
2016-08-21 11:58:26 +00:00
Pawel Pekala
4cee49f424 - Update to version 3.20.1 [1]
- Register proxy dependencies found by stage-qa

PR:		212008 [1]
Submitted by:	maintainer [1]
2016-08-20 21:29:56 +00:00
Dmitry Marakasov
356f2dd1b2 - Resurrect ftp/rexx-curl
Rexx/CURL is an external function package providing an interface to the cURL
package. cURL is a general purpose package that allows access to any
URL-addressable resource. With Rexx/CURL you can access resources such as web
pages, ftp sites, and telnet sessions under control of your Rexx program.

WWW: http://rexxcurl.sourceforge.net/

PR:		211920
Submitted by:	bob@eager.cx
2016-08-19 13:55:56 +00:00
Dmitry Marakasov
337ff753c6 - Add LICENSE
- Drop unneeded WX_UNICODE
- Simplify installation
- Regenerate patches with `make makepatch`
2016-08-17 11:46:12 +00:00
Dmitry Marakasov
1fcae68ebc - Mark BROKEN: does not build
checking for Mono 2.0 GAC for System.Web.dll... not found
configure: error: missing reqired Mono 2.0 assembly: System.Web.dll

Reported by:	pkg-fallout
2016-08-16 08:00:18 +00:00
TAKATSU Tomonari
f153ae10d2 - Update to 1.2 2016-08-15 05:05:44 +00:00
Martin Matuska
f3636df6bd mark ftp/curl-hiphop broken, deprecated and set expiration date 2016-08-07 00:25:28 +00:00
Mark Felder
4ec371b27c ftp/curl: Update to 7.50.1
PR:		211575
MFH:		2016Q3
Security:	CVE-2016-5419
Security:	CVE-2016-5420
Security:	CVE-2016-5421
2016-08-04 14:37:12 +00:00
Mathieu Arnold
aef5a66670 Don't use extension.ini any more, and have each extension install in its
file, so the order remains the same.

Every PHP (or Zend) extension now installs its own .ini file in
/usr/local/etc/php.  A PHP extension will be automatically activated
when installed.  The order into which extensions are loaded is
automatically guessed.  In some very rare cases, the guess will be
wrong, and PHP_MOD_PRIO will need to be set.  Refer to the USES=php
section of the Porter's Handbook for more information.

Convert ports touching etc/php/extensions.ini manually, or telling the
OP to do it.

And finally, bump PORTREVISION for all php extensions.

PR:		210697
Submitted by:	mat
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D7022
2016-08-03 12:47:05 +00:00
Tijl Coosemans
21653fcc78 Use LINUX_REPO_ARCH instead of LINUX_RPM_ARCH when setting DISTINFO_FILE
and PLIST for Linux ports.  LINUX_RPM_ARCH is the CPU targetted by a
package and LINUX_REPO_ARCH is like our ARCH which is more suitable.  This
only affects Centos 6 ports because they are the only ones where
LINUX_REPO_ARCH != LINUX_RPM_ARCH.
2016-08-01 13:07:14 +00:00
Baptiste Daroussin
b132dd99a0 Fix collision with getline(3)
While here regen patches
2016-08-01 06:26:30 +00:00
Pawel Pekala
b507182029 Update to version 3.20.0
PR:		211453
Submitted by:	maintainer
2016-07-30 17:00:18 +00:00
Pawel Pekala
0ae28dede3 Update to version 0.6.1
PR:		211452
Submitted by:	maintainer
2016-07-30 16:31:23 +00:00
TAKATSU Tomonari
b42285ad1b - Update to 1.1 2016-07-29 05:43:30 +00:00
TAKATSU Tomonari
1809659a1d - Update to 1.0
- Add "compiles" argument to USES=cran
2016-07-28 10:17:21 +00:00
Rene Ladan
78450f0a5d Reset miwi@'s ports, he stepped down from the Ports Team.
With hat:	portmgr-secretary
2016-07-25 20:01:02 +00:00
Ganael LAPLANCHE
68a6edf6c4 - Update to 4.7.3
- Add missing dependency to libidn
2016-07-22 19:36:11 +00:00
Alan Somers
59073b0f72 Make pure-ftpd flags configurable in /etc/rc.conf
Recognize a "pureftpd_flags" variable in pure-ftpd's rc script. Pretty much
anything that can be placed in /usr/local/etc/pure-ftpd.conf can be placed
in this variable instead.

ftp/pure-ftpd/Makefile
	Bump PORTREVISION

ftp/pure-ftpd/files/pure-ftpd.in
	Handle pureftpd_flags. It needs special handling because, unlike
	most daemons, pure-config.pl takes its mandatory argument first and
	its optional flags last.

PR:		210311
Approved by:	maintainer-timeout
Approved by:	brd (ports)
Sponsored by:	Spectra Logic Corp
Differential Revision:	https://reviews.freebsd.org/D6676
2016-07-15 22:51:13 +00:00
John Marino
2e94d74398 security/libsodium: Upgrade version 1.0.8 => 1.0.10
Also bump all ports that depend on libsodium.

PR:		210999
Submitted by:	manu
Approved by:	vsevolod (maintainer)
2016-07-12 22:03:52 +00:00
Tijl Coosemans
d5439d7d67 Remove unused pkg-descr.
PR:		210875
Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
2016-07-07 08:42:55 +00:00
Rene Ladan
19f31a471b Remove expired ports without open PRs:
2016-07-04 security/openpgpsdk: Broken for more than 6 months
2016-07-04 security/radiusniff: Broken for more than 6 months
2016-07-04 security/pear-Auth_OpenID: Broken for more than 6 months
2016-07-04 security/sshit: Broken for more than 6 months
2016-07-04 security/ifd-slb_rf60: Broken for more than 6 months
2016-07-04 security/rainbowcrack: Broken for more than 6 months
2016-07-04 security/vlog: Broken for more than 6 months
2016-07-04 security/cryptstring: Broken for more than 6 months
2016-07-04 x11/libdnd: Broken for more than 6 months
2016-07-04 x11/xlupe: Broken for more than 6 months
2016-07-04 x11/xco: Broken for more than 6 months
2016-07-04 x11/xclick: Broken for more than 6 months
2016-07-04 devel/ocfpcsc: Broken for more than 6 months
2016-07-04 devel/dits: Broken for more than 6 months
2016-07-04 devel/ruby-cache: Broken for more than 6 months
2016-07-04 devel/rapidsvn: Broken for more than 6 months
2016-07-04 devel/svnkit: Broken for more than 6 months
2016-07-04 devel/py-EnthoughtBase: Broken for more than 6 months
2016-07-04 devel/cl-uffi: Broken for more than 6 months
2016-07-04 devel/ruby-event-loop: Broken for more than 6 months
2016-07-04 devel/libqxt: Broken for more than 6 months
2016-07-04 devel/dasm: Broken for more than 6 months
2016-07-04 devel/libopendaap: Broken for more than 6 months
2016-07-04 devel/cl-uffi-sbcl: Depends on expiring devel/cl-uffi
2016-07-04 devel/cvs2p4: Broken for more than 6 months
2016-07-04 devel/bufferpool: Broken for more than 6 months
2016-07-04 devel/ifd-test: Broken for more than 6 months
2016-07-04 devel/eric4: Broken for more than 6 months
2016-07-04 devel/uclmmbase: Broken for more than 6 months
2016-07-04 devel/obfuscatejs: Broken for more than 6 months
2016-07-04 devel/oniguruma: Broken for more than 6 months
2016-07-04 devel/libbnr: Broken for more than 6 months
2016-07-04 devel/c4: Broken for more than 6 months
2016-07-04 devel/memcheck: Broken for more than 6 months
2016-07-04 devel/liblcfg: Broken for more than 6 months
2016-07-04 devel/omake: Broken for more than 6 months
2016-07-04 devel/svndelta: Broken for more than 6 months
2016-07-04 devel/papp: Broken for more than 6 months
2016-07-04 devel/mk: Broken for more than 6 months
2016-07-04 devel/avltree: Broken for more than 6 months
2016-07-04 devel/cbind: Broken for more than 6 months
2016-07-04 devel/tclgetopts: Broken for more than 6 months
2016-07-04 devel/antlrworks: Broken for more than 6 months
2016-07-04 devel/acme: Broken for more than 6 months
2016-07-04 devel/libopensync022: Broken for more than 6 months
2016-07-04 archivers/epkg: Broken for more than 6 months
2016-07-04 print/enscriptfonts: Broken for more than 6 months
2016-07-04 print/mup: Broken for more than 6 months
2016-07-04 lang/lua-mode.el: Broken for more than 6 months
2016-07-04 lang/s9fes: Broken for more than 6 months
2016-07-04 lang/alisp: Broken for more than 6 months
2016-07-04 lang/intel2gas: Broken for more than 6 months
2016-07-04 lang/stalin: Broken for more than 6 months
2016-07-04 french/eric4: Depends on expiring devel/eric4
2016-07-04 textproc/exslt: Broken for more than 6 months
2016-07-04 textproc/xt: Broken for more than 6 months
2016-07-04 textproc/ssddiff: Broken for more than 6 months
2016-07-04 textproc/xslint: Broken for more than 6 months
2016-07-04 textproc/cbedic: Broken for more than 6 months
2016-07-04 textproc/tralics: Broken for more than 6 months
2016-07-04 textproc/docbookide.el: Broken for more than 6 months
2016-07-04 textproc/glpi-plugins-AdditionalReports: Broken for more than 6 months
2016-07-04 textproc/tdhkit: Broken for more than 6 months
2016-07-04 textproc/p5-Groonga-API: Broken for more than 6 months
2016-07-04 textproc/glpi-plugins-DataInjection: Broken for more than 6 months
2016-07-04 dns/ldnsm: Broken for more than 6 months
2016-07-04 japanese/guesswork-classic: Broken for more than 6 months
2016-07-04 japanese/texinfo: Broken for more than 6 months
2016-07-04 japanese/jyuroku: Broken for more than 6 months
2016-07-04 japanese/mtools: Broken for more than 6 months
2016-07-04 palm/pdbar: Broken for more than 6 months
2016-07-04 graphics/gplot: Broken for more than 6 months
2016-07-04 graphics/white_dune: Broken for more than 6 months
2016-07-04 graphics/whirlgif: Broken for more than 6 months
2016-07-04 graphics/libaux: Broken for more than 6 months
2016-07-04 graphics/import-pictures: Broken for more than 6 months
2016-07-04 math/xgobi: Broken for more than 6 months
2016-07-04 math/fricas: Broken for more than 6 months
2016-07-04 math/dcdflib: Broken for more than 6 months
2016-07-04 math/libneural: Broken for more than 6 months
2016-07-04 math/open-axiom: Broken for more than 6 months
2016-07-04 irc/nefarious: Broken for more than 6 months
2016-07-04 irc/slirc: Broken for more than 6 months
2016-07-04 irc/ratbox-respond: Broken for more than 6 months
2016-07-04 irc/qwebirc: Broken for more than 6 months
2016-07-04 biology/platon: Broken for more than 6 months
2016-07-04 news/slnr: Broken for more than 6 months
2016-07-04 science/jmol: Broken for more than 6 months
2016-07-04 net/nstxd: Broken for more than 6 months
2016-07-04 net/sprinkle: Broken for more than 6 months
2016-07-04 editors/ssam: Broken for more than 6 months
2016-07-04 editors/fb: Broken for more than 6 months
2016-07-04 misc/quotes: Broken for more than 6 months
2016-07-04 misc/boxquote.el: Broken for more than 6 months
2016-07-04 misc/pypanda: Broken for more than 6 months
2016-07-04 misc/cuecat: Broken for more than 6 months
2016-07-04 deskutils/displaycalibrator: Broken for more than 6 months
2016-07-04 german/eric4: Depends on expiring devel/eric4
2016-07-04 multimedia/vic: Depends on expiring devel/uclmmbase
2016-07-04 multimedia/ggrab: Broken for more than 6 months
2016-07-04 emulators/dynamips: Broken for more than 6 months
2016-07-04 emulators/dynamips-devel: Broken for more than 6 months
2016-07-04 emulators/sim6811: Broken for more than 6 months
2016-07-04 emulators/minivmac: Broken for more than 6 months
2016-07-04 cad/qcad-partslib: Broken for more than 6 months
2016-07-04 comms/dump1090_mr: Broken for more than 6 months
2016-07-04 x11-fm/asfiles: Depends on expiring x11/libdnd
2016-07-04 x11-fonts/fonts-te: Broken for more than 6 months
2016-07-04 sysutils/rsyncmanager: Broken for more than 6 months
2016-07-04 sysutils/jfbterm: Broken for more than 6 months
2016-07-04 sysutils/daedalus: Broken for more than 6 months
2016-07-04 sysutils/pcfclock: Broken for more than 6 months
2016-07-04 sysutils/vlogger: Broken for more than 6 months
2016-07-04 sysutils/bontmia: Broken for more than 6 months
2016-07-04 mail/pop3gwd: Broken for more than 6 months
2016-07-04 mail/mailtray: Broken for more than 6 months
2016-07-04 mail/pflogstats: Broken for more than 6 months
2016-07-04 mail/exact: Broken for more than 6 months
2016-07-04 mail/wmpop3: Broken for more than 6 months
2016-07-04 mail/qmail-conf: Broken for more than 6 months
2016-07-04 mail/gld: Broken for more than 6 months
2016-07-04 mail/dsbl-testers: Broken for more than 6 months
2016-07-04 mail/vqregister: Broken for more than 6 months
2016-07-04 mail/atmail: Broken for more than 6 months
2016-07-04 mail/ml: Broken for more than 6 months
2016-07-04 net-im/icb: Broken for more than 6 months
2016-07-04 net-im/cicquin: Broken for more than 6 months
2016-07-04 net-im/pidgin-manualsize: Broken for more than 6 months
2016-07-04 net-im/pidgin-rhythmbox: Broken for more than 6 months
2016-07-04 russian/eric4: Depends on expiring devel/eric4
2016-07-04 russian/fortune-bashorgru: Broken for more than 6 months
2016-07-04 www/xpi-clearfields: Broken for more than 6 months
2016-07-04 www/pecl-varnish: Broken for more than 6 months
2016-07-04 www/py-requests-oauth-hook: Broken for more than 6 months
2016-07-04 www/hudson: Broken for more than 6 months
2016-07-04 www/xpi-mldonkey: Broken for more than 6 months
2016-07-04 www/xpi-cookiesafe: Broken for more than 6 months
2016-07-04 www/trac-mastertickets: Broken for more than 6 months
2016-07-04 www/dotclear: Broken for more than 6 months
2016-07-04 www/ruby-wgettsv: Broken for more than 6 months
2016-07-04 www/wwwstat: Broken for more than 6 months
2016-07-04 www/xpi-prism: Broken for more than 6 months
2016-07-04 www/xpi-fasterfox: Broken for more than 6 months
2016-07-04 www/siteframe: Broken for more than 6 months
2016-07-04 www/py-urljr: Broken for more than 6 months
2016-07-04 www/reviewboard: Broken for more than 6 months
2016-07-04 www/xpi-tabletools: Broken for more than 6 months
2016-07-04 www/wikindx: Broken for more than 6 months
2016-07-04 www/typolight: Broken for more than 6 months
2016-07-04 www/varnish-libvmod-header: Broken for more than 6 months
2016-07-04 www/xpi-gbrain: Broken for more than 6 months
2016-07-04 www/trac-robotstxt: Broken for more than 6 months
2016-07-04 www/simplog: Broken for more than 6 months
2016-07-04 www/chtml: Broken for more than 6 months
2016-07-04 databases/postgresql_autodoc: Broken for more than 6 months
2016-07-04 databases/oracle_odbc_driver: Broken for more than 6 months
2016-07-04 databases/mysql-xql: Broken for more than 6 months
2016-07-04 databases/mysql-udf-sys: Broken for more than 6 months
2016-07-04 games/lucidlife: Broken for more than 6 months
2016-07-04 games/gma: Broken for more than 6 months
2016-07-04 games/smiley: Broken for more than 6 months
2016-07-04 games/noegnud-littlehack: Broken for more than 6 months
2016-07-04 games/sdlquake2: Broken for more than 6 months
2016-07-04 games/daimonin: Depends on expiring games/daimonin-music
2016-07-04 games/noegnud-nethack: Broken for more than 6 months
2016-07-04 games/xbomber: Broken for more than 6 months
2016-07-04 games/xwelltris: Broken for more than 6 months
2016-07-04 games/ftjava: Broken for more than 6 months
2016-07-04 games/daimonin-music: Broken for more than 6 months
2016-07-04 games/gno3dtet: Broken for more than 6 months
2016-07-04 games/qtv: Broken for more than 6 months
2016-07-04 games/xwordpy: Broken for more than 6 months
2016-07-04 games/netris: Broken for more than 6 months
2016-07-04 games/rt2-demo: Broken for more than 6 months
2016-07-04 games/noegnud-addons: Broken for more than 6 months
2016-07-04 games/noegnud-nethack-deet: Broken for more than 6 months
2016-07-04 games/live-f1: Broken for more than 6 months
2016-07-04 games/xonix: Broken for more than 6 months
2016-07-04 games/fgkicker: Broken for more than 6 months
2016-07-04 games/tank: Depends on expiring graphics/libaux
2016-07-04 games/linux-nwserver: Broken for more than 6 months
2016-07-04 games/quake2-zaero: Broken for more than 6 months
2016-07-04 games/pyching: Broken for more than 6 months
2016-07-04 games/thevalley: Broken for more than 6 months
2016-07-04 games/xroads: Broken for more than 6 months
2016-07-04 games/fxsudoku: Broken for more than 6 months
2016-07-04 games/sudoku: Broken for more than 6 months
2016-07-04 games/kmancala: Broken for more than 6 months
2016-07-04 games/plonx: Broken for more than 6 months
2016-07-04 games/wmminichess: Broken for more than 6 months
2016-07-04 games/noegnud-slashem: Broken for more than 6 months
2016-07-04 games/latrine: Broken for more than 6 months
2016-07-04 games/pysycache-themes: Broken for more than 6 months
2016-07-04 games/nibbles: Broken for more than 6 months
2016-07-04 games/hlstatsx: Broken for more than 6 months
2016-07-04 audio/streamtuner: Broken for more than 6 months
2016-07-04 audio/mangler: Broken for more than 6 months
2016-07-04 audio/hawkvoice: Broken for more than 6 months
2016-07-04 audio/alac: Broken for more than 6 months
2016-07-04 x11-wm/e-module-mpdule: Broken for more than 6 months
2016-07-04 x11-wm/e-module-tclock: Broken for more than 6 months
2016-07-04 x11-wm/musca: Broken for more than 6 months
2016-07-04 x11-wm/e-module-places: Broken for more than 6 months
2016-07-04 x11-wm/e-module-forecasts: Broken for more than 6 months
2016-07-04 x11-wm/e-module-net: Broken for more than 6 months
2016-07-04 x11-wm/e-module-penguins: Broken for more than 6 months
2016-07-04 ftp/fget: Broken for more than 6 months
2016-07-04 net-mgmt/netmond: Broken for more than 6 months
2016-07-04 net-mgmt/ipfm: Broken for more than 6 months
2016-07-04 20:48:23 +00:00
Martin Matuska
85b5e6b9ac Horde package update:
www/pear-Horde_Css_Parser 1.0.10 -> 1.0.11
devel/pear-Horde_Date 2.3.0 -> 2.3.1
databases/pear-Horde_Db 2.3.1 -> 2.3.2
databases/pear-Horde_HashTable 1.2.4 -> 1.2.5
devel/pear-Horde_Lock 2.1.2 -> 2.1.3
sysutils/pear-Horde_Vfs 2.3.2 -> 2.3.3
ftp/horde-gollem 3.0.8 -> 3.0.9
www/horde-base 5.2.10 -> 5.2.11
mail/horde-imp 6.2.14 -> 6.2.15
mail/horde-ingo 3.2.10 -> 3.2.11
deskutils/horde-kronolith 4.2.16 -> 4.2.17
deskutils/horde-mnemo 4.2.10 -> 4.2.11
deskutils/horde-nag 4.2.9 -> 4.2.10
www/horde-passwd 5.0.4 -> 5.0.5
www/horde-trean 1.1.5 -> 1.1.6
mail/horde-turba 4.2.14 -> 4.2.15
mail/horde-webmail 5.2.14 -> 5.2.15
deskutils/horde-groupware 5.2.14 -> 5.2.15
www/horde-wicked 2.0.5 -> 2.0.6
devel/horde-whups 3.0.7 -> 3.0.8
2016-07-02 20:01:22 +00:00
Dmitry Marakasov
a0d79d8d83 - Update to 3.19.0
PR:		210693
Submitted by:	matthew@reztek.cz (maintainer)
2016-06-29 14:51:28 +00:00
Dmitry Marakasov
5818f1a201 - Update to 0.5.3
PR:		210692
Submitted by:	matthew@reztek.cz (maintainer)
2016-06-29 14:51:23 +00:00
Mathieu Arnold
06b4ea3876 Replace bsd.openssl.mk with USES=ssl
Add a qa hint about needing, or not, USES=ssl.

Fix ports doing silly things, like including bsd.openssl.mk directly.

PR:		210322
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D6866
2016-06-27 11:31:10 +00:00
Sunpoet Po-Chuan Hsieh
fd3d97e192 - Add LICENSE_FILE
- Add DOCS to OPTIONS_DEFINE
- Convert to new options target helper

Approved by:	portmgr (blanket)
2016-06-26 17:24:34 +00:00
Sunpoet Po-Chuan Hsieh
df67b78492 - Update MASTER_SITES:
- Remove unresolvable bsdftpd.org
  - Add my LOCAL
- Remove BROKEN
- Unmark DEPRECATED and remove EXPIRATION_DATE

Approved by:	portmgr (blanket)
2016-06-26 17:24:30 +00:00
Sunpoet Po-Chuan Hsieh
5490165e73 - Update to 7.49.1
Changes:	http://curl.haxx.se/changes.html
2016-06-26 17:13:00 +00:00
Mathieu Arnold
fd95fdbe01 Make it possible to have bsd.default-versions.mk included before any
other bsd.*.mk file.

Restore the way ftp/curl was working before.

With hat:	portmgr
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D6921
2016-06-23 10:19:02 +00:00
Vasil Dimov
80d3d8a396 ftp/wget: fix compilation when IDN and NLS are disabled
PR:		210441
Submitted by:	Helge Oldach <freebsd@oldach.net>
2016-06-21 19:52:42 +00:00
Mathieu Arnold
6d721c93f3 Update to 0.32.
Sponsored by:	Absolight
2016-06-21 15:08:34 +00:00
Mathieu Arnold
95a28e9c7a Rename all three p5-ReadLine-(Gnu,Perl,TTYtter) to their real names
p5-Term-ReadLine-(Gnu,Perl,TTYtter).

I can't find any reason for p5-ReadLine-Gnu to have been added as
ReadLine-Gnu instead of Term-ReadLine-Gnu twenty years ago.

devel/p5-Term-ReadLine-Perl was added as a dupplicate a few years back
where it should not have, so change its maintainer to be perl@ like
devel/p5-ReadLine-Perl had.

Sponsored by:	Absolight
2016-06-21 13:24:53 +00:00
Vasil Dimov
e3f979f6fd ftp/wget: Upgrade from 1.16.3_1 to 1.18
PR:		210421
Submitted by:	Vladimir Krstulja <vlad-fbsd@acheronmedia.com>
Security:	CVE-2016-4971
2016-06-21 08:02:57 +00:00
Tijl Coosemans
e079e58681 Update Linux ports to Centos 6.8.
PR:		210373
Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>
Differential Revision:	https://reviews.freebsd.org/D6891
2016-06-20 17:13:26 +00:00
Mathieu Arnold
208853dd74 Unbreak.
Sponsored by:	Absolight
2016-06-16 22:11:43 +00:00
Mathieu Arnold
d402fcb48d Fix when PORTSDIR doesn't exist at that point. (Which, I think, doesn't
happen outside of portsnap's infrastructure).

Sponsored by:	Absolight
2016-06-16 13:44:14 +00:00
Mathieu Arnold
5b55a8a53e Fix usage of WITH_OPENSSL_BASE, WITH_OPENSSL_PORT and OPENSSL_PORT.
WITH_OPENSSL_* can't be set after bsd.port.pre.mk.
Fold all other usage into using SSL_DEFAULT == foo

PR:		210149
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	The FreeBSD Foundation, Absolight
Differential Revision:	https://reviews.freebsd.org/D6577
2016-06-16 13:23:13 +00:00
Bernard Spil
70ce3fa5ec ftp/pavuk: Fix build with OpenSSL 1.1 / LibreSSL
- Replace deprecated des_ methods with their DES_ equivalents

PR:		198333
Sponsored by:	BSDCan 2016
2016-06-12 17:17:01 +00:00
Dmitry Marakasov
b51002a3bf - Update to 3.18.0
PR:		209847
Submitted by:	matthew@reztek.cz (maintainer)
2016-06-03 16:58:36 +00:00
Dmitry Marakasov
a97d10475f - Update to 0.5.2
PR:		209846
Submitted by:	matthew@reztek.cz (maintainer)
2016-06-03 16:58:31 +00:00
Antoine Brodin
c31defa0fc Deprecate ports broken for more than 6 months 2016-06-03 16:44:58 +00:00
Rene Ladan
059340ceb7 Remove expired misc/kdehier4 and update all of its consumers to not reference it any
longer. This is a no-op because KDE4_PREFIX is equal to LOCALBASE

Fix up properties for misc/kde4-l10n/files/bsd.l10n.mk to make svn happy.

PR:		209014 (partial)
Submitted by:	myself
Approved by:	portmgr (bapt)
Differential Revision:	https://reviews.freebsd.org/D6542
2016-05-25 20:56:06 +00:00
Dmitry Marakasov
c86e9d9724 Remove NLS, DOCS, EXAMPLES and IPV6 from OPTIONS_DEFAULT, they are enabled by default anyway and don't need to be listed
Approved by:	portmgr blanket
2016-05-23 20:35:01 +00:00
Dmitry Marakasov
54a08f6954 Convert tab after WWW: in pkg-descrs to single space as per PHB
Approved by:	portmgr blanket
2016-05-23 18:36:52 +00:00
Sunpoet Po-Chuan Hsieh
058292829e - Update to 7.49.0
- Fix shebang

Changes:	http://curl.haxx.se/changes.html
2016-05-23 03:49:47 +00:00
Ganael LAPLANCHE
bd6b784965 Update to 4.7.2 2016-05-20 20:43:50 +00:00
Dmitry Marakasov
652069fa2d - Fix trailing whitespace in Makefiles
Approved by:	portmgr blanket
2016-05-19 10:57:35 +00:00
Dmitry Marakasov
1d1f878054 - Fix trailing whitespace in pkg-descrs, categories [a-f]*
Approved by:	portmgr blanket
2016-05-19 10:21:23 +00:00
Johan van Selst
bbbd9c24be Update to ocaml-ocurl 0.7.7 2016-05-16 15:30:08 +00:00
Dmitry Marakasov
0a1c7c79e0 - Update to 3.17.0.1
- While here, add some minor fixes (clarify LICENSE, remove NLS from OPTIONS_DEFAULT (already there by default) and silence post-patch)

PR:		209417
Submitted by:	matthew@reztek.cz (maintainer)
2016-05-11 13:05:34 +00:00
Dmitry Marakasov
403e65d418 - Fix typo in pkg-descr
Approved by:	portmgr blanket
2016-05-11 00:32:24 +00:00
Dmitry Marakasov
56c240bef2 - Update to 0.5.1
- While here, fix license

PR:		209416
Submitted by:	matthew@reztek.cz (maintainer)
2016-05-10 19:17:33 +00:00
Martin Matuska
0fa676e718 Include bsd.port.options.mk
PR:	ports/209199
2016-05-04 18:06:57 +00:00
Steve Wills
462519941e Convert USES=gem:autoplist to USES=gem since autoplist is default 2016-04-27 21:57:31 +00:00
Steve Wills
b3e8fe8d85 create USES=gem and update rubygem- ports to use it
Note that for now ports still have to have USE_RUBY=yes to use USES=gem

PR:		209041
Differential Revision:	https://reviews.freebsd.org/D6070
2016-04-27 16:36:41 +00:00
Mathieu Arnold
21bc5c0345 Remove USE_SQLITE from bsd.databases.mk, replaced by USES=sqlite.
While there replace USE_SQLITE=x by USES=sqlite:x.

PR:		208971
Submitted by:	mat
Exp-run by:	antoine
With hat:	portmgr
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D5951
2016-04-25 16:13:38 +00:00
Kurt Jaeger
59a8989b34 ftp/libftpzilla: set USES=iconv:wchar_t after last commit
PR:		208121
Submitted by:	<matthew@reztek.cz> (maintainer), gblach
2016-04-24 13:50:53 +00:00
Kurt Jaeger
2c5e1e3221 ftp/libfilezilla: 0.4.0.1 -> 0.5.0
ftp/filezilla: 3.16.0 -> 3.17.0

Changes:
  https://filezilla-project.org/changelog.php

PR:		208999, 209000
Submitted by:	<matthew@reztek.cz> (maintainer)
2016-04-24 07:44:09 +00:00
Grzegorz Blach
a1ce4e28be Always link against iconv with wchar_t extension
PR:		208121
Submitted by:	mikael.urankar <at> gmail <dot> com
Approved by:	maintainer timeout
2016-04-21 20:11:31 +00:00
Steve Wills
86cd4fbe5a many ports: mark broken on powerpc64 2016-04-21 16:43:14 +00:00
Martin Matuska
5badf07ae7 Update security/proftpd-mod_clamav to 0.14rc2 2016-04-20 12:18:21 +00:00
Martin Matuska
c28fe61060 Update proftpd to 1.3.5b
Optionsify port

PR:		208909
2016-04-20 12:05:10 +00:00
Sunpoet Po-Chuan Hsieh
e0e70e3b93 - Update to 0.31
- Add LICENSE_FILE
- Avoid interactive prompt

Changes:	http://search.cpan.org/dist/Net-FTPSSL/Changes
2016-04-16 16:45:24 +00:00
Sunpoet Po-Chuan Hsieh
e1fca52a1f - Add LICENSE_FILE 2016-04-16 11:22:20 +00:00
Sunpoet Po-Chuan Hsieh
8e8b513bfb - Update to 0.9.3
Changes:	https://github.com/taf2/curb/commits/master
2016-04-14 16:40:17 +00:00
TAKATSU Tomonari
82362accad - Update to 0.9.7 2016-04-14 11:03:33 +00:00
Steve Wills
a5aebf960e CentOS ports: for c6_64, install 32bit libraries alongside
PR:		206943
Submitted by:	xmj
2016-04-13 01:49:24 +00:00
Ganael LAPLANCHE
0c66bf8a7d Fix build with libc++ 3.8.0
PR:		208727
Submitted by:	dim
2016-04-11 21:20:41 +00:00
Sunpoet Po-Chuan Hsieh
8cec9dd00d - Update to 0.9.2
Changes:	https://github.com/taf2/curb/commits/master
2016-04-11 17:26:52 +00:00
Sunpoet Po-Chuan Hsieh
848eb75b28 - Update to 0.13.0
- Bump PORTREVISION for dns/libpsl shlib change

Changes:	https://github.com/rockdaboot/libpsl/blob/master/NEWS
2016-04-09 12:29:38 +00:00
Ganael LAPLANCHE
a884de998f Update to 4.7.1 2016-04-06 20:23:40 +00:00
Dmitry Sivachenko
7c6d48b1ed Update to version 4.9.2. 2016-04-03 18:39:19 +00:00
Mathieu Arnold
4e1b79a0a6 Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 14:00:51 +00:00
Mathieu Arnold
999161a9ed Fixup some whitespace at the beginning of lines problems.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 13:18:17 +00:00
Tijl Coosemans
6bc6f3a9e0 - Update security/gnutls to 3.4.10.
- 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)
2016-03-27 14:57:59 +00:00
Martin Matuska
75bb4aa2d7 Horde package update:
comms/pear-Horde_ActiveSync 2.31.2 -> 2.31.8
devel/pear-Horde_Alarm 2.2.6 -> 2.2.7
www/pear-Horde_Browser 2.0.11 -> 2.0.12
devel/pear-Horde_Cache 2.5.2 -> 2.5.3
archivers/pear-Horde_Compress 2.1.4 -> 2.1.5
devel/pear-Horde_Core 2.22.6 -> 2.23.0
security/pear-Horde_Crypt 2.7.0 -> 2.7.2
devel/pear-Horde_Date 2.2.0 -> 2.3.0
devel/pear-Horde_Exception 2.0.7 -> 2.0.8
www/pear-Horde_Form 2.0.12 -> 2.0.13
security/pear-Horde_Group 2.1.0 -> 2.1.1
devel/pear-Horde_Icalendar 2.1.3 -> 2.1.4
graphics/pear-Horde_Image 2.3.4 -> 2.3.5
mail/pear-Horde_Imap_Client 2.29.5 -> 2.29.6
devel/pear-Horde_Itip 2.1.1 -> 2.1.2
textproc/pear-Horde_JavascriptMinify 1.1.2 -> 1.1.3
devel/pear-Horde_LoginTasks 2.0.6 -> 2.0.7
mail/pear-Horde_Mail_Autoconfig 1.0.2 -> 1.0.3
mail/pear-Horde_Mapi 1.0.6 -> 1.0.8
mail/pear-Horde_Mime 2.9.3 -> 2.9.4
mail/pear-Horde_Mime_Viewer 2.1.2 -> 2.1.3
devel/pear-Horde_Nls 2.1.0 -> 2.1.1
security/pear-Horde_Perms 2.1.6 -> 2.1.7
devel/pear-Horde_Prefs 2.7.5 -> 2.7.6
net/pear-Horde_Rpc 2.1.6 -> 2.1.7
security/pear-Horde_Share 2.0.8 -> 2.0.10
mail/pear-Horde_Smtp 1.9.2 -> 1.9.3
net/pear-Horde_Socket_Client 2.1.0 -> 2.1.1
textproc/pear-Horde_Text_Filter 2.3.3 -> 2.3.4
devel/pear-Horde_Timezone 1.0.10 -> 1.0.11
devel/pear-Horde_Token 2.0.8 -> 2.0.9
sysutils/pear-Horde_Vfs 2.3.1 -> 2.3.2
www/horde-ansel 3.0.3 -> 3.0.4
ftp/horde-gollem 3.0.7 -> 3.0.8
www/horde-base 5.2.9 -> 5.2.10
mail/horde-imp 6.2.12 -> 6.2.13
mail/horde-ingo 3.2.8 -> 3.2.9
deskutils/horde-kronolith 4.2.15 -> 4.2.16
deskutils/horde-mnemo 4.2.9 -> 4.2.10
deskutils/horde-nag 4.2.7 -> 4.2.8
www/horde-trean 1.1.4 -> 1.1.5
mail/horde-turba 4.2.12 -> 4.2.13
mail/horde-webmail 5.2.12 -> 5.2.13
deskutils/horde-groupware 5.2.12 -> 5.2.13
www/horde-wicked 2.0.4 -> 2.0.5
2016-03-24 07:39:22 +00:00
Sunpoet Po-Chuan Hsieh
a545499856 - Update to 7.48.0
Changes:	http://curl.haxx.se/changes.html
2016-03-23 19:24:16 +00:00
Vsevolod Stakhov
7349ed49cd - Update libsodium to 1.0.8
- Bump revisions of all dependant ports

PR:		206482
Submitted by:	lev, w.schwarzenfeld@aon.at
2016-03-23 09:20:35 +00:00
Dmitry Sivachenko
adca689c5f Update to version 4.9.1 2016-03-16 08:23:16 +00:00
Mark Felder
a4a856b7f3 ftp/filezilla: Update to 3.16.0
PR:		207690
2016-03-15 16:49:35 +00:00
Mark Felder
5403c2f7ca ftp/libfilezilla: Update to 0.4.0.1
PR:		207689
2016-03-15 16:47:29 +00:00
Sunpoet Po-Chuan Hsieh
465b634bd8 - Fix build with RTMP enabled
PR:		207513
Submitted by:	Alexandr Matveev <timon@timon.net.nz>
2016-03-13 14:56:12 +00:00
Sunpoet Po-Chuan Hsieh
5b1654593e - Update to 7.47.1
Changes:	http://curl.haxx.se/changes.html
2016-03-06 06:19:41 +00:00
TAKATSU Tomonari
a9e48fa4fa - Update to 1.95-4.8 2016-03-02 23:43:55 +00:00
Li-Wen Hsu
9ff641729e - Update maintainer's email address
Submitted by:	maintainer (via facebook chat)
2016-03-02 05:41:03 +00:00
Dmitry Sivachenko
f771220702 Update to version 4.9 2016-02-29 09:04:38 +00:00
Martin Wilke
e5650219be - Ignore php7 2016-02-28 06:52:36 +00:00
Raphael Kubo da Costa
73dc246493 Update to 0.3.12.
Release notes: http://www.bareftp.org/news/?p=279
Basically, there are only translation updates.

While here:
- Replace patch-configure and patch-po-LINGUAS (which were basically working
  around the GNU sed-isms in m4/shamrock/i18n.m4) with an awk call in the
  configure script.
2016-02-21 16:06:29 +00:00
Gabor Pali
dc08613aa9 - A couple of fixes for bsd.cabal.mk:
- Retire USE_GHC_NATIVE: it is not needed any more
  - Do not rely on DISTNAME for setting CABAL_LIBSUBDIR: this caused problems
    when using USE_GITHUB
  - Improve integration with print/hs-hscolour

Obtained from:	FreeBSD Haskell
2016-02-19 20:49:11 +00:00
TAKATSU Tomonari
613442dcfe - Update to 0.9.6 2016-02-19 04:58:21 +00:00
Martin Wilke
e630e52bb5 Welcome php 7.0.3
Changelog:
    http://php.net/ChangeLog-7.php#7.0.0
    http://php.net/ChangeLog-7.php#7.0.1
    http://php.net/ChangeLog-7.php#7.0.2
    http://php.net/ChangeLog-7.php#7.0.3

I'd like to thanks:
  Kurt Jaeger
  Matthias Breddin
  Rainer Duffner
  Victor van Vlaardingen
  Torsten Zuehlsdorff
  Franco Fichtner
  and all helpers and testers from ports@.
2016-02-15 14:34:26 +00:00
Rene Ladan
d5ce1f73bc Remove PHP 5.4 from the Ports Tree, it expired upstream in 2015-Q3 and the
ports expired last month.

Adjust Mk/bsd.php.mk

Reviewed by:	antoine, marino
Approved by:	portmgr (antoine)
Differential Revision:	https://reviews.freebsd.org/D5278
2016-02-14 19:21:31 +00:00
Dmitry Marakasov
6cb0fa86ae - Remove obsolete hack, all supported FreeBSD versions have required POSIX_FADV_* macros
- Switch to USES=localbase

Approved by:	portmgr blanket
2016-02-12 15:55:46 +00:00
Roman Bogorodskiy
2df1c2f5b0 ftp/libfilezilla: fix build on 10.1
PR:		206981
Submitted by:	matthew@reztek.cz (maintainer)
2016-02-07 14:35:15 +00:00
Ruslan Makhmatkhanov
0e04b930d9 ftp/filezilla: update to 3.15.0.1
- update to 3.15.0.1
- utilize USES=localbase to set correct CFLAGS/LDFLAGS [1]

PR:		206854
Submitted by:	matthew@reztek.cz (maintainer)
Submitted by:   koobs [1]
2016-02-05 17:47:04 +00:00
Ruslan Makhmatkhanov
c05148a4eb libfilezilla is a small and modern C++ library, offering some basic
functionality to build high-performing, platform-independent programs.

Some of the highlights include:

* A typesafe, multi-threaded event system that's very simple to use yet
  extremely efficient
* Timers for periodic events
* A datetime class that not only tracks timestamp but also their accuracy,
  which simplifies dealing with timestamps originating from different sources
* Simple process handling for spawning child processes with redirected I/O

WWW: http://lib.filezilla-project.org/

PR:		206861
Submitted by:	matthew@reztek.cz
2016-02-05 17:37:29 +00:00
Dmitry Sivachenko
546799ed5c Update to 4.8.1. 2016-02-05 09:08:39 +00:00
John Marino
a313188808 ftp/ncftp3: document ncurses requirement (USES+=ncurses) 2016-02-03 21:40:37 +00:00
John Marino
56954dba49 ftp/tnftp: document ncurses requirement (USES+=ncurses)
approved by:	infrastructure blanket
2016-02-03 21:39:16 +00:00
John Marino
d5f0b3e59b ftp/cftp: document ncurses requirement (USES+=ncurses) 2016-02-03 21:38:11 +00:00
Sunpoet Po-Chuan Hsieh
2f376f89ab - Add METALINK option
PR:		205875
Submitted by:	Matthieu Volat <mazhe@alkumuna.eu>
2016-02-03 20:54:46 +00:00
Martin Matuska
817ca149ff Horde package update:
comms/pear-Horde_ActiveSync 2.30.2 -> 2.30.6
devel/pear-Horde_Alarm 2.2.5 -> 2.2.6
devel/pear-Horde_Argv 2.0.11 -> 2.0.12
security/pear-Horde_Auth 2.1.10 -> 2.1.11
devel/pear-Horde_Autoloader 2.1.1 -> 2.1.2
www/pear-Horde_Browser 2.0.10 -> 2.0.11
devel/pear-Horde_Cache 2.5.0 -> 2.5.2
archivers/pear-Horde_Compress 2.1.3 -> 2.1.4
archivers/pear-Horde_Compress_Fast 1.1.0 -> 1.1.1
devel/pear-Horde_Constraint 2.0.2 -> 2.0.3
devel/pear-Horde_Controller 2.0.3 -> 2.0.4
devel/pear-Horde_Core 2.22.3 -> 2.22.5
security/pear-Horde_Crypt 2.6.1 -> 2.7.0
security/pear-Horde_Crypt_Blowfish 1.1.0 -> 1.1.1
www/pear-Horde_Css_Parser 1.0.7 -> 1.0.8
devel/pear-Horde_Data 2.1.3 -> 2.1.4
devel/pear-Horde_Date 2.1.1 -> 2.2.0
devel/pear-Horde_Date_Parser 2.0.4 -> 2.0.5
databases/pear-Horde_Db 2.3.0 -> 2.3.1
devel/pear-Horde_Exception 2.0.6 -> 2.0.7
www/pear-Horde_Feed 2.0.3 -> 2.0.4
www/pear-Horde_Form 2.0.11 -> 2.0.12
security/pear-Horde_Group 2.0.5 -> 2.1.0
databases/pear-Horde_HashTable 1.2.3 -> 1.2.4
devel/pear-Horde_History 2.3.5 -> 2.3.6
www/pear-Horde_Http 2.1.5 -> 2.1.6
devel/pear-Horde_Icalendar 2.1.2 -> 2.1.3
dns/pear-Horde_Idna 1.0.3 -> 1.0.4
graphics/pear-Horde_Image 2.3.3 -> 2.3.4
mail/pear-Horde_Imap_Client 2.29.4 -> 2.29.5
devel/pear-Horde_Injector 2.0.4 -> 2.0.5
devel/pear-Horde_Itip 2.1.0 -> 2.1.1
mail/pear-Horde_ListHeaders 1.2.2 -> 1.2.3
devel/pear-Horde_Lock 2.1.1 -> 2.1.2
sysutils/pear-Horde_Log 2.1.2 -> 2.1.3
devel/pear-Horde_LoginTasks 2.0.5 -> 2.0.6
mail/pear-Horde_Mail 2.6.2 -> 2.6.3
mail/pear-Horde_Mapi 1.0.5 -> 1.0.6
mail/pear-Horde_Mime 2.9.2 -> 2.9.3
mail/pear-Horde_Mime_Viewer 2.1.1 -> 2.1.2
devel/pear-Horde_Notification 2.0.3 -> 2.0.4
archivers/pear-Horde_Pack 1.0.5 -> 1.0.6
textproc/pear-Horde_Pdf 2.0.6 -> 2.0.7
devel/pear-Horde_Prefs 2.7.4 -> 2.7.5
devel/pear-Horde_Rdo 2.0.4 -> 2.0.5
www/pear-Horde_Routes 2.0.4 -> 2.0.5
net/pear-Horde_Rpc 2.1.5 -> 2.1.6
security/pear-Horde_Secret 2.0.5 -> 2.0.6
devel/pear-Horde_Serialize 2.0.4 -> 2.0.5
www/pear-Horde_SessionHandler 2.2.5 -> 2.2.7
security/pear-Horde_Share 2.0.7 -> 2.0.8
mail/pear-Horde_Smtp 1.9.1 -> 1.9.2
net/pear-Horde_Socket_Client 2.0.0 -> 2.1.0
textproc/pear-Horde_SpellChecker 2.1.2 -> 2.1.3
devel/pear-Horde_Stream 1.6.2 -> 1.6.3
devel/pear-Horde_Stream_Filter 2.0.3 -> 2.0.4
devel/pear-Horde_Stream_Wrapper 2.1.2 -> 2.1.3
devel/pear-Horde_Support 2.1.4 -> 2.1.5
comms/pear-Horde_SyncMl 2.0.5 -> 2.0.6
www/pear-Horde_Template 2.0.2 -> 2.0.3
textproc/pear-Horde_Text_Diff 2.1.1 -> 2.1.2
textproc/pear-Horde_Text_Filter 2.3.2 -> 2.3.3
textproc/pear-Horde_Text_Flowed 2.0.2 -> 2.0.3
devel/pear-Horde_Timezone 1.0.9 -> 1.0.10
devel/pear-Horde_Token 2.0.7 -> 2.0.8
devel/pear-Horde_Translation 2.2.0 -> 2.2.1
net/pear-Horde_Url 2.2.4 -> 2.2.5
devel/pear-Horde_Util 2.5.6 -> 2.5.7
sysutils/pear-Horde_Vfs 2.3.0 -> 2.3.1
devel/pear-Horde_View 2.0.5 -> 2.0.6
textproc/pear-Horde_Xml_Element 2.0.3 -> 2.0.4
textproc/pear-Horde_Xml_Wbxml 2.0.2 -> 2.0.3
ftp/horde-gollem 3.0.6 -> 3.0.7
www/horde-base 5.2.8 -> 5.2.9
mail/horde-imp 6.2.11 -> 6.2.12
mail/horde-ingo 3.2.7 -> 3.2.8
deskutils/horde-kronolith 4.2.11 -> 4.2.12
deskutils/horde-mnemo 4.2.8 -> 4.2.9
deskutils/horde-nag 4.2.6 -> 4.2.7
devel/horde-timeobjects 2.1.0 -> 2.1.1
www/horde-trean 1.1.3 -> 1.1.4
mail/horde-turba 4.2.11 -> 4.2.12
mail/horde-webmail 5.2.11 -> 5.2.12
devel/horde-whups 3.0.5 -> 3.0.6
2016-02-02 22:56:26 +00:00
Sunpoet Po-Chuan Hsieh
fb3100e560 - Remove GSSAPI_*_DESC 2016-02-01 19:47:30 +00:00
Niclas Zeising
ad6321ab88 Update to 7.47.0
PR:		206756
Submitted by:	zeising
Approved by:	ports-secteam (miwi)
MFH:		2016Q1
Security:	CVE-2016-0755
2016-02-01 17:04:13 +00:00
Dmitry Marakasov
2a81a3e9a7 - Add LICENSE
- Add NO_ARCH
- Switch to options helpers
2016-02-01 10:13:51 +00:00
Dmitry Marakasov
7001383d1d - Add LICENSE_FILE
- Switch to USES=localbase
- Switch to options helpers
- Don't install license as documentation
2016-02-01 10:13:38 +00:00
Dmitry Marakasov
3d4b605cf9 - Clarify LICENSE
- Add LICENSE_FILE
- Switch to USES=localbase
- Switch to options helpers
2016-02-01 10:13:35 +00:00
Dmitry Marakasov
0622f909d8 - Add LICENSE
- Switch to options helpers
2016-02-01 10:13:29 +00:00
Dmitry Marakasov
b5838b922d - Clarify LICENSE
- Add LICENSE_FILE
- Switch to USES=localbase
- Switch to options helpers
2016-01-31 21:46:33 +00:00
Dmitry Marakasov
2c756d450e - Add LICENSE
- Switch to options helpers
2016-01-31 18:03:03 +00:00
Martin Wilke
a234e43dd7 Welcome Centos 6.7
- Upgrade all linux-c6- to CentOS 6.7
- Cleanups

PR:                     205846
Submitted by:           xmj
In Collaboration with:  allanjude, netchild, xmj
Exp-run:                antoine
Sponsored by:           Perceivon Hosting Inc.
Differential Revision:  D3428

We'd like to thanks for all the feedback and comments.
2016-01-30 18:30:40 +00:00
TAKATSU Tomonari
1419bfea36 - Update to 0.9.5
- Cosmetic change
2016-01-27 05:47:13 +00:00
Ganael LAPLANCHE
926bdab70c Update to 4.6.5 2016-01-19 20:06:47 +00:00
Sunpoet Po-Chuan Hsieh
5463fbd802 - Update to 0.9.1
- Add LICENSE_FILE

Changes:	https://github.com/taf2/curb/commits/master
Sponsored by:	PortsCamp Taiwan
2016-01-17 13:21:02 +00:00
Sunpoet Po-Chuan Hsieh
26b7f9b547 - Add PSL option
Sponsored by:	PortsCamp Taiwan
2016-01-17 13:08:15 +00:00
Sunpoet Po-Chuan Hsieh
0b86af1a58 - Update to 7.21.5
Changes:	http://pycurl.sourceforge.net/doc/release-notes.html
2016-01-12 21:37:14 +00:00
Sunpoet Po-Chuan Hsieh
65d56b3826 - Simplify Makefile:
- Use USES=localbase unconditionally
  - Use *_CONFIGURE_{ENABLE,WITH}
- Bump PORTREVISION for package change

Differential Revision:	https://reviews.FreeBSD.org/D4757
PR:		205804
Exp-run by:	antoine
Accepted by:	bapt (portmgr)
2016-01-12 21:36:59 +00:00
Dmitry Marakasov
b9398223bd Convert LICENSE= "GPLxx # or later" to "GPLxx+"
Approved by:	portmgr blanket
2016-01-12 16:20:31 +00:00
Dirk Meyer
7ebb9b3699 - update to 3.0.3 2016-01-07 15:59:51 +00:00
Mikhail Teterin
3206b18beb Use the ZIP-compressed sources instead of the uncompressed .tar, which
is about 4 times bigger.

PR:		205964
Approved by:	maintainer
2016-01-06 17:12:45 +00:00
Dmitry Sivachenko
de11cfdb73 Update to version 4.8 2016-01-06 13:02:15 +00:00
Koop Mast
353ad9c72e Update GStreamer1 to 1.6.2.
Update GStreamer1-vaapi to 0.7.0.

* Spell GStreamer consistently. [1]
* Fix typo in py3kplist in py3-gstreamer1 [1]
* Improve plugins COMMENTS (more improvements welcome)
* Actually include the gstreamer1-libav update this time.

PR:		204204 [1] (based on)
Submitted by:	olivierd@ [1]
2016-01-04 14:21:56 +00:00
Raphael Kubo da Costa
0ac18bd8a7 Fix MASTER_SITES and unmark broken. 2015-12-28 23:19:55 +00:00
Raphael Kubo da Costa
d5a30f1f2f Fix MASTER_SITES and unmark broken. 2015-12-28 23:19:05 +00:00
Sunpoet Po-Chuan Hsieh
d1e80d7988 - Remove superfluous character 2015-12-27 15:09:18 +00:00
Alex Kozlov
f15516c296 - Fix various distinfo issues
Approved by:	portmgr blanket
2015-12-24 11:41:32 +00:00
Rene Ladan
843d4f18ec Remove expired ports:
2015-12-09 www/py-django-pipeline12: Django 1.4 extended support ended on 2015-10-01
2015-12-09 www/py-django14: Django 1.4 extended support ended on 2015-10-01
2015-12-12 net/py-pysphere: No longer maintained, please use net/py-pyvmomi by VMware
2015-12-13 ftp/ftpcube: No releases for 8+ years, no supporting newer wxWidget
2015-12-13 astro/libroadnav: No releases for 8+ years, no supporting newer wxWidget
2015-12-13 astro/roadnav: No releases for 8+ years, no supporting newer wxWidget
2015-12-15 20:33:56 +00:00