aboutsummaryrefslogtreecommitdiff
path: root/ftp/wzdftpd
Commit message (Collapse)AuthorAgeFilesLines
...
* Chase security/gnutls update and add an UPDATING entry.Roman Bogorodskiy2011-06-051-2/+2
| | | | Notes: svn path=/head/; revision=275104
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* Chase the avahi-core shared lib version.Joe Marcus Clarke2010-07-251-2/+2
| | | | Notes: svn path=/head/; revision=258187
* GC the hand-rolled RC_SCRIPTS_SUB which is no longer relevant because theDoug Barton2010-03-271-3/+0
| | | | | | | port uses USE_RC_SUBR Notes: svn path=/head/; revision=251561
* Begin the process of deprecating sysutils/rc_subr byDoug Barton2010-03-271-1/+1
| | | | | | | s#. %%RC_SUBR%%#. /etc/rc.subr# Notes: svn path=/head/; revision=251553
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with E,F Notes: svn path=/head/; revision=240069
* Bump PORTREVISIONs of the gnutls dependant ports to chase gnutls update.Roman Bogorodskiy2009-08-161-2/+2
| | | | Notes: svn path=/head/; revision=239670
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr Notes: svn path=/head/; revision=238781
* Fix a few "bad example" problems in the rc.d scripts that have beenDoug Barton2009-07-151-5/+5
| | | | | | | | | | | | | | | | | | | | | | | propogated by copy and paste. 1. Primarily the "empty variable" default assignment, which is mostly ${name}_flags="", but fix a few others as well. 2. Where they are not already documented, add the existence of the _flags (or other deleted empties) option to the comments, and in some cases add comments from scratch. 3. Replace things that look like: prefix=%%PREFIX%% command=${prefix}/sbin/foo to just use %%PREFIX%%. In many cases the $prefix variable is only used once, and in some cases it is not used at all. 4. In a few cases remove ${name}_flags from command_args 5. Remove a long-stale comment about putting the port's rc.d script in /etc/rc.d (which is no longer necessary). No PORTREVISION bumps because all of these changes are noops. Notes: svn path=/head/; revision=237892
* Chase the avahi-core shared lib version.Joe Marcus Clarke2008-12-171-2/+2
| | | | Notes: svn path=/head/; revision=224317
* 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-1/+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
* Fix avahi dependency.Roman Bogorodskiy2008-03-151-1/+1
| | | | | | | | PR: 121689 Submitted by: Scot Hetzel <swhetzel@gmail.com> Notes: svn path=/head/; revision=209100
* - Chase security/gnutls shlib version bumpRoman Bogorodskiy2008-03-031-2/+2
| | | | | | | - Add an entry to UPDATING Notes: svn path=/head/; revision=208375
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptRong-En Fan2007-07-231-1/+1
| | | | | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run Notes: svn path=/head/; revision=196111
* Chase gnutls shared library version chase: adjust DEPENDS lines andRoman Bogorodskiy2007-07-011-2/+2
| | | | | | | bump PORTREVISIONs. Notes: svn path=/head/; revision=194564
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Update to 0.8.1.Roman Bogorodskiy2007-04-153-29/+27
| | | | Notes: svn path=/head/; revision=189980
* Chase the avahi-core shared lib version.Joe Marcus Clarke2007-02-101-1/+1
| | | | Notes: svn path=/head/; revision=184830
* Use libtool port instead of included version to avoid objformat a.out botchKris Kennaway2007-02-011-0/+1
| | | | Notes: svn path=/head/; revision=183830
* - Chase security/gnutls updateRoman Bogorodskiy2007-01-021-3/+3
| | | | | | | | - Add an entry to UPDATING - Pet portlint(1) for some ports while I'm here Notes: svn path=/head/; revision=181262
* Chase the GNOME X11BASE to LOCALBASE move, and fix the build with theJoe Marcus Clarke2006-10-141-2/+2
| | | | | | | | | | new freetype2 where needed. Submitted by: mezz, ahze, pav, and many others Approved by: portmgr (implicit, kris) Notes: svn path=/head/; revision=175261
* Chase gnutls shlib version change.Roman Bogorodskiy2006-07-061-1/+2
| | | | Notes: svn path=/head/; revision=167068
* Update to 0.7.2.Roman Bogorodskiy2006-05-315-35/+44
| | | | | | | | PR: 98212 (based on) Submitted by: Jui-Nan Lin <jnlin@csie.nctu.edu.tw> Notes: svn path=/head/; revision=164084
* Remove USE_REINPLACE from all categories starting with FEdwin Groothuis2006-05-071-1/+0
| | | | Notes: svn path=/head/; revision=161557
* Chase the avahi shared lib version.Joe Marcus Clarke2006-03-181-2/+2
| | | | | | | Reported by: pointyhat via kris Notes: svn path=/head/; revision=157619
* Fix build with utf8 support disabled.Roman Bogorodskiy2006-03-081-1/+2
| | | | | | | | Reported by: ml@sd2i.com on freebsd-ports@ Approved by: portmgr (marcus) Notes: svn path=/head/; revision=157045
* Post libtool-conversion fixupsAde Lovett2006-02-251-1/+3
| | | | | | | | Submitted by: pointyhat Approved by: portmgr (implicit) Notes: svn path=/head/; revision=156789
* Conversion to a single libtool environment.Ade Lovett2006-02-232-1/+15
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* - Add zeroconf support via howl or avahi [1]Roman Bogorodskiy2006-02-223-5/+39
| | | | | | | | | - Prefer gnutls over openssl Based on a patch by: "Daniel S. Haischt" <me@daniel.stefan.haischt.name> [1] Notes: svn path=/head/; revision=156716
* Remove the FreeBSD KEYWORD from all rc.d scripts where it appears.Doug Barton2006-02-201-1/+1
| | | | | | | | | | We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts. Notes: svn path=/head/; revision=156534
* Fix build on 4.x.Roman Bogorodskiy2006-02-091-4/+0
| | | | | | | Reported by: poinrthat via kris Notes: svn path=/head/; revision=155604
* It seems I've used a wrong version of tarball when preparing the update, soRoman Bogorodskiy2006-02-041-3/+3
| | | | | | | | | | fix distinfo. Reported by: Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw>, pointyhat via kris Notes: svn path=/head/; revision=155180
* - Update to 0.6.1Roman Bogorodskiy2006-02-023-14/+5
| | | | | | | - Switch to libtool15 Notes: svn path=/head/; revision=155082
* Depend on gnutls instead of gnutls-devel in:Roman Bogorodskiy2006-01-101-1/+1
| | | | | | | | | | - mail/msmtp [1] - ftp/wzdftpd Submitted by: Herbert J. Skuhra <h.skuhra@gmail.com> [1] Notes: svn path=/head/; revision=153206
* Needs pkgconfig.Roman Bogorodskiy2005-12-311-0/+1
| | | | | | | Reported by: pointyhat via kris Notes: svn path=/head/; revision=152480
* - Update to 0.6.0Roman Bogorodskiy2005-12-284-81/+59
| | | | | | | - Depend on gnutls-devel Notes: svn path=/head/; revision=152253
* Remove trailing space from plist.Roman Bogorodskiy2005-12-231-1/+1
| | | | | | | Reported by: Vasil Dimov <vd@datamax.bg> Notes: svn path=/head/; revision=151924
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* Update to 0.5.5.Roman Bogorodskiy2005-10-093-66/+3
| | | | Notes: svn path=/head/; revision=144665
* Fix insecure use of popen().Roman Bogorodskiy2005-09-262-0/+63
| | | | | | | Obtained from: wzdftpd-security maillist Notes: svn path=/head/; revision=143579
* Attempt to fix build on 4.x.Roman Bogorodskiy2005-07-211-1/+2
| | | | | | | Reported by: pointyhat via kris Notes: svn path=/head/; revision=139838
* Fix plist.Roman Bogorodskiy2005-07-171-0/+1
| | | | | | | Reported by: poinyhat via kris Notes: svn path=/head/; revision=139409
* Fix build with IPv6 support.Roman Bogorodskiy2005-07-161-8/+27
| | | | | | | Reported by: poinyhat via kris Notes: svn path=/head/; revision=139362
* Update to 0.5.4.Roman Bogorodskiy2005-07-143-3/+14
| | | | Notes: svn path=/head/; revision=139231
* Fix build on 4.x.Roman Bogorodskiy2005-05-311-0/+3
| | | | | | | Reported by: pointyhat via kris Notes: svn path=/head/; revision=136487
* Fix plist.Roman Bogorodskiy2005-05-261-0/+2
| | | | | | | Reported by: pointyhat via kris Notes: svn path=/head/; revision=136212
* Update to 0.5.3. PostgreSQL backend temporary disabled because IRoman Bogorodskiy2005-05-202-4/+4
| | | | | | | cannot test it now. Notes: svn path=/head/; revision=135728
* Update to 0.5.2Roman Bogorodskiy2005-04-182-3/+3
| | | | Notes: svn path=/head/; revision=133577