Commit graph

2778 commits

Author SHA1 Message Date
Gabor Pali
cad06c6077 - Add DIST_SUBDIR for Haskell Cabal ports (with default of "cabal")
Suggested by:	admi3
2010-08-08 08:49:38 +00:00
Max Khon
47076b9bb0 Fix pkgconfig directory.
PR:		149279
Submitted by:	Philip M. Gollucci
2010-08-04 15:52:54 +00:00
Jimmy Olgeni
c2c68f52d1 Drop maintainership of star, which I haven't been using for a while. 2010-08-04 11:25:38 +00:00
Max Khon
1fd41671ce Update to 0.2alpha.
This fixes infinite loop in MS-ZIP.

PR:		149180
2010-08-01 17:28:58 +00:00
Jeremy Messenger
113641e728 - Makes neon29 our default neon library. The neon 0.27.x to 0.29.x are API and
ABI backwards compatible. It is unnecessary to have more than one same
  libraries (ie: neon28 and neon29) as it creates issue in our ports tree such
  as CONFLICTS and made our Makefile complicate.
- Remove www/neonpp and www/neon28.
- Add USE_GNOME=ltverhack; it corrects the shared library version by change
  from libneon.so.29 to libneon.so.27. It won't get bump again with no reason
  unless ABI changes.
- Bump the PORTREVISION on all ports and chase the shared library change.
- Add info in the UPDATING for how to rebuild on all ports that depend on
  neon.

PR:		ports/148295
Approved by:	lev (maintainer timeout, no respone for months),
		portmgr
Tested by:	pointyhat-exp by pav
2010-07-30 22:14:49 +00:00
Gabor Kovesdan
cfdadd1d6c Update to 1.3, which fixes two security bugs. Detailed description
from the author follows.

Bug 1: Infinite loop in MS-ZIP decoder [1]

The MS-ZIP and Quantum decoders read bits in roughly the same way as the LZX
decoder, however they don't have "inject two fake bytes" code.

In the situation where read() provides zero bytes, e.g. at the end of file or
end of a CAB block, the LZX decoder handles this by injecting two fake bytes,
then returns an error on subsequent calls. MS-ZIP and Quantum instead return
zero bytes without error. However, all three decoders are written to presume
they will get at least one byte. So this could lead to an infinite loop in
MS-ZIP and Quantum. An infinite loop has definitely been seen in MS-ZIP -
there is a while loop in inflate() of an uncompressed block (block type 0)
which won't end until enough input is provided.

Partial solution: change "if (read < 0)" to "if (read <= 0)" in mszipd.c and
qtmd.c.
- http://libmspack.svn.sourceforge.net/viewvc/libmspack?view=revision&revision=90

However, this breaks compatibility with a number of MS-ZIP/Quantum encoded
files. A full solution would be to implement the same bit-reading system as
LZX. I've done this now, merging all the bit-reading and huffman-reading
code into two new files; readbits.h and readhuff.h
- http://libmspack.svn.sourceforge.net/viewvc/libmspack?view=revision&revision=95

There are several further changes made to integrate readbits.h and readhuff.h,
I recommend you look at the latest version in the source repository.
- http://libmspack.svn.sourceforge.net/viewvc/libmspack/libmspack/trunk/mspack/

Bug 2: Segmentation fault in "cabextract -t"

This bug may not affect you, depending on your implementation of
mspack_system->write(). It does cause a segfault in cabextract's
cabx_write() in "-t" (test archive) mode.

In the Quantum decoder, when the window wrap is reached, all currently
unwritten data is flushed to disk. Sometimes, less data is needed than
is flushed, which makes the variable out_bytes negative.

When the main decoding loop finishes, a final call to write() is made if
out_bytes is not zero. In that situation, it calls mspack_system->write() with
a negative byte count, e.g. -129 bytes. You should reject this. In
cabextract's "-t" mode, this is not caught, but instead converted to an
unsigned integer and passed to md5_process_bytes(), which tries to
read e.g. 4294967167 bytes, causing it to read beyond the end of
valid process space and thus segfault.

Solution:
- Break out to the end of the decoding loop immediately if the flush would be more than needed.
   http://libmspack.svn.sourceforge.net/viewvc/libmspack/libmspack/trunk/mspack/qtmd.c?r1=114&r2=113
- Add checking of the "bytes" argument in mspack_system read() / write() implementations, just to be sure.
   http://libmspack.svn.sourceforge.net/viewvc/libmspack?view=revision&revision=118

Security:	SA40719 [1]
2010-07-29 22:45:51 +00:00
Philippe Audeoud
2f7b78b349 - Update to 1.66
- Changelog: <http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.66/CHANGES>
2010-07-27 14:40:03 +00:00
Philippe Audeoud
38981a3376 - Update to 2.030
PR:		ports/148943
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet _AT_ sunpoet.net>
2010-07-26 07:48:39 +00:00
Philippe Audeoud
564527d02c - Update to 2.030
PR:		ports/148942
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet _AT_ sunpoet.net>
2010-07-26 07:47:47 +00:00
Koop Mast
65898b3f67 Presenting GNOME 2.30.2. for FreeBSD. 2010-07-25 19:35:08 +00:00
Philippe Audeoud
e6cc9c7c29 - Update to 1.64
- Changelog: <http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.64/CHANGES>
2010-07-15 09:33:04 +00:00
Marcelo Araujo
c894e47e89 - Update to 0.65.
- Pass maintainership to submitter.

PR:		ports/148453
Submitted by:	C-S <c-s@c-s.li>
2010-07-11 13:29:50 +00:00
Emanuel Haupt
572eeb5ff4 Update to 20100710. This update is actually a shell replacement of the original
perl script.

Benefits:
 - perl is no longer required as a dependency
 - other contents than data.tar.gz (data.tar, data.tar.bz2, data.tar.lzma,
   data.tar.xz) is now properly dealt with
 - deb package isn't sucked into memory anymore

Submitted by:	Alex Kozlov <spam@rm-rf.kiev.ua>
2010-07-10 17:14:57 +00:00
Juergen Lock
13df5bc69e - Update and add support for newer rpms that use xz or lzma. [1]
- Added RUN_DEPENDS on archivers/xz on systems where its not in base.

PR:		ports/148446 [1]
Submitted by:	Alex Kozlov <spam@rm-rf.kiev.ua>
2010-07-08 19:23:25 +00:00
Brendan Fabeny
fb5116f2e7 Change my ports to use my FreeBSD.org email address. 2010-07-08 12:51:37 +00:00
Mark Linimon
a5feba6e0e Update deprecation notices and expiration dates.
Submitted by:	former maintainer on ports@
Feature safe:	yes
2010-07-08 02:11:51 +00:00
Mark Linimon
4504c11b80 Reset maintainer per his request to ports@.
Feature safe:	yes
2010-07-08 02:04:06 +00:00
Johan van Selst
6ab8c72d01 - Add extra patch that should fix the rpm build on FreeBSD 6.x
Reported by:	pointyhat via erwin
Feature safe:	yes
2010-07-06 16:47:50 +00:00
Wen Heping
f9b6fa2656 - Bump PORTREVISION to chase the update of devel/tbb
PR:		ports/147870
Submitted by:	Ganael Laplanche <ganael.laplanche@martymac.com> (maintainer)
Feature safe:	yes
2010-07-04 09:01:39 +00:00
Johan van Selst
ae5b35f46a - Update to rpm-4.8.1 (previous version was nearly 10yrs old)
- Grab maintainership

Feature safe:	yes
2010-07-02 11:47:27 +00:00
Max Brazhnikov
31da485dc4 Present KDE SC 4.4.5 for FreeBSD.
Feature safe:	yes
2010-06-29 20:35:28 +00:00
Philippe Audeoud
e2ea60f8b2 - Update to 1.62
- Changelog: http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.62/CHANGES

Feature safe:	yes
2010-06-29 12:19:44 +00:00
Wen Heping
b0a9b704c4 - Update to 0.42
Feature safe:	yes
2010-06-29 01:55:49 +00:00
Martin Wilke
304169c110 - Update to 0.5.3
PR:		148110
Submitted by:	David Naylor <naylor.b.david@gmail.com> (maintainer)
Feature safe:	yes
2010-06-27 04:50:29 +00:00
Juergen Lock
c18777fcab Update to 9.13.
PR:		ports/148132
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Feature safe:	yes
2010-06-26 15:06:28 +00:00
Philippe Audeoud
c8dd19900b - Fix pkg-plist
- Bump PORTREVISION

PR:		ports/146862
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet _AT_ sunpoet.net>
Feature safe:	yes
2010-06-24 09:53:24 +00:00
Sylvio Cesar Teixeira
6904291450 - Update MASTER_SITES and merge CONFLICTS
PR:		ports/147883
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Feature safe:	yes
2010-06-19 18:56:51 +00:00
Mark Linimon
9fdb42c6c8 Reset jmelo@FreeBSD.org due to many months of inactivity and no response
to PRs.

Hat:		portmgr
Feature safe:	yes
2010-06-19 04:23:03 +00:00
Matthias Andree
d00f8a61b2 Switch MAINTAINER line to FreeBSD address.
Approved by: garga (mentor, implicit)
2010-06-13 11:57:36 +00:00
Li-Wen Hsu
1e8d7c0fa6 - Mark deprecated, all development activity in this port has been
merged into mainline python after 2.4

PR:		ports/146944
Submitted by:	Garrett Cooper <gcooper AT FreeBSD.org> (maintainer)
2010-06-12 09:46:58 +00:00
Christian Weisgerber
044cfb9a82 Fix dead loop on extracting existing symlinks with the -k option.
Submitted by:	John Hein <jhein@symmetricom.com>
Obtained from:	upstream
2010-06-11 19:03:50 +00:00
Kevin Lo
aea0bb54e7 Update to 1.6.2 2010-06-10 02:34:00 +00:00
Emanuel Haupt
c6c5538a2b Take maintainership 2010-06-08 09:01:11 +00:00
Gabor Kovesdan
497166b01b - Drop maintainership 2010-06-08 07:31:58 +00:00
Philip M. Gollucci
b0f16becef - Convert to RF macro
With Hat:   ruby@
2010-06-07 20:48:42 +00:00
Philip M. Gollucci
585fef8bde send some ruby- ports to ruby@ 2010-06-07 20:38:08 +00:00
Martin Wilke
1ebcfb635c - Update to 0.8.42 2010-06-05 16:20:50 +00:00
Dirk Meyer
23e5e3fe06 - unify license description 2010-06-05 08:00:15 +00:00
Dirk Meyer
d2a5a46507 LICENSE GPLv2 2010-06-04 13:49:15 +00:00
Yen-Ming Lee
7d278ae478 - update to 0.40 2010-06-02 19:16:30 +00:00
Mark Linimon
846585d428 Fix package on powerpc. While here, sort.
Hat:		portmgr
2010-06-02 18:50:25 +00:00
Martin Wilke
04c55a2322 Plzip is a massively parallel (multi-threaded), lossless data
compressor based on the LZMA algorithm, with very safe integrity
checking and a user interface similar to the one of gzip or bzip2.
Plzip uses the lzip file format; the files produced by plzip are
fully compatible with lzip-1.4 or newer.

WWW: http://www.nongnu.org/lzip/plzip.html

Albert Vernon <f3cun3c02@sneakemail.com>

PR:		ports/146884
Submitted by:	Albert Vernon <f3cun3c02 at sneakemail.com>
2010-06-02 15:33:46 +00:00
Martin Wilke
a2c463183a The lzlib compression library provides in-memory LZMA compression
and decompression functions, including integrity checking of the
uncompressed data.  The compressed data format used by the library
is the lzip format.

WWW: http://www.nongnu.org/lzip/lzlib.html

Albert Vernon <f3cun3c02@sneakemail.com>

PR:		ports/146882
Submitted by:	Albert Vernon <f3cun3c02 at sneakemail.com>
2010-06-02 15:33:22 +00:00
Max Brazhnikov
b2088def4d Present KDE SC 4.4.4 for FreeBSD. 2010-06-01 21:35:38 +00:00
Martin Matuska
7e7e88fd22 - Replace patch-configure.ac with patch-configure
- remove USE_AUTOTOOLS

As we want to use xz for extraction of port's distfiles,
it cannot depend on autoconf.

PR:		ports/147280
Approved by:	maintainer (private e-mail)
2010-06-01 15:28:03 +00:00
Erwin Lansing
d75f381d83 Also mark BROKEN on recent HEAD after the import of lzma.
Submitted by:	pointyhat
2010-05-31 16:05:23 +00:00
Oliver Lehmann
fadaf7d1d9 update xfce to 4.6.2
bump PORTREVISION on all depending ports
2010-05-31 15:27:35 +00:00
Ade Lovett
8d837132c7 Bounce PORTREVISION for gettext-related ports. Have fun, ya'll. 2010-05-31 02:01:56 +00:00
Gabor Kovesdan
c4bdcfda9a - Update to 3.93
PR:		ports/144951
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
2010-05-30 21:59:40 +00:00
Dirk Meyer
ca8e128e62 - drop USE_GNUSTEP_PREFIX 2010-05-30 12:28:39 +00:00
Gabor Pali
52a16208ea Rename the following Haskell ports to bring them in sync with the
HackageDB:

  archivers/hs-zip-archive-ghc -> archivers/hs-zip-archive
  devel/hs-binary-ghc -> devel/hs-binary
  devel/darcs -> devel/hs-darcs
  devel/hs-language-c-ghc -> devel/hs-language-c
  devel/hs-lazysmallcheck-ghc -> devel/hs-lazysmallcheck
  devel/hs-pcre-light-ghc -> devel/hs-pcre-light
  devel/hs-utf8-string-ghc -> devel/hs-utf8-string
  graphics/hs-HGL-ghc -> graphics/hs-HGL
  ports-mgmt/porte -> ports-mgmt/hs-porte
  security/hs-digest-ghc -> security/hs-digest
  textproc/hs-haxml -> textproc/hs-HaXml
  textproc/hs-highlighting-kate-ghc -> textproc/hs-highlighting-kate
  textproc/hs-polyparse-ghc -> textproc/hs-polyparse
  textproc/pandoc -> textproc/hs-pandoc
  x11/hs-x11-ghc -> x11/hs-X11
  x11/hs-x11-xft-ghc -> x11/hs-X11-xft
  x11/xmobar -> x11/hs-xmobar
  x11-toolkits/hs-opengl-ghc -> x11-toolkits/hs-OpenGL
  x11-toolkits/hs-OpenGLRaw-ghc -> x11-toolkits/hs-OpenGLRaw
  x11-toolkits/hs-GLURaw-ghc -> x11-toolkits/hs-GLURaw
  x11-toolkits/hs-glut-ghc -> x11-toolkits/hs-GLUT
  x11-wm/xmonad -> x11-wm/hs-xmonad
  x11-wm/xmonad-contrib -> x11-wm/hs-xmonad-contrib
2010-05-24 21:52:43 +00:00
Dmitry Marakasov
018e66797f - Pass maintainership to gcooper@
PR:		146911
Submitted by:	gcooper@
2010-05-24 15:31:21 +00:00
Mark Linimon
cb4c252136 Reset perky@FreeBSD.org due to maintainer-timeouts and no response
to email.

Hat:		portmgr
2010-05-23 21:16:16 +00:00
Gabor Pali
f1905422ee - Fix OPTIONS support for Cabal ports by introducing
bsd.cabal.options.mk
- Fix ports broken with non-default options

Triggered by:	Yuri Pankov <yuri.pankov@gmail.com>
2010-05-22 22:41:50 +00:00
Emanuel Haupt
a8319ce522 Update to 1.20, FreeBSD patches have been merged with the upstream project. 2010-05-22 09:52:28 +00:00
Christian Weisgerber
0671e83009 Mark IGNORE if xz is already in the base system. 2010-05-21 16:27:30 +00:00
Christian Weisgerber
26e0343990 The xz utils and lzma library have been imported into base, so make
the dependency on the archivers/xz port conditional on OSVERSION.
2010-05-21 16:23:46 +00:00
Christian Weisgerber
832fb3aa95 The xz utils and lzma library have been imported into base, so make
the dependency on the archivers/xz port conditional on OSVERSION.

Approved by:	MAINTAINER
2010-05-21 16:22:40 +00:00
Emanuel Haupt
859614d5a6 Update to 1.19 2010-05-21 13:26:01 +00:00
Gabor Pali
0a4437f23d - Update to 0.1.1.6
- Import OPTIONS
2010-05-15 18:50:51 +00:00
Gabor Pali
ec29a59ec3 Introduce a new (and hopefully better) ports infrastructure for Haskell Cabal
ports which makes possible the direct translation of Cabal package
descriptions to FreeBSD ports.  It promises both easier addition and
maintenance for Cabal-based ports.
2010-05-12 16:33:59 +00:00
Dima Panov
746dafd424 - The FreeBSD KDE team is pleased to announce KDE SC 4.4.3 for FreeBSD
With hat on:	kde@
2010-05-11 14:21:05 +00:00
Koop Mast
48e62d9a37 Presenting GNOME 2.30.1 for FreeBSD. The offical release notes for this
release can be found at http://library.gnome.org/misc/release-notes/2.30/ .

This release brings initial PackageKit support, Upower (replaces power
management part of hal), cuse4bsd integration with HAL and cheese, and a
faster Evolution.

Sadly GNOME 2.30.x will be the last release with FreeBSD 6.X support. This
will also be the last of the 2.x releases. The next release will be the
highly-anticipated GNOME 3.0 which will bring with it a new UI experience.

Currently, there are a few bugs with GNOME 2.30 that may be of note for our
users. Be sure to consult the UPGRADING note or the 2.30 upgrade FAQ at
http://www.freebsd.org/gnome/docs/faq230.html for specific upgrading
instructions, and the up-to-date list of known issues.

This release features commits by avl, ahze, bland, marcus, mezz, and myself.

The FreeBSD GNOME Team would like to thank Anders F Bjorklund for doing the
initual packagekit porting.

And the following contributors & testers for there help with this release:
Eric L. Chen
Vladimir Grebenschikov
Sergio de Almeida Lenzi
DomiX
walder
crsd
Kevin Oberman
Michal Varga
Pavel Plesov
Bapt
kevin

and ITetcu for two exp-run

PR:	ports/143852
	ports/145347
	ports/144980
	ports/145830
	ports/145511
2010-05-10 21:19:08 +00:00
Martin Wilke
92350e11c1 - Includes two patches
* a bugfix that closes a memory leak triggered by corrupted PAR2 files.
	  That fix is included in some linux vendors' libpar2 packages, and is
	  well-tested.
	* The other adds additional functionality: a method to cancel a file
	  repair in progress. This patch can be disabled through a config option.
	  It is enabled by default because the only application in the ports tree
	  that links against libpar2 is news/nzbget. Nzbget makes use of this
	  functionality if it is available.

PR:		146125
Submitted by:	Jeff Burchell <toxic@doobie.com> (maintainer)
2010-05-10 06:04:30 +00:00
Andrej Zverev
e8325ce017 Update to 0.11
Changes:	http://search.cpan.org/dist/Archive-SimpleExtractor/Changes
		(diff in this case)
2010-05-06 07:25:09 +00:00
Philippe Audeoud
7ad7b7dffa - Update to 1.60
- Changelog: http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.60/CHANGES
2010-05-05 09:03:52 +00:00
Philippe Audeoud
8b213808e5 - Update to 2.027
- Changelog: http://cpansearch.perl.org/src/PMQS/Compress-Raw-Bzip2-2.027/Changes
2010-05-05 09:01:22 +00:00
Philippe Audeoud
027cec99a4 - Update to 2.027
- Changelog: http://search.cpan.org/src/PMQS/Compress-Raw-Zlib-2.027/Changes
2010-05-05 08:51:22 +00:00
Max Khon
44663dfe28 Update to upx 3.05 and lzma from 7zip 4.65
PR:		146216
2010-05-04 14:45:26 +00:00
Li-Wen Hsu
ed4c050163 - Update to 9.04
PR:		ports/146228
Submitted by:	bf <bf1783 AT gmail.com> (maintainer)
2010-05-02 07:21:03 +00:00
Wen Heping
76909b2e90 - Update to 9.12
PR:		ports/146138
Submitted by:	bf <bf1783@gmail.com> (maintainer)
2010-04-29 06:32:50 +00:00
Martin Wilke
10615b6b0e - Update to 1.1.1 2010-04-25 09:18:18 +00:00
Martin Wilke
d9a71c2485 - Update to 2.0.0 2010-04-25 09:17:52 +00:00
Dirk Meyer
85eef8a8d7 - PHP 5.2 slave port
PR:		145772
Submitted by:	Alex Keda
2010-04-23 22:34:59 +00:00
Dirk Meyer
fd6766078b - PHP 5.2 slave port
PR:		145772
Submitted by:	Alex Keda
2010-04-23 22:33:48 +00:00
Dirk Meyer
90dfbebfc8 - PHP 5.2 slave port
PR:		145772
Submitted by:	Alex Keda
2010-04-23 15:21:26 +00:00
Mark Linimon
f466b8bf64 Reassign ports from andrey@kostenko.name to perl@ due to lack of time.
Hat:		portmgr
2010-04-20 03:04:26 +00:00
Christian Weisgerber
45a4dbb95b * Do not mark as broken on sparc64.
* Fix the build framework so it can successfully #define a wrapper for
  stat() on those systems where namei() behaves strangely--independent
  of architecture.
2010-04-19 20:23:00 +00:00
Steven Kreuzer
a89d13e582 Install man page
PR:		ports/145529
Submitted by:	Steven Kreuzer <skreuzer@FreeBSD.org
Approved by:	Gea-Suan Lin <gslin@gslin.org>
2010-04-19 19:27:47 +00:00
Alex Dupre
bf330a57d4 Switch to use newer GMP version.
PR:		ports/144487
Submitted by:	ale
Approved by:	portmgr (-exp run by erwin)
2010-04-19 10:43:42 +00:00
Kevin Lo
b6ecfd9eb2 Update to 1.6.1.1 2010-04-14 06:17:26 +00:00
Greg Larkin
dd2ee4d0e3 - Unbreak after recent PHP 5.3.2 update
Reported by:	pointyhat
Approved by:	portmgr (itetcu, erwin - blanket)
2010-04-13 00:11:52 +00:00
Sylvio Cesar Teixeira
e88b28b34b - Update to 1.10
Approved by:	itetcu (mentor, implicit)
2010-04-09 23:38:51 +00:00
Alex Dupre
538a6d28a2 Update to PHP 5.3.2 release! 2010-04-09 09:34:43 +00:00
Philip M. Gollucci
32b1b831cd re-assign back to ports@ 2010-04-04 23:51:46 +00:00
Mark Linimon
5208dca85e Mark as broken on sparc64.
Hat:		portmgr
2010-04-04 06:03:54 +00:00
Peter Pentchev
29863648e3 Chase the ftp/curl shlib version bump. 2010-04-03 10:44:36 +00:00
Pav Lucistnik
d9d9ce1fbc - Squelch warnings
PR:		ports/144792
Submitted by:	Shigekazu KIMURA(LEE) <spbz6f99@utopia.ocn.ne.jp>
2010-04-02 13:30:43 +00:00
Christian Weisgerber
2d640b7c88 Update to 1.23: miscellaneous bug fixes and minor additions. 2010-03-29 17:36:25 +00:00
Dirk Meyer
de78af3ac5 - update to 1.4.1
Reviewed by:	exp8 run on pointyhat
Supported by:	miwi
2010-03-28 06:47:48 +00:00
Mark Linimon
b565fe4ada Mark as broken on ia64/powerpc/sparc64 (same failure).
Hat:		portmgr
2010-03-26 11:23:16 +00:00
Mark Linimon
dfb045e801 Mark as broken on powerpc: does not install.
Hat:		portmgr
2010-03-26 11:16:14 +00:00
Christian Weisgerber
572049dc82 Initial import for GNU cpio 2.11.
GNU cpio copies files into or out of a cpio or tar archive.  The
archive can be another file on the disk, a magnetic tape, or a pipe.
2010-03-25 21:54:41 +00:00
Christian Weisgerber
0f7ef19845 Fix a buffer overflow in the rmt client functionality.
From upstream.

Security:	c175d72f-3773-11df-8bb8-0211d880e350
2010-03-24 18:46:46 +00:00
Andrey A. Chernov
89cb3506b1 Update to 3.93
PR:             144953
Submitted by:   Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
2010-03-23 04:27:59 +00:00
Greg Lewis
b15311b1c1 . Add lib/pkgconfig to PLIST_DIRS.
Reported by:	QAT
2010-03-22 02:43:11 +00:00
Greg Lewis
43f255f737 . Update to 2.8.3. 2010-03-21 21:29:18 +00:00
Gabor Kovesdan
615de0116b - Update 0.23
Version: lbzip2-0.23
Focus:   Minor feature enhancements
Date:    03-Mar-2010
Changes: In this release, if lbzip2 intends to exit with status 1 due to any
         fatal error, but any SIGPIPE or SIGXFSZ with inherited SIG_DFL action
         was generated for lbzip2 previously, then lbzip2 terminates by way of
         one of said signals, after cleaning up any interrupted output file.
         This should improve compatibility with GNU tar, when it spawns lbzip2
         as a filter, and closes the pipe between them early, before it
         receives an EOF from lbzip2.
2010-03-17 03:08:32 +00:00
Martin Wilke
337c7a75b1 - Update to 1.1.0 2010-03-14 10:30:28 +00:00
Martin Wilke
d3603f46a7 - Update to 20100203
PR:		144625
Submitted by:	Ganael Laplanche <ganael.laplanche@martymac.com> (maintainer)
2010-03-10 17:40:27 +00:00
Martin Wilke
31cd58959a - Update to 3.9.9
PR:		144081
Submitted by:	Alex Samorukov <samm@os2.kiev.ua> (maintainer)
2010-03-09 22:42:59 +00:00
Alexey Dokuchaev
b434c5de94 Make this port actually usable on arches were sizeof(long) != 4.
Reported by:	alepulver
Tested on:	amd64, ia64
2010-03-09 21:49:57 +00:00
Martin Wilke
2a486acb15 - Update WWW
PR:		143991
Submitted by:	martinko <gamato@users.sf.net>
Approved by:	maintainer timeout
2010-03-08 22:59:46 +00:00
Renato Botelho
69822331c7 Update to 4.9
Feature safe:	yes
2010-03-05 11:10:07 +00:00
Renato Botelho
584058c5d0 Update to 4.8
Feature safe:	yes
2010-03-04 15:59:30 +00:00
Mark Linimon
863c30888b Mark as broken on sparc64.
Hat:		portmgr
Feature safe:	yes
2010-02-27 01:37:13 +00:00
Greg Larkin
0fc9ca1a99 - Changed the beecrypt shlib version to check, after it was decremented
in the beecrypt upstream distribution
- Bumped PORTREVISION

PR:		ports/144246
Submitted by:	glarkin
Approved by:	Anders F Bjorklund <afb@rpm5.org> (maintainer)
Feature safe:	yes
2010-02-24 01:11:16 +00:00
Renato Botelho
489b2ee681 Fix segfault on amd64
Reported by:	alex at to.govorit.ru
Obtained from:	Arj's author
Tested  by:	Guilherme M. Schroeder <lero420 at gmail.com>
Feature safe:	yes
2010-02-23 10:56:25 +00:00
Max Brazhnikov
471b31c71a Update to 0.9.3
Reformat pkg-descr.

Feature safe:	yes
2010-02-22 11:17:16 +00:00
Gabor Kovesdan
700aec0fdf - Update to 0.22
Version: lbzip2-0.22
Focus:   Minor bugfixes
Date:    18-Feb-2010
Changes: Building lbzip2 on Debian unstable discovered that the "lfs.sh" build
         script, due to a typo, did not invoke the "getconf" utility in a
         SUSv2-conformant way. This bug has been corrected.

Version: lbzip2-0.21
Focus:   Minor bugfixes
Date:    17-Feb-2010
Changes: Code examination revealed that lbzip2-0.18 introduced a race between
         the following two code paths: (1) the muxer thread displays an error
         message when it encounters a write error, (2) the main thread, in
         preparation to terminate the process, frees the output file name after
         an INT or TERM signal is delivered to it. This bug had negligible
         chance to occur, but it was fixed nonetheless.

Feature safe:	yes
2010-02-19 20:58:45 +00:00
Martin Wilke
4fee8a2823 - Update to 1.14.25
PR:		140699
Submitted by:	Gea-Suan Lin <gslin@gslin.org>
Approved by:	maintainer timeout
2010-02-13 18:41:06 +00:00
Martin Wilke
118904c833 - Update to 2.1.6
PR:		143791
Submitted by:	Gea-Suan Lin <gslin@gslin.org> (maintainer)
2010-02-12 14:20:10 +00:00
Martin Wilke
bb734e4711 Presenting KDE 4.3.5 for FreeBSD. The official release notes for this
release can be found at http://kde.org/announcements/announce-4.3.5.php.

KDE 4.3.5, the last bugfix release in 4.3.x series. We'd like to say
thanks to all helpers and submitters.
2010-02-06 21:52:30 +00:00
Gabor Kovesdan
589af33998 - Update to 1.4 2010-02-05 21:55:09 +00:00
Gabor Kovesdan
4b782e8ef9 - Update to 0.20
- Install manual page
- Support for PORTDOCS
2010-02-05 21:54:18 +00:00
Gabor Kovesdan
49e969d77b - Update to 3.91 [1]
- Allow installation on 64-bit systems even if 32-bit libraries are not
  present (binary is statically linked) but we have kernel support for
  32-bit compatibility

PR:		ports/143176 [1]
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net> [1]
2010-02-05 19:00:43 +00:00
Dirk Meyer
ca9c60461c - update to jpeg-8 2010-02-05 11:46:55 +00:00
Philippe Audeoud
ee57c769c4 - Update to 1.56
- Changelog: http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.56/CHANGES
2010-02-04 08:49:05 +00:00
Sylvio Cesar Teixeira
5f205e867e - Update to 1.9
Approved by:	miwi (mentor)
2010-02-02 23:39:52 +00:00
Andrey A. Chernov
0d6e4de00e Update to 3.91
Make portlint happier

PR:             143178
Submitted by:   Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
2010-01-28 13:45:13 +00:00
Christian Weisgerber
79534bfe7b Fix a geline() segfault on 8.0 when using --listed-incremental.
Submitted by:	Dennis Noordsij <noordsij@cs.helsinki.fi>
2010-01-21 15:32:55 +00:00
Renato Botelho
247e6cb743 Silent some compiler warnings that could result on program abort
PR:		ports/141938 (based on)
Submitted by:	Ted Mittelstaedt <tedm@ipinc.net>
2010-01-18 12:25:20 +00:00
Philippe Audeoud
dac6b39dca - Update to 2.024
- Changelog: <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Zlib-2.024/Changes>
2010-01-11 08:20:01 +00:00
Philippe Audeoud
783899d0f5 - Update to 2.024
- Changelog: <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Bzip2-2.024/Changes>
2010-01-11 08:18:23 +00:00
Oliver Lehmann
1d0faca52b bump PORTREVISION for the recent update of
x11/libexo
x11-toolkits/libxfce4gui
sysutils/xfce4-settings
x11-wm/xfce4-panel
x11/Terminal
2010-01-10 09:56:26 +00:00
Max Brazhnikov
76030972f5 take maintainership 2010-01-10 08:06:33 +00:00
Mark Linimon
a8b14b118b Reset zaa@zaa.pp.ru: mail can not be delivered (mail loop). 2010-01-10 06:43:00 +00:00
Philip M. Gollucci
cfde0178e6 - use ${VARIABLE}, instead of $(VARIABLE)
PR:             ports/142205
Submitted by:   Sevan Janiyan <venture37@geeklan.co.uk>
2010-01-08 01:22:57 +00:00
Wen Heping
9a8f90c954 - Update to 0.38 2010-01-07 07:14:32 +00:00
Renato Botelho
9927229e72 Define rules for PORTSCOUT checking in some of my ports 2010-01-05 11:48:17 +00:00
Joe Marcus Clarke
463d6d0b94 Now that -CURRENT has /usr/bin/unzip, explicitly invoke (and depend on)
archivers/unzip.
2010-01-02 22:11:22 +00:00
Martin Matuska
df2813e03c - Port completely superseded and replaced by archivers/star
archivers/star-devel
2009-12-26 10:26:55 +00:00
Philip M. Gollucci
3f353d1db9 - Update to 0.06
PR:             ports/141523
Approved by:    maintainer
Submitted by:   myself (pgollucci@)
2009-12-26 05:51:57 +00:00
Doug Barton
2fadfa2cfb For ports maintained by ports@FreeBSD.org, remove names and/or
e-mail addresses from the pkg-descr file that could reasonably
be mistaken for maintainer contact information in order to avoid
confusion on the part of users looking for support. As a pleasant
side effect this also avoids confusion and/or frustration for people
who are no longer maintaining those ports.
2009-12-21 02:19:12 +00:00
Gabor Kovesdan
91aa23b37a - Update to 0.19
Version: lbzip2-0.19
Focus:   Minor bugfixes
Date:    01-Dec-2009
Changes: This release works around a GNU/kFreeBSD standards-compliance problem.
         GNU/kFreeBSD does not define some STREAMS-related errno macros
         mandated by SUSv2. Consequently, lbzip2-0.18 cannot be built on
         GNU/kFreeBSD. This version checks if those (and some other) macros are
         defined before relying them.

Version: lbzip2-0.18
Focus:   Major feature enhancements
Date:    29-Nov-2009
Changes: After adding sanity checks to both decompressors, the following
         features were implemented: removal of input FILE operands; options
         --keep and --force; copying of owner, group, permission bits, access
         time, modification time to regular output files. Logging was cleaned
         up and internally categorized into INFO, WARNING and FATAL levels; a
         separate exit status was introduced for the case when a warning
         message was printed. The decompressor robustness tests were
         re-executed. The author has finally replaced bzip2 with lbzip2 on his
         system.
2009-12-20 18:57:46 +00:00
Joe Marcus Clarke
9d3a1e4a63 Update to 2.28.2. 2009-12-18 05:41:49 +00:00
Gabor Pali
0d6eef4b21 - Update to 0.1.1.4 2009-12-15 20:09:06 +00:00
Jimmy Olgeni
61a6b332a9 Upgrade to version 1.5.1.
PR:		ports/141373
Submitted by:	ehaupt
2009-12-12 22:45:47 +00:00
Gabor Pali
ee8eda08fb - Update HsColour to 1.15
- Bump PORTREVISION for all affected ports

PR:		ports/138567, ports/138568
Submitted by:	Ashish Shukla <wahjava (at) gmail.com>
Approved by:	maintainer
2009-12-06 20:56:55 +00:00
Martin Wilke
9e7da961d0 The FreeBSD KDE is please to announce the release of KDE 4.3.4,
a bugfix, translation and maintenance update. Release note can be found
at http://kde.org/announcements/announce-4.3.4.php

We'd like to say thanks to all helpers and submitters.
2009-12-01 16:34:53 +00:00
Joe Marcus Clarke
f76d32b8e8 Presenting GNOME 2.28.1 for FreeBSD. The official release notes for this
release can be found at http://library.gnome.org/misc/release-notes/2.28/ .
Officially, this is mostly a polishing release in preparation for GNOME 3.0
due in about a year.

On the FreeBSD front, though, a lot went into this release.  Major thanks
goes to kwm and avl who did a lot of the porting work for this release.
In particular, kwm brought in Evolution MAPI support for better Microsoft
Exchange integration.  Avl made sure that the new gobject introspection
repository ports were nicely compartmentalized so that large dependencies
aren't brought in wholesale.

But, every GNOME team member (ahze, avl, bland, kwm, mezz, and myself)
contributed to this release.

Other major improvements include an updated HAL with better volume
probing code, ufsid integration, and support for volume names containing
spaces (big thanks to J.R. Oldroyd); a new WebKit; updated AbiWord;
an updated Gimp; and a preview of the new GNOME Shell project (thanks to
Pawel Worach).

The FreeBSD GNOME Team would like to that the following additional
contributors to this release whose patches and testing really helped
make it a success:

Andrius Morkunas
Dominique Goncalves
Eric L. Chen
J.R. Oldroyd
Joseph S. Atkinson
Li
Pawel Worach
Romain Tartière
Thomas Vogt
Yasuda Keisuke
Rui Paulo
Martin Wilke
(and an extra shout out to miwi and pav for pointyhat runs)

We would like to send this release out to Alexander Loginov (avl) in
hopes that he feels better soon.

PR:		136676
		136967
		138872 (obsolete with new epiphany-webkit)
		139160
		134737
		139941
		140097
		140838
		140929
2009-11-28 20:06:37 +00:00
Sylvio Cesar Teixeira
ba072d1713 - Update my mail address to FreeBSD
Approved by:	miwi (mentor)
2009-11-27 22:52:30 +00:00
Greg Lewis
869140396c . Update to 2.7.1. 2009-11-27 04:31:42 +00:00
Martin Wilke
805f92c8d2 The KDE FreeBSD team is proud to announce the release of KDE 4.3.3
for FreeBSD.

For lists of bugfixes and improvements please see:
http://www.kde.org/announcements/changelogs/changelog4_3_1to4_3_2.php
http://www.kde.org/announcements/changelogs/changelog4_3_2to4_3_3.php

The KDE FreeBSD team would like to say thanks to all the helpers
and submitters.

Tested by:	pointyhat-exp-run (myself)
2009-11-27 01:44:03 +00:00
Juergen Lock
664dabf887 Add option to build minimal possible executable supporting only 7zip archives.
PR:		ports/140903
Submitted by:	Eugene Perevyazko <john@dnepro.net>
2009-11-26 21:02:41 +00:00
Philippe Audeoud
0eac179cc9 - Update to 0.36
- Changes: <http://cpansearch.perl.org/src/BINGOS/Archive-Extract-0.36/CHANGES>
- While I'm here, making portlint happy
2009-11-25 08:40:49 +00:00
Pav Lucistnik
8c2aab382d - Mark MAKE_JOBS_UNSAFE
Reported by:	pointyhat
2009-11-22 19:49:43 +00:00
Pav Lucistnik
38eb8c5339 - Mark MAKE_JOBS_UNSAFE
Reported by:	pointyhat
2009-11-20 22:53:09 +00:00
Kris Moore
ce2a8e7649 - Fix runtime issues when using CUSTOM prefix
PR: 139647
Submitted by: myself
Approved by: Maintainer Timeout
Approved by: miwi (mentor)
2009-11-11 22:12:13 +00:00
Philippe Audeoud
4c27defd25 - Update to 2.023
- Changes: <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Bzip2-2.023/Changes>
2009-11-10 08:16:13 +00:00
Philippe Audeoud
15def98ac6 - Update to 2.023
- Changes: <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Zlib-2.023/Changes>
2009-11-10 08:15:14 +00:00
Gabor Kovesdan
4f4fd2379e - Update to 3.90
PR:		ports/140312
Submitted by:	Ralf van der Enden <tremere@cainites.net>
2009-11-08 12:01:47 +00:00
Andrey A. Chernov
4da8d0e6e0 For unknown reason bsd.port.mk's eval dislike ( and ) in the path, when
MASTER_SITE_BACKUP with ${MASTER_SITES:S/%SUBDIR%/${MASTER_SITE_SUBDIR}/}
at the end and MASTER_SITE_OVERRIDE ?= ${MASTER_SITE_BACKUP} are used
together in /etc/make.conf.

So, use simple workaround: replace ( and ) by their URL-encoded %-codes.

(There is the bug in that area still remains, but not fatal:
the combination above don't understand properly ending :tags sometimes
and tries mass fetching with ending :tags unstripped.
Someone should look at that whole bsd.ports.mk/bsd.sites.mk mess)

While I am here, slightly rearrange ending :tags.
2009-11-06 05:18:58 +00:00
Dmitry Marakasov
22f0383380 - Fix build on 9.0 2009-11-04 15:36:39 +00:00
Martin Wilke
8f245685ad Simple module for extract archives
WWW:	http://search.cpan.org/dist/Archive-SimpleExtractor/

PR:		ports/140224
Submitted by:	Andrey Kostenko <andrey at kostenko.name>
2009-11-04 14:22:10 +00:00
Martin Wilke
965f85c5e1 Archive::Rar uses the standard perl module install process
WWW:	http://search.cpan.org/dist/Archive-Rar/

PR:		ports/140223
Submitted by:	Andrey Kostenko <andrey at kostenko.name>
2009-11-04 14:07:18 +00:00
Max Khon
860556ae06 Update to 3.04.
PR:		140182
Submitted by:	Emanuel Haupt
2009-11-02 09:09:46 +00:00
Gabor Kovesdan
27dc0ed39c - Update to 0.17
PR:		ports/139981 (based on)
Submitted by:	sylvio
2009-10-31 13:49:01 +00:00
Andrey A. Chernov
e1f251b8a5 Remove -DUNICODE_WCHAR, too early 2009-10-26 15:40:48 +00:00
Andrey A. Chernov
d2c74b6734 Upgrade to 6.0
PR:             139971
2009-10-26 13:27:24 +00:00
Wesley Shields
81bbe6fc43 - Add xz compression support.
PR:		ports/139511
Submitted by:	Anders F Björklund <afb@rpm5.org> (maintainer)
2009-10-22 13:27:20 +00:00
Steven Kreuzer
1658a03ac4 zlib is already in base so this port isn't needed.
Submitted by:   Erik Trulsson <ertr1013@student.uu.se>
2009-10-19 22:36:24 +00:00
Emanuel Haupt
ef8077504a Add archivers/amigadepacker, a tool for depacking some compressed Amiga formats 2009-10-18 20:31:16 +00:00
Steven Kreuzer
7571f1867a A Massively Spiffy Yet Delicately Unobtrusive Compression Library 2009-10-18 19:07:47 +00:00
Wen Heping
6f4e19674e - Change maintainer's email address
PR:		ports/139655
Submitted by:	David Naylor <naylor.b.david@gmail.com> (maintainer)
Approved by:	miwi(mentor)
2009-10-16 14:00:34 +00:00
Alexander Logvinov
c4ded7ca94 - Update to 0.6
PR:		ports/139324
Submitted by:	myself
Approved by:	tabthorpe, glarkin (mentors, implicit), maintainer
2009-10-03 23:53:20 +00:00
Alexander Logvinov
fbdb6bf73e - Speed up build phase
Approved by:	tabthorpe, glarkin (mentors, implicit)
2009-10-03 10:47:15 +00:00
Christian Weisgerber
c756d91684 * Enable assembly language optimizations on amd64.
* Use system byte-swapping functions.

PR:		139205, 139206
Submitted by:	swell.k@gmail.com  (idea)
Feature safe:	yes
2009-10-01 21:49:43 +00:00
Juergen Lock
230bcf14c6 Update to 9.04.
PR:		ports/139246
Submitted by:	Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
2009-09-30 20:35:33 +00:00
Alexander Logvinov
cd2f5a6cbe - Update to 3.9.6
PR:		ports/139223
Submitted by:	Alex Samorukov <samm at os2.kiev.ua> (maintainer)
Approved by:	tabthorpe, glarkin (mentors, implicit)
Feature safe:	yes
2009-09-29 00:34:45 +00:00
Emanuel Haupt
3ad361a852 Update WWW
Feature safe:	yes
2009-09-28 12:20:21 +00:00
Christian Weisgerber
b6104fe7cb LZMA Utils have been replaced by XZ Utils (archivers/xz)
Feature safe:	yes
2009-09-21 19:07:37 +00:00
Christian Weisgerber
348ecc5c2c lzmautils -> xz
Feature safe:	yes
2009-09-21 16:38:48 +00:00
Christian Weisgerber
5e595dd9e6 You can now use -J to (un)compress xz format files (.tar.xz, .txz).
Feature safe:	yes
2009-09-21 14:53:38 +00:00
Christian Weisgerber
f8fa7f60ef lzmautils -> xz
Feature safe:	yes
2009-09-21 14:45:22 +00:00
Christian Weisgerber
27ad2e9fde also conflicts with archivers/xz
Feature safe:	yes
2009-09-21 14:42:09 +00:00
Christian Weisgerber
3473e13849 lzmautils-devel -> xz
Feature safe:	yes
2009-09-21 14:27:37 +00:00
Christian Weisgerber
dda93a4d91 Update to 4.999.9beta.
This is the last beta release before XZ Utils 5.0.0. No big changes
are planned before the first stable release.

XZ Utils is the official successor to LZMA Utils.

Feature safe:	yes
2009-09-21 14:07:42 +00:00
Martin Wilke
2d5c2ad67b - Fix output from xz -H however when running tests the (de)compression doesn't
use more than one thread.

PR:		137581
Submitted by:	Martin Birgmeier <martin@email.aon.at>
Approved by:	maintainer
Feature safe:	yes
2009-09-19 19:34:11 +00:00
Martin Wilke
e9b1fa294a - Pass maintainership to submitter
PR:		138588 138594 138604
Submitted by:	Sylvio Cesar <scjamorim@bsd.com.br>
Feature safe:	yes
2009-09-19 17:15:03 +00:00
Martin Wilke
0b4d4198af - Pass maintainership to submitter
PR:		138587 138586 138584
Submitted by:	Sylvio Cesar <scjamorim@bsd.com.br>
Feature safe:	yes
2009-09-19 17:07:39 +00:00
Martin Wilke
26d077b053 - Pass maintainership to submitter
- Move to PLIST_FILES
- Respect NOPORT*

PR:		138593
Submitted by:	Sylvio Cesar <scjamorim@bsd.com.br>
Feature safe: yes
2009-09-19 00:02:18 +00:00
Martin Wilke
ee40b88d49 - Pass maintainership to submitter
PR:		138591
Submitted by:	Sylvio Cesar <scjamorim@bsd.com.br>
Feature safe: yes
2009-09-18 23:59:08 +00:00
Martin Wilke
e73e8db5cb - Add missing pear dependency
PR:		138836
Reported by:	Oleg Gawriloff <barzog@telecom.by>
Feature safe: yes
2009-09-18 22:41:48 +00:00
Renato Botelho
a6da8c7f19 Update to 1.8
PR:		ports/138747
Submitted by:	Sylvio Cesar <scjamorim@bsd.com.br> (maintainer)
Feature safe:	yes
2009-09-15 23:52:29 +00:00
Gerald Pfeifer
8d7ebec709 games/wesnoth no longer has USE_GCC=3.4, so nor do we according to the
history of this port.  On the way update the use of Automake from 1.9
to 1.10.
2009-09-13 17:17:01 +00:00
Philippe Audeoud
6f1d86cb88 - Update to 1.54
- Changelog : http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.54/CHANGES
2009-09-11 07:22:12 +00:00
Alexander Nedotsukov
f50150dec8 Update to 9.07 beta
PR:	138693
2009-09-11 04:12:27 +00:00
Martin Wilke
4ccd3c823d - Update to 20090203
PR:		131570
Submitted by:	"Ganael LAPLANCHE" <ganael.laplanche@martymac.com> (maintainer)
2009-09-09 09:41:07 +00:00
Martin Wilke
751e5ad65b - Pass maintainership to submitter
- pet portlint

PR:		138583
Submitted by:	Sylvio Cesar <scjamorim@bsd.com.br>
2009-09-09 09:34:44 +00:00
Andrey A. Chernov
1439eb9e6e Upgrade to 3.90 release 2009-09-05 06:39:05 +00:00
Gabor Pali
7d5781e5ab - Update GHC and Haskell ports to 6.10.4 (for both i386 and amd64), bump
port revision where appropriate
- Add devel/hs-ghc-paths
- Add devel/hs-QuickCheck
- Add devel/hs-readline
- Add devel/hs-haskeline
- Add devel/hs-mmap
- Remove lang/ghc-doc
- Mark devel/lhs2TeX broken as it does not compile with GHC 6.10.4
- Set NHC98 as default compiler for devel/hs-hat as it does not compile
  with GHC 6.10.4

PR:		ports/137055, ports/137058, ports/137059, ports/137060, ports/137061,
   		ports/137062, ports/137063, ports/137063, ports/137064, ports/137065,
   		ports/137066, ports/137067, ports/137068, ports/137069, ports/137070,
   		ports/137071, ports/137072, ports/137074, ports/137075, ports/137076,
   		ports/137077, ports/137078, ports/137079, ports/137080, ports/137081,
   		ports/137082, ports/137083, ports/137084, ports/137085, ports/137086,
   		ports/137087, ports/137088, ports/137090, ports/137091, ports/137092,
   		ports/137093, ports/137094, ports/137095, ports/137096, ports/137097,
   		ports/137098, ports/137099, ports/137102, ports/137103, ports/137104,
   		ports/137107, ports/137108, ports/137109, ports/137110, ports/137111

Submitted by:	Jacula Modyun (jacula (at) gmail (dot) com),
             	Ashish Shukla (wahjava (at) gmail (dot) com) (amd64 support)
Supported by:	wxs (review, amd64 testing), tabthorpe (8.x testing)
Approved by:	tabthorpe (mentor), respective maintainers
2009-09-02 15:38:45 +00:00
Dmitry Marakasov
535382b891 - Retire MASTER_SITE_SOURCEFORGE_EXTENDED, it's no longer needed - all mirrors actually have all distfiles
- Merge all SF mirrors to MASTER_SITE_SOURCEFORGE, resort according to quick download speed survey
- Fix MASTER_SITES for all port that have used SOURCEFORGE_EXTENTED

Approved by:	portmgr (pav)
2009-09-02 15:01:56 +00:00
Thomas Abthorpe
0f43e19098 The FreeBSD KDE is please to announce the release of KDE 4.3.1,
a bugfix, translation and maintenance update. Release note can be found
at http://kde.org/announcements/announce-4.3.1.php

We would like to thank all our contributors and testers. My personal
thanks to miwi and makc for coaching me through my first KDE commit.
2009-09-01 22:19:47 +00:00
Philippe Audeoud
d9e0b56e03 - Update to 2.021
- Changelog at <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Bzip2-2.021/Changes>
2009-08-31 07:57:16 +00:00
Philippe Audeoud
e6b2aad37f - Update to 2.021
- Changelog at <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Zlib-2.021/Changes>
2009-08-31 07:56:39 +00:00
Martin Wilke
54d3819d55 - Take maintainership 2009-08-28 18:54:47 +00:00
Mark Linimon
9fb1ef4c3a Reset chinsan@FreeBSD.org due to numerous maintainer-timeouts and no
response to email.

Hat:		portmgr
2009-08-28 17:37:26 +00:00
Max Brazhnikov
4ec0a71450 Add packddir 2009-08-23 16:08:15 +00:00
Max Brazhnikov
58eb7cf183 Add new port archivers/packddir:
PackdDir creates and unpacks PackdDir archives,
which are used in Quake (I and II) and others.

WWW:	http://www.nongnu.org/packddir/

PR:		ports/138078
Submitted by:	Ayumi M <ayu at commun.jp>
2009-08-23 16:07:48 +00:00