aboutsummaryrefslogtreecommitdiff
path: root/net/pecl-smbclient/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* net/pecl-smbclient: Update to 1.0.6Po-Chuan Hsieh2021-04-181-1/+1
| | | | Changes: https://pecl.php.net/package-changelog.php?package=smbclient
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update to 1.0.5Sunpoet Po-Chuan Hsieh2021-02-171-1/+1
| | | | | | | Changes: https://pecl.php.net/package-changelog.php?package=smbclient Notes: svn path=/head/; revision=565581
* Update to 1.0.4Sunpoet Po-Chuan Hsieh2021-02-011-1/+1
| | | | | | | Changes: https://pecl.php.net/package-changelog.php?package=smbclient Notes: svn path=/head/; revision=563630
* Update to 1.0.3Sunpoet Po-Chuan Hsieh2021-01-301-1/+1
| | | | | | | Changes: https://pecl.php.net/package-changelog.php?package=smbclient Notes: svn path=/head/; revision=563313
* Update to 1.0.2Sunpoet Po-Chuan Hsieh2021-01-261-1/+1
| | | | | | | Changes: https://pecl.php.net/package-changelog.php?package=smbclient Notes: svn path=/head/; revision=562781
* Update to 1.0.1Sunpoet Po-Chuan Hsieh2021-01-031-2/+1
| | | | | | | Changes: https://pecl.php.net/package-changelog.php?package=smbclient Notes: svn path=/head/; revision=560116
* Switch default version of samba from 4.7 to 4.8Antoine Brodin2019-06-041-0/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=503475
* Update to 1.0.0Sunpoet Po-Chuan Hsieh2019-01-011-3/+1
| | | | | | | | | - Remove IGNORE_WITH_PHP=73 Changes: https://pecl.php.net/package-changelog.php?package=smbclient Notes: svn path=/head/; revision=488986
* Those ports are not compatible with php 7.3Antoine Brodin2018-10-121-0/+1
| | | | | | | Reported by: pkg-fallout Notes: svn path=/head/; revision=481878
* Switch default version of samba to 4.7Antoine Brodin2018-09-011-1/+1
| | | | | | | | | | Samba 4.6 will be discontinued in a few weeks Reviewed by: mat Differential Revision: https://reviews.freebsd.org/D16904 Notes: svn path=/head/; revision=478711
* Take maintainershipSunpoet Po-Chuan Hsieh2018-01-121-1/+1
| | | | Notes: svn path=/head/; revision=458844
* Return kevlo's ports to the pool, he handed in his commit bit.Rene Ladan2018-01-121-1/+1
| | | | | | | With hat: portmgr-secretary Notes: svn path=/head/; revision=458818
* Change default version of samba from 4.4 to 4.6Antoine Brodin2017-12-231-1/+1
| | | | | | | | | Reviewed by: mat With hat: portmgr Differential Revision: https://reviews.freebsd.org/D13529 Notes: svn path=/head/; revision=457024
* Convert all PECL ports to USES=php:pecl.Mathieu Arnold2017-04-101-4/+1
| | | | | | | | Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D10281 Notes: svn path=/head/; revision=438175
* Switch default version of samba from 4.3 to 4.4Antoine Brodin2017-03-251-1/+1
| | | | | | | | With hat: portmgr Differential Revision: https://reviews.freebsd.org/D10131 Notes: svn path=/head/; revision=436925
* - Add USES=samba to handle dependency on sambaAntoine Brodin2017-03-211-3/+4
| | | | | | | | | | | | | | Valid ARGS: build, env, lib, run (default: build,run) - Add SAMBA_DEFAULT to bsd.default-versions.mk (default: 4.3) - Remove obsolete samba36 ports - Modify samba4x ports to install libsmbclient - Convert the ports tree to USES=samba Reviewed by: mat Differential Revision: https://reviews.freebsd.org/D8919 Notes: svn path=/head/; revision=436659
* Update to 0.9.0Kevin Lo2017-02-131-2/+1
| | | | Notes: svn path=/head/; revision=433973
* Don't use extension.ini any more, and have each extension install in itsMathieu Arnold2016-08-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=419514
* Convert USE_PHP*=yes into USES=php*Mathieu Arnold2016-06-281-4/+1
| | | | | | | | | | | PR: 210529 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D6936 Notes: svn path=/head/; revision=417719
* Use LIB_DEPENDS.Kevin Lo2016-04-291-3/+1
| | | | Notes: svn path=/head/; revision=414273
* - Add LICENSE_FILESunpoet Po-Chuan Hsieh2016-04-281-1/+2
| | | | | | | | | - Update RUN_DEPENDS: remove PORTSDIR Approved by: portmgr (blanket) Notes: svn path=/head/; revision=414178
* Import pecl-smbclient 0.8.0Kevin Lo2016-04-281-0/+26
Smbclient is a PHP extension that uses Samba's libsmbclient library to provide Samba related functions and 'smb' streams to PHP programs. Notes: svn path=/head/; revision=414158