aboutsummaryrefslogtreecommitdiff
path: root/www
Commit message (Collapse)AuthorAgeFilesLines
* - Update to 4.1.0Ryan Steinmetz2014-06-232-3/+3
| | | | Notes: svn path=/head/; revision=358998
* - Update to 3.6.11Ryan Steinmetz2014-06-232-3/+3
| | | | Notes: svn path=/head/; revision=358997
* - Update to 1.4.15Sunpoet Po-Chuan Hsieh2014-06-233-12/+43
| | | | | | | | | - Update maintainer section: use latest release Changes: https://github.com/npm/npm/releases Notes: svn path=/head/; revision=358988
* - Update to 1.2.18Sunpoet Po-Chuan Hsieh2014-06-232-4/+4
| | | | | | | | | - Use USES=libtool Changes: http://trac.xapian.org/wiki/ReleaseOverview/1.2.18 Notes: svn path=/head/; revision=358986
* Add EXAMPLES as OPTION.Alex Dupre2014-06-231-1/+1
| | | | Notes: svn path=/head/; revision=358965
* - Repocopy mediawiki122 --> mediawiki123 and update to 1.23.0Wen Heping2014-06-235-0/+99
| | | | Notes: svn path=/head/; revision=358949
* - Switch devel/google-perftools to USES=libtool, drop .la filesDmitry Marakasov2014-06-232-2/+2
| | | | | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket Notes: svn path=/head/; revision=358946
* - Switch devel/jansson to libtool, drop .la filesDmitry Marakasov2014-06-231-1/+1
| | | | | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket Notes: svn path=/head/; revision=358938
* - Update to 1.19.16Wen Heping2014-06-233-18/+5
| | | | | | | | | | | - Fix build with php-5.5 by removing APC from OPTIONS_DEFAULT [1] - Remove the patch which included into upstream now PR: 191124 [1] Submitted by: Mark Felder <feld@FreeBSD.org> [1] Notes: svn path=/head/; revision=358937
* - Fix build with php-5.5 by removing APC from OPTIONS_DEFAULT [1]Wen Heping2014-06-231-1/+5
| | | | | | | | | | - Mark DEPRECATED PR: 191124 [1] Submitted by: Mark Felder <feld@FreeBSD.org> [1] Notes: svn path=/head/; revision=358936
* - Fix build with php-5.5 by removing APC from OPTIONS_DEFAULT [1]Wen Heping2014-06-231-2/+3
| | | | | | | | | | - Adjust CONFLICTS to welcome mediawiki123 PR: 191124 [1] Submitted by: Mark Felder <feld@FreeBSD.org> [1] Notes: svn path=/head/; revision=358935
* Unbreak. Don't include the unversioned notes.html file, and insteadAdam Weinberger2014-06-237-44/+31
| | | | | | | | | put a note about it into the pkg-message. While here, STAGE, use @sample, and rename patch-xy's. Notes: svn path=/head/; revision=358885
* Mark as broken: no distinfo provided for some of the distfilesBaptiste Daroussin2014-06-221-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=358858
* Mark as broken: no distinfo provided for some of the distfilesBaptiste Daroussin2014-06-221-2/+1
| | | | Notes: svn path=/head/; revision=358857
* Mark as broken: no distinfo provided for some of the distfilesBaptiste Daroussin2014-06-221-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=358856
* Remove expired ports:Rene Ladan2014-06-2212-1461/+0
| | | | | | | | | 2014-06-22 www/phpbb-devel: Use www/phpbb3 instead 2014-06-22 math/polymake: Does not build with any supported version of Perl 2014-06-22 www/phpsysinfo-dev: Use www/phpsysinfo instead Notes: svn path=/head/; revision=358827
* Fix a crash which happens frequently on i386 due to unaligned memory accessRene Ladan2014-06-222-0/+12
| | | | | | | | | | | in its built-in ffmpeg. PR: 189317 Submitted by: dim, adrian on freebsd-chromium@ MFH: 2014Q2 Notes: svn path=/head/; revision=358825
* Update to 1.1.1.Raphael Kubo da Costa2014-06-224-44/+18
| | | | | | | | PR: 191271 Submitted by: gaod@hychen.org (maintainer) Notes: svn path=/head/; revision=358819
* - Remove obsolete PYEASYINSTALL_EGG entry, now that the ports useMarcus von Appen2014-06-221-1/+0
| | | | | | | | | PYDISTUTILS_AUTOPLIST With hat: python@ Notes: svn path=/head/; revision=358797
* - Update to 2.0-5[1]Ashish SHUKLA2014-06-224-6/+7
| | | | | | | | | | | - Update WWW link[1] - Add LICENSE information PR: 184938[1] Submitted by: Oleg Ginzburg <olevole at olevole.ru>[1] Notes: svn path=/head/; revision=358792
* Add 4 new sed commands to USES=libtool. The first two apply some of theTijl Coosemans2014-06-221-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes that Debian made to their libtool. The first command applies to libtool versions 1.4 and up. The second command is somewhat more elaborate but essentially it uses the sed hold space to move an "elif...fi" block down. It applies to 2.x. Together these reduce overlinking to unpatched .la files (from ports that don't have USES=libtool yet but also .la files in the work directory). The third and fourth command fix relinking. During staging libtool may relink libA when it links to another library in the work directory libB. The reason is that libA created during build phase has its runpath set to the location of libB in the work directory. This allows running an executable that links to libA from within the work directory. The relink removes this extra runpath. When libtool relinks libA it replaces "libB.la" on the linker command line with "-L${STAGEDIR}${PREFIX}/lib -lB" with the intention to link to libB in the stage directory but this -L flag isn't necessarily the first so another libB may be linked instead. The two sed commands make relink the same as a normal link. This means libtool will relink with libraries from the work directory using a path similar to "../srcB/.libs/libB.so" without -L flags. This applies to libtool 1.4 and up. Earlier versions don't seem to relink libraries. (This fixes ports like devel/apr1 so they link with freshly built libraries instead of installed libraries.) Fix all ports with missing libraries. Additionally: archivers/rpm4: USES=patchfix. databases/gdbm: INSTALL_TARGET=install-strip. devel/gnome-vfs: remove patch that doesn't change anything. devel/ois: INSTALL_TARGET=install-strip and use standard USE_AUTOTOOLS. devel/zziplib: INSTALL_TARGET=install-strip, MAKE_CMD. multimedia/mjpegtools: remove USE_AUTOTOOLS, use modern compiler on i386 instead of disabling optimisations. net/libnetdude: disable static plugins. PR: 190941 Exp-run: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=358784
* - Fix plistWen Heping2014-06-222-0/+3
| | | | | | | Reported by: swill@ (Thanks !) Notes: svn path=/head/; revision=358762
* - Add stage supportDanilo Egea Gondolfo2014-06-221-10/+13
| | | | | | | | | | | - Add DOCS option - Add LICENSE PR: ports/191255 Submitted by: michiel@boland.org Notes: svn path=/head/; revision=358761
* - Remove easy_install dependencyMarcus von Appen2014-06-211-3/+4
| | | | | | | | | | - Convert to PYDISTUTILS_AUTOPLIST With hat: python@ Approved by: portmgr (implicit) Notes: svn path=/head/; revision=358743
* www/zend-framework1: update to 1.12.7William Grzybowski2014-06-213-2319/+2425
| | | | Notes: svn path=/head/; revision=358730
* www/zend-framework: update to 2.3.1William Grzybowski2014-06-213-429/+513
| | | | Notes: svn path=/head/; revision=358729
* www/zen-cart: support stageWilliam Grzybowski2014-06-212-35/+25
| | | | | | | | PR: 189916 Submitted by: joe thrallingpenguin com Notes: svn path=/head/; revision=358719
* Update firebug to 2.0.1Barbara Guida2014-06-213-3/+6
| | | | Notes: svn path=/head/; revision=358703
* - fix build with lua51 / lua52Olli Hauer2014-06-212-7/+7
| | | | | | | | | | | - strip trailing white space - no PORTREVISION bump (LUA is not a default OPTION) Lua build issue reported on apache@ and lua@ by Peter Olsson and Jason Hellenthal Notes: svn path=/head/; revision=358701
* - Update to 2.5.7Wen Heping2014-06-213-715/+938
| | | | Notes: svn path=/head/; revision=358698
* - Update to 0.3Wen Heping2014-06-212-4/+4
| | | | Notes: svn path=/head/; revision=358695
* - Update to 0.141000Wen Heping2014-06-212-3/+3
| | | | | | | Changes: http://search.cpan.org/src/XSAWYERX/Dancer2-0.141000/Changes Notes: svn path=/head/; revision=358694
* - Update to 1.21.10Wen Heping2014-06-212-3/+3
| | | | Notes: svn path=/head/; revision=358693
* UnbreakAntoine Brodin2014-06-211-16/+17
| | | | Notes: svn path=/head/; revision=358691
* - change Maintainer from apache@ to lev@ (subversion maintainer)Olli Hauer2014-06-211-1/+1
| | | | | | | | | | subversion(18) is the main consumer of serf, so it is better this ports are maintained together. Approved by: lev Notes: svn path=/head/; revision=358687
* Remove expired ports:Rene Ladan2014-06-219-409/+0
| | | | | | | | | | | | 2014-06-20 mail/sastatd: Superseded by sysutils/p5-Tail-Stat 2014-06-20 www/mod_ruby: Only for threadless ruby 2014-06-20 textproc/eruby: Only for threadless ruby, use ruby-gem erubis instead 2014-06-20 mail/p5-FuzzyOcr: Unmaintained upstream, no ports depending on it. Use mail/p5-FuzzyOcr-devel instead 2014-06-21 devel/bugzilla40 2014-06-21 devel/bugzilla42 Notes: svn path=/head/; revision=358684
* - Switch to USES=libtool, drop .la filesDmitry Marakasov2014-06-212-4/+5
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=358674
* - Switch to USES=libtool, drop .la filesDmitry Marakasov2014-06-212-5/+6
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=358673
* - Switch to USES=libtool, drop .la filesDmitry Marakasov2014-06-212-3/+3
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=358672
* www/py-django-pipeline: update to 1.3.19William Grzybowski2014-06-202-5/+4
| | | | | | | | | PR: 184933 Submitted by: anes anes su Approved by: maintainer (timeout) Notes: svn path=/head/; revision=358637
* www/htmlcompressor: fix java version in startup scriptWilliam Grzybowski2014-06-201-1/+2
| | | | | | | | PR: 190143 Submitted by: citrin+pr@citrin.ru Notes: svn path=/head/; revision=358630
* - Update to 2.5.1Steve Wills2014-06-202-3/+3
| | | | Notes: svn path=/head/; revision=358623
* Fix building with INLINE_IMAGE disabled. Sorry about that!Adam Weinberger2014-06-201-0/+1
| | | | | | | | PR: ports/143954 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> Notes: svn path=/head/; revision=358618
* Deprecate interactive port www/wwwcount for removal in 2 monthsJohn Marino2014-06-201-0/+3
| | | | | | | | | | | | | This unstaged port would need to be converted to a regular, staged port in order to undeprecate it. PR: 191210 Submitted by: marino Disposition: maintainer (Michael Ranner) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=358617
* - Add LICENSESunpoet Po-Chuan Hsieh2014-06-203-18/+18
| | | | | | | | | | - Update COMMENT - Fix and sort PLIST: remove "@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%" - Update pkg-descr - Use single space after WWW: Notes: svn path=/head/; revision=358610
* - Add LICENSESunpoet Po-Chuan Hsieh2014-06-202-4/+7
| | | | | | | - Reformat pkg-descr Notes: svn path=/head/; revision=358609
* www/py-aiohttp: Add LICENSE (BSD2CLAUSE)Kubilay Kocak2014-06-201-0/+2
| | | | | | | | | - Add LICENSE (BSD2CLAUSE) [1] [1] https://github.com/KeepSafe/aiohttp/issues/77 Notes: svn path=/head/; revision=358559
* www/py-aiohttp: HTTP client/server for asyncio [NEW PORT]Kubilay Kocak2014-06-204-0/+47
| | | | | | | | | | | | | | | | | | HTTP client/server for Python asyncio (PEP-3156) Features: * Compression (deflate) * HTTP Basic Authenntication * Chunked Transfer Encoding * Connection Pooling * Session Cookies * Custom Request/Response classes WWW: https://github.com/KeepSafe/aiohttp/ Notes: svn path=/head/; revision=358551
* Remove needless empty string, introduced in r357965.Sergey A. Osokin2014-06-201-1/+0
| | | | Notes: svn path=/head/; revision=358544
* Update from 4.0.44 to 4.0.45:Sergey A. Osokin2014-06-208-15/+14
| | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. Notes: svn path=/head/; revision=358542