aboutsummaryrefslogtreecommitdiff
path: root/net/rsync
Commit message (Collapse)AuthorAgeFilesLines
* Remove MAKE_JOBS_SAFE which is now default.Emanuel Haupt2013-07-241-1/+0
| | | | Notes: svn path=/head/; revision=323578
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising Notes: svn path=/head/; revision=316662
* Remove indefinite article from COMMENTEmanuel Haupt2013-03-081-1/+1
| | | | Notes: svn path=/head/; revision=313649
* - Use DOC instead of NOPORTDOCSEmanuel Haupt2013-01-151-4/+2
| | | | | | | | - Pacify portlint - Convert header Notes: svn path=/head/; revision=310443
* Provide an extra patch to for rsync to support overwriting files with schg set.Emanuel Haupt2013-01-112-1/+23
| | | | | | | | | | | This patch is only applied if the FLAGS option is specified. The patch has been submitted with the upstream project. Notified by: wblock Obtained from: https://bugzilla.samba.org/show_bug.cgi?id=8941 (upstream) Notes: svn path=/head/; revision=310222
* Restore 'Created by' header information. This has been removed during theEmanuel Haupt2012-11-031-0/+1
| | | | | | | | | | first announcement of the new trimming rule and the finalized overworked version. Feature safe: yes Notes: svn path=/head/; revision=306932
* Fix a condition to correctly check whether the SSH option is used. This errorEmanuel Haupt2012-09-121-1/+3
| | | | | | | | | slipped in when the port was converted to OPTIONSng. Notified by: Norbert Augenstein <lists@augenstein.net> Notes: svn path=/head/; revision=304133
* - Use OPTIONSngEmanuel Haupt2012-09-111-29/+26
| | | | | | | - Remove deprecated header information Notes: svn path=/head/; revision=304101
* Move the rc.d scripts of the form *.sh.in to *.inDoug Barton2012-08-052-1/+1
| | | | | | | | | Where necessary add $FreeBSD$ to the file No PORTREVISION bump necessary because this is a no-op Notes: svn path=/head/; revision=302141
* Provide an improved version of the "renamed file detection" patch.Emanuel Haupt2012-07-172-1/+762
| | | | | | | | | | | | | | | | This patch was submitted to the upstream project [1] and will hopefully be included in the next release. With the new patch, detect-renamed properly detects files moved to new directories, as well as directory renames. [1] https://bugzilla.samba.org/show_bug.cgi?id=8847 Submitted by: J.R. Oldroyd <jr@opal.com> Obtained from: rsync bugzilla [1] Notes: svn path=/head/; revision=301020
* Turn off non standard patch (RENAMED) by default. This slipped in on accidentEmanuel Haupt2012-04-041-1/+1
| | | | | | | | | | from testing. Notified by: sunpoet Feature safe: yes Notes: svn path=/head/; revision=294213
* Introduce an option that builds rsync with the "detect-renamed" patch. ItEmanuel Haupt2012-04-031-2/+8
| | | | | | | | | | | detects renamed hierarchies and avoids re-copying the files in those hierarchies. Requested by: "J.R. Oldroyd" <jr@opal.com> (via mail) Feature safe: yes Notes: svn path=/head/; revision=294170
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=289156
* Update to 3.0.9Emanuel Haupt2011-09-232-7/+7
| | | | Notes: svn path=/head/; revision=282286
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-3/+3
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* Update to 3.0.8Emanuel Haupt2011-03-262-5/+5
| | | | Notes: svn path=/head/; revision=271817
* Add LICENSE and remove MD5 sums.Emanuel Haupt2011-01-252-2/+2
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=268229
* Remove dead mirrorEmanuel Haupt2010-10-131-1/+0
| | | | Notes: svn path=/head/; revision=262969
* 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
* Update to 3.0.7Emanuel Haupt2010-01-012-7/+7
| | | | Notes: svn path=/head/; revision=246955
* Prevent the unnecessary usage of perl (if present) during configure.Emanuel Haupt2009-09-151-1/+3
| | | | | | | | PR: 138834 (based on) Submitted by: Aleksey Mashanov <aleksey.mashanov@gmail.com> Notes: svn path=/head/; revision=241441
* Remove USE_PERL5_BUILD, since perl is not needed anymore to build.Emanuel Haupt2009-09-071-1/+0
| | | | | | | Notified by: pjd Notes: svn path=/head/; revision=240978
* Fix a few "bad example" problems in the rc.d scripts that have beenDoug Barton2009-07-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | 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
* Update to 3.0.6Emanuel Haupt2009-05-112-7/+7
| | | | Notes: svn path=/head/; revision=233688
* Mark MAKE_JOBS_SAFEEmanuel Haupt2009-03-271-1/+2
| | | | Notes: svn path=/head/; revision=231102
* Update to 3.0.5Emanuel Haupt2008-12-292-7/+7
| | | | | | | Changelog: http://rsync.samba.org/ftp/rsync/src/rsync-3.0.5-NEWS Notes: svn path=/head/; revision=224937
* Update to 3.0.4Emanuel Haupt2008-09-062-7/+8
| | | | Notes: svn path=/head/; revision=220006
* 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
* Add support for --atimes patch, which preserves access times.Jeremy Chadwick2008-07-091-1/+13
| | | | | | | | Reviewed by: ehaupt Approved by: ehaupt Notes: svn path=/head/; revision=216605
* Update to 3.0.3Emanuel Haupt2008-07-023-19/+7
| | | | Notes: svn path=/head/; revision=216168
* Provide an optional "Time limit patch"Emanuel Haupt2008-06-261-2/+11
| | | | | | | | PR: 124553 Submitted by: Adrian Thearle <adrian@thearle.com.au> Notes: svn path=/head/; revision=215799
* All of a sudden rsync requires perl to build. Add USE_PERL5_BUILD.Emanuel Haupt2008-06-021-2/+1
| | | | | | | | PR: 124199 Submitted by: rafan Notes: svn path=/head/; revision=214172
* Merge a patch from cvs which fixes a file-globbing bug in the daemon when chrootEmanuel Haupt2008-05-312-0/+12
| | | | | | | | | | | | is on. http://www.mail-archive.com/rsync-cvs@lists.samba.org/msg05785.html Submitted by: sem Obtained from: rsync cvs Notes: svn path=/head/; revision=214016
* Rework WITHOUT_ICONV build optionEmanuel Haupt2008-05-071-6/+3
| | | | | | | | PR: 123469 Submitted by: Dan Nelson <dnelson@allantgroup.com> Notes: svn path=/head/; revision=212792
* Update to 3.0.2, and really disable iconv support if WITHOUT_ICONV is defined.Emanuel Haupt2008-04-082-7/+14
| | | | | | | Changelog: http://rsync.samba.org/ftp/rsync/src/rsync-3.0.2-NEWS Notes: svn path=/head/; revision=210876
* - Update to 3.0.1Emanuel Haupt2008-04-042-8/+9
| | | | | | | | | - Add 3 additional mirrors Changelog: http://rsync.samba.org/ftp/rsync/src/rsync-3.0.1-NEWS Notes: svn path=/head/; revision=210479
* Only download patchset if needed.Emanuel Haupt2008-03-261-1/+4
| | | | Notes: svn path=/head/; revision=209855
* Add optional iconv supportEmanuel Haupt2008-03-121-1/+9
| | | | Notes: svn path=/head/; revision=208892
* Revise the wording for the ACL patch option. Rsync 3.0.x now has --acls supportEmanuel Haupt2008-03-071-1/+1
| | | | | | | | | | by default. Use this patch if you want to make rsync 3.0.x communicate with an older (patched) release. Notified by: Scott Allendorf <scott-allendorf@uiowa.edu> Notes: svn path=/head/; revision=208558
* - Provide two additional build OPTIONS:Emanuel Haupt2008-03-062-2/+21
| | | | | | | | | | | | * File system flags support patch, adds --fileflags * ACL support patch, adds --acls - Takeover maintainership PR: 121444 Approved by: pav (maintainer) Notes: svn path=/head/; revision=208537
* - Update to 3.0.0Pav Lucistnik2008-03-035-472/+4
| | | | Notes: svn path=/head/; revision=208402
* - Add a knob to apply atimes patch from vendor distributionPav Lucistnik2008-02-221-0/+20
| | | | | | | Submitted by: koitsu Notes: svn path=/head/; revision=207747
* - Add a vendor patch that adds a new option "munge symlinks".Pav Lucistnik2007-12-022-1/+341
| | | | | | | | | | | | | Users running rsyncd daemon in certain non-default configuration (use_chroot = no) should consult http://rsync.samba.org/security.html and see, what munging symlinks can do for them. Submitted by: delphij Approved by: portmgr (hat) Security: CVE-2007-6199 Notes: svn path=/head/; revision=202880
* - Fix off-by-one buffer overflow in f_name() function. It is not clear if thisPav Lucistnik2007-08-222-0/+61
| | | | | | | | | | | | problem can be exploited. Submitted by: several Obtained from: http://www.suse.de/~krahmer/rsync-2.6.9-fname-obo.diff Security: CVE-2007-4091 Security: http://www.novell.com/linux/security/advisories/2007_17_sr.html Notes: svn path=/head/; revision=198133
* - Remove the DESTDIR modifications from individual ports as we have a new,Gabor Kovesdan2007-08-041-7/+7
| | | | | | | | | | fully chrooted DESTDIR, which does not need such any more. Sponsored by: Google Summer of Code 2007 Approved by: portmgr (pav) Notes: svn path=/head/; revision=197075
* - 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
* - Respect CFLAGS with POPT optionPav Lucistnik2007-04-271-1/+1
| | | | | | | Reported by: kris Notes: svn path=/head/; revision=190999
* - Fix --acls with --deletePav Lucistnik2007-04-092-3/+27
| | | | | | | | Submitted by: Gary <gary@mups.co.uk> Obtained from: http://lists.samba.org/archive/rsync/2006-November/016706.html Notes: svn path=/head/; revision=189566
* - Fix IGNORE conditional (typo)Pav Lucistnik2006-12-171-1/+1
| | | | Notes: svn path=/head/; revision=180023
* - Update to 2.6.9Pav Lucistnik2006-11-223-108/+13
| | | | | | | | | | - Flip ACLs and flags patches default off, as they conflict each another PR: ports/105731 (based on) Submitted by: Antony Mawer <gnats@mawer.org> Notes: svn path=/head/; revision=177797