| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
- Reformat PKGMESSAGE
Changes: https://github.com/jedisct1/pure-ftpd/releases
|
|
|
|
|
| |
Changes: https://github.com/jedisct1/pure-ftpd/releases
https://github.com/jedisct1/pure-ftpd/blob/master/ChangeLog
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
locale set by the user. Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well. The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.
Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).
PR: 215882
Exp-run by: antoine
Approved by: portmgr (antoine)
|
|
|
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION for package change
Note: author pointed out that users will get a more secure cipher suite by not
setting TLSCipherSuite to HIGH and just use the default.
PR: 215906
Reported by: <yani@pi-greece.eu>
Obtained from: https://github.com/jedisct1/pure-ftpd/commit/3823d00dee089b998d1f40943e9aa3f619c238b2
|
|
|
|
|
|
|
|
| |
- Clean up MASTER_SITES
- Convert to options target helper
- Update WWW
Changes: https://github.com/jedisct1/pure-ftpd/releases
|
|
|
|
|
|
| |
- Use USES=ssl
Changes: https://github.com/jedisct1/pure-ftpd/releases
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
Also bump all ports that depend on libsodium.
PR: 210999
Submitted by: manu
Approved by: vsevolod (maintainer)
|
| |
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
|
|
|
|
|
|
|
| |
- Bump revisions of all dependant ports
PR: 206482
Submitted by: lev, w.schwarzenfeld@aon.at
|
|
|
|
| |
Changes: https://github.com/jedisct1/pure-ftpd/blob/master/ChangeLog
|
|
|
|
|
|
| |
- Remove TLS_CERTFILE: it is added to pure-ftpd.conf and configurable at runtime
Changes: https://github.com/jedisct1/pure-ftpd/blob/master/ChangeLog
|
|
|
|
| |
Changes: https://github.com/jedisct1/pure-ftpd/blob/master/ChangeLog
|
|
|
|
|
|
|
| |
- Bump revision for dependent ports
PR: 200548 [1]
Submitted by: rsimmons0 at gmail.com [1]
|
|
|
|
| |
Changes: https://github.com/jedisct1/pure-ftpd/blob/master/ChangeLog
|
|
|
|
| |
Changes: https://github.com/jedisct1/pure-ftpd/blob/master/ChangeLog
|
|
|
|
| |
Submitted by: koobs
|
|
|
|
| |
since r384380
|
|
|
|
|
| |
PR: 199732
Submitted by: Philip Jocks <freebsdbugs@filis.org>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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)
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add SCRYPT option (on by default)
- Complete CONFIGURE_ARGS
- Add git repository to WWW
Note that this version includes several security changes:
- SSLv2 and SSLv3 are refused by default
- DES-hashed passwords are not supported
- RC4 was killed
Changes: https://github.com/jedisct1/pure-ftpd/blob/master/ChangeLog
|
|
|
|
|
| |
- Allow to change location of pid files
- Bump PORTREVISION for package change
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Convert to USES=libtool and bump dependent ports
- Avoid USE_AUTOTOOLS
- Don't use PTHREAD_LIBS
- Use MAKE_CMD
databases/glom:
- Drop :keepla
- Add INSTALL_TARGET=install-strip
databases/libgda4* databases/libgda5*:
- Convert to USES=libtool and bump dependent ports
- USES=tar:xz
- Use INSTALL_TARGET=install-strip
- Use @sample
databases/libgdamm:
- Drop :keepla
- USES=tar:bzip2
- Use INSTALL_TARGET=install-strip
databases/libgdamm5:
- Add INSTALL_TARGET=install-strip
- Drop --enable-static (inherited from old repocopy)
devel/anjuta x11-toolkits/py-gnome-extras:
- Drop :keepla
dns/powerdns dns/powerdns-devel:
- Convert to USES=libtool
- Add INSTALL_TARGET=install-strip
- Disable static modules
- Stop creating library symlinks with .0 suffix, not needed for dynamically
opened modules
mail/dovecot2:
- Add USES=libtool
mail/dovecot2-pigeonhole:
- Drop CONFIGURE_TARGET (incorrect for Dragonfly)
- Add USES=libtool and INSTALL_TARGET=install-strip
math/gnumeric:
- USES=libtool tar:xz
Approved by: portmgr (implicit, bump unstaged ports)
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Reorder variables
- Assign default value for
- pureftpd_authd_enable
- pureftpd_authsocket: remove detection via pure-config.pl
- pureftpd_upload_enable
- Remove duplicate pidfile_authd
- Simplify script
- Bump PORTREVISION for package change
MFH: 2014Q2
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- Indent rc script
- Cosmetic change
- Bump PORTREVISION for package change
PR: ports/163339 [1], ports/180992 [2] (based on)
Submitted by: Gabor HALASZ <halasz.g@freemail.hu> [1]
Ari Maniatis <ari@ish.com.au> [2]
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Sort OPTIONS
- Convert to new options helper
- Fix shebang
- Reword pre-fetch: message and change variables:
- Change CERTFILE to TLS_CERTFILE
- Change WITH_LANG to LANG
- Support STAGEDIR
- Simplify Makefile
- Cosmetic change
- Reformat pkg-descr
|
|
|
|
| |
Suggested by: eadler
|
|
|
|
| |
ftp)
|
| |
|
| |
|
|
|
|
| |
Approved by: portmgr (bdrewery)
|
|
|
|
|
| |
PR: ports/176614
Requested by: Ilya Pizik <ilya.pizik@gmail.com>
|
|
|
|
|
| |
PR: ports/177481
Submitted by: Lukasz Wasikowski <lukasz@wasikowski.net>
|
|
|
|
|
|
| |
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here
Reviewed by: bapt, kwm
|
|
|
|
|
|
|
|
| |
- Trim headers
PR: ports/168922
Submitted by: Po-Chien Lin <linpc@cs.nctu.edu.tw>
Approved by: maintainer timeout (6 month)
|
|
|
|
|
|
| |
Where necessary add $FreeBSD$ to the file
No PORTREVISION bump necessary because this is a no-op
|
| |
|
|
|
|
| |
- Take maintainership
|
| |
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
|
|
|
|
| |
literal name_enable wherever possible, and ${name}_enable
when it's not, to prepare for the demise of set_rcvar().
In cases where I had to hand-edit unusual instances also
modify formatting slightly to be more uniform (and in
some cases, correct). This includes adding some $FreeBSD$
tags, and most importantly moving rcvar= to right after
name= so it's clear that one is derived from the other.
|
| |
|
| |
|
|
|
|
|
|
| |
PR: ports/155386
Submitted by: Zhihao Yuan <lichray@gmail.com>
Security: CVE-2011-1575
|