1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
Commit Graph

11209 Commits

Author SHA1 Message Date
Edwin Groothuis
e2f31d33ff [MAINTAINER] www/gallery2: update to 2.0.2
- Update to 2.0.2
  - This fixes a security issue described at http://gallery.menalto.com/gallery_2.0.2_released
- While here, convert some dependencies into options, as suggested by <ingmar.gebert at web.de>

PR:		ports/89785
Submitted by:	Alex Varju <freebsd-ports@varju.ca>
Security:	as described on http://gallery.menalto.com/gallery_2.0.2_released
2005-12-01 08:28:25 +00:00
Tom McLaughlin
531ef35a4c Add SHA256 to my BSD# ports
Project by:	BSD# <http://www.mono-project.com/Mono:FreeBSD>
2005-12-01 03:39:25 +00:00
Michael Johnson
a077d959dd - Fix typo in comments
- Add  .include "${.CURDIR}/../../www/mozilla/bsd.gecko.mk" to the example
2005-11-30 23:47:44 +00:00
Michael Johnson
be9e6fac0f - Bump PORTREVISION
Spotted by:	pav
2005-11-30 20:10:03 +00:00
Michael Johnson
dbcc7fa409 - Reenable svg support, this must've sliped with all the massive changes.
PR:		89764
Submitted by:	Roland Smith <rsmith@xs4all.nl>
2005-11-30 19:47:19 +00:00
Kris Kennaway
a4b51cc4f5 Update to 20051024 and clean up port a bit
PR:		ports/89535 (based on)
Submitted by:	Andrew Pantyukhin
2005-11-30 18:58:53 +00:00
Pav Lucistnik
3dfca03263 - Define LATEST_LINK 2005-11-30 17:10:25 +00:00
Pav Lucistnik
1f5180f940 - Connect phpwiki13 2005-11-30 17:10:01 +00:00
Pav Lucistnik
2d37cc8bc3 - Update to 1.3.11p1 after repocopy from www/phpwiki
PR:		ports/89693
Submitted by:	Babak Farrokhi <babak@farrokhi.net>
2005-11-30 17:09:44 +00:00
Pav Lucistnik
c08cae5337 - Fix desktop entry, there's no FF_SUFX anymore 2005-11-30 15:59:55 +00:00
Emanuel Haupt
6229fea156 Add SHA256 hashes to my ports 2005-11-30 14:01:14 +00:00
Dmitry Sivachenko
46070c2e4a Update to 3.47. 2005-11-30 13:14:35 +00:00
Florent Thoumie
42e4402b0d - Add a patch to fix UTF-8 strings escaping.
PR:		ports/89750
Submitted by:	maintainer
2005-11-30 11:11:49 +00:00
Michael Johnson
341a7d8903 - Mark broken with firefox 1.5
Reported by:	dougb
2005-11-30 09:05:24 +00:00
Michael Johnson
2fb776f04b - Update WWW 2005-11-30 07:02:59 +00:00
Joe Marcus Clarke
304b3de356 Correct the plug-in regular expression for Ephy 1.8. 2005-11-30 06:22:19 +00:00
Joe Marcus Clarke
fd4c71ef91 Update to 3.16. 2005-11-30 05:53:43 +00:00
Joe Marcus Clarke
d96e2eced3 Bump PORTREVISION to chase the firefox update. 2005-11-30 05:42:48 +00:00
Joe Marcus Clarke
fe5728908c Correct a typo. 2005-11-30 05:38:51 +00:00
Michael Johnson
58cfbc4b97 - Add seamonkey
This is the current release of the Seamonkey open source web browser. It should
be fully compliant with all W3C standards, including HTML, CSS, XML, XSL,
JavaScript, MathML, SSL encryption, SVG and RDF.  Also supports Java with
the use of the FreeBSD native Java plug-in.

This is the latest bleeding edge release.  Beware that you'll probably find
bugs here, so if you value stability, try www/mozilla.

WWW: http://www.mozilla.org/projects/seamonkey/

Repocopied by:	marcus
2005-11-30 00:44:58 +00:00
Pav Lucistnik
8426fb5ae1 - Update to 2.1.9
PR:		ports/88707
Submitted by:	dikshie <dikshie@lapi.itb.ac.id>
Approved by:	maintainer timeout (clement; 3 weeks)
2005-11-30 00:13:39 +00:00
Joe Marcus Clarke
53f4440d95 Convert to USE_GECKO.
Obtained from:	MarcusCom CVS
2005-11-29 23:28:15 +00:00
Joe Marcus Clarke
75b6ed900a Convert to USE_GECKO. 2005-11-29 23:14:44 +00:00
Michael Johnson
72a9b04464 - Remove firefox-devel since firefox 1.5 is stable now 2005-11-29 22:55:39 +00:00
Michael Johnson
0ae25aa5b7 - Update to 2.0.0
- Use USE_GECKO
- No longer install galeon startup script
2005-11-29 21:37:45 +00:00
Michael Johnson
7c86331072 - Update to 0.3.3
- Use USE_GECKO
2005-11-29 21:35:32 +00:00
Michael Johnson
492ede9178 - Use new Makefile.common from mozilla 2005-11-29 21:14:01 +00:00
Michael Johnson
36353c589f - Update firefox to 1.5
- Add Makefile.common
  o A new build/install system for gecko ports, Makefile.common
    includes many generic routines and common tasks.
  o Fix ld-run-path in all gecko's by using -Wl,-rpath,${moz_libdir}
    thus removing the need to have a startup script for ports that
    depend on gecko. [2]
  o Use system libm, nss, nspr in all gecko ports

- Add bsd.gecko.mk
  o This is the predecessor to WITH_MOZILLA=[mozilla|firefox|...]
    with a more robust way of detecting a gecko a end user wishs to
    use.
  o bsd.gecko.mk abstracts the selection of gecko-based backends. It
    allows users and porters to support any available gecko backend
    without needing to build many conditional tests. ${USE_GECKO} is the
    list of backends that your port can handle, and ${GECKO} is set by
    bsd.gecko.mk to be the chosen backend. Users set ${WITH_GECKO} to the
    list of gecko backends they want on their system.

  Port Makefile example:

  USE_GECKO=firefox mozilla seamonkey thunderbird
  .include <bsd.port.pre.mk>
  .include "${.CURDIR}/../../www/mozilla/bsd.gecko.mk"

  End user example:
  WITH_GECKO=seamonkey firefox

  We highly recommend moving away from using WITH_MOZILLA and switching to
  USE/WITH_GECKO.

PR:		89052 [2]
Submitted by:	vs [2]
Obtained from:	www/firefox
Thanks to:	adamw, marcus, and mezz for ideas, bug squashing, and more
		sajd from irc.freenode.org/#FreeBSD-Gnome for
		 pointing out many bugs
2005-11-29 21:12:28 +00:00
Marcus Alves Grando
867900896a Update to 4.5.3 and include security fix to mambo
Add SHA256

PR:		89665
Submitted by:	Francisco Alves Cabrita <include@npf.deec.uc.pt> (maintainer)
Security:	http://www.mamboserver.com/index.php?option=com_content&task=view&id=172&Itemid=1
		http://secunia.com/advisories/17622/
2005-11-29 19:50:33 +00:00
Florent Thoumie
626d5bdc4c - Update to 1.8.8.
- Add SHA256 checksum.

PR:		ports/89649
Submitted by:	maintainer
2005-11-29 18:42:46 +00:00
Joe Marcus Clarke
43f484e128 Update to 3.8.2. 2005-11-29 16:12:20 +00:00
Emanuel Haupt
0eeec624bb Add p5-HTML-Chuncks, a simple nested template engine for HTML, XML and XHTML
PR:		89631
Submitted by:	Alexander Koch <fbsd@meersau.de>
2005-11-29 14:14:02 +00:00
Florent Thoumie
fcfdbaa630 - Register CONFLICTS.
- Remove hardcoded variables (test, www:www).

PR:		ports/89694
Submitted by:	maintainer
2005-11-29 11:47:56 +00:00
Simon Barner
aa559f3bf8 - Update to 1.4.8 [1]
- Fix detection of OpenSSL if world is build with NO_OPENSSL [2]

Submitted by:	delphij [1], Artis Caune <Artis.Caune@latnet.lv> [2]
PR:		ports/89709 [1], ports/89370 [2]
Approved by:	Hendrik Scholz <hscholz@raisdorf.net> (maintainer) [1, 2]
2005-11-29 10:40:14 +00:00
Erwin Lansing
8d8c003461 Update to 1.10
PR:		89669
Submitted by:	Lars Balker Rasmussen <lars@balker.dk> (maintainer)
2005-11-29 10:20:03 +00:00
Cheng-Lung Sung
acf35e22a7 - Update to 0.03
- improving kwalitee
- add SHA256 checksum
- made portlint happy about IGNORE messages

PR:		89705
Submitted by:	clsung
Approved by:	maintainer
2005-11-29 09:24:07 +00:00
Pav Lucistnik
f0f2390656 - Update to 2.0.7
PR:		ports/89699
Submitted by:	Meno Abels <meno.abels@adviser.com> (maintainer)
2005-11-28 23:52:19 +00:00
Thierry Thomas
2ad295252e - Unbreak by upgrading to 0.10.2;
- Fix the shebang path;

- Add a --daemon argument to startup script;

- Since I'm there add 2 mirrors.

PR:		ports/89175
Submitted by:	Alastair Rankine <arsptr (at) optusnet.com.au>
Approved by:	maintainer
2005-11-28 21:26:21 +00:00
Pav Lucistnik
e32dbf88d3 - Update to 0.4.0
PR:		ports/89584
Submitted by:	Ports Fury
2005-11-28 16:40:48 +00:00
Sergey Matveychuk
5e955e4ec1 - Remove a junk file.
Asked by:	maintainer
2005-11-28 10:50:33 +00:00
Sergey Matveychuk
7932d9bc22 - Update to 1.0.4
It fixes 6 Security Vunerabilities:

Critical Level Threats
Potentional XSS injection through GET and other variables
 - Affects all previous versions of Joomla! and Mambo 4.5.2.3
Hardened SEF against XSS injection
 - Affects all previous versions of Joomla! and Mambo 4.5.2.3

Low Level Threats
Potential SQL injection in Polls modules through the Itemid variable
 - Affects all previous versions of Joomla! and Mambo 4.5.2.x series
Potential SQL injection in several methods in mosDBTable class
 - Affects all previous versions of Joomla! and Mambo 4.5.2.x series
Potential misuse of Media component file management functions
 - Affects all previous versions of Joomla! and Mambo 4.5.2.x series
Add search limit param (default of 50) to `Search` Mambots to prevent search flooding
 - Affects all previous versions of Joomla! and Mambo 4.5.2.x series

PR:		ports/89596
Submitted by:	Francisco Alves Cabrita (maintainer)
2005-11-28 07:30:34 +00:00
Edwin Groothuis
2236dda154 Fix build on 4.x
Add SHA256 while we're at it.

Noticed by: YAPHR
2005-11-28 03:07:42 +00:00
Cheng-Lung Sung
de2aa08f58 - add SHA256 checksum
- IGNORE messages begin with a lowercase letter
2005-11-28 02:38:40 +00:00
Cheng-Lung Sung
48506b7b33 - add SHA256 checksum
- IGNORE messages begin with a lowercase letter
2005-11-28 02:24:25 +00:00
Cheng-Lung Sung
531398f5bb - update to 0.07
- from Changes
  ! Changed method of setting content_type [cpan #13854] which broke between
    Spiffy 0.22 and 0.24.
  ! Code reformatted using perltidy.
- add SHA256 checksum
2005-11-28 01:49:45 +00:00
Cheng-Lung Sung
de5744a7e0 - update to 0.05
- from Changes
  - Improved Kwalitee
- add SHA256 checksum
2005-11-28 01:48:20 +00:00
Joe Marcus Clarke
a4f2e9ce12 Update to 1.8.2. 2005-11-27 23:21:11 +00:00
Joe Marcus Clarke
a31fd0be2f Update to 1.8.3. 2005-11-27 23:21:00 +00:00
Joe Marcus Clarke
5f6cd512f5 Update to 1.8.3. 2005-11-27 23:20:33 +00:00
Anton Berezin
edd9e64ef1 Update to 0.06.
PR:		89622
Submitted by:	maintainer
2005-11-27 13:10:51 +00:00