| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Approved by: portmgr (for Mk/bsd.port.mk part)
Tested by: Multiple -exp runs
|
| |
|
|
|
|
|
| |
With Hat: ruby@
Tested by: make checksum
|
|
|
|
| |
- Add LICENSE
|
| |
|
|
|
|
|
|
|
| |
- Update some MASTER_SITES too
PR: ports/150349
Submitted by: maintainer
|
|
|
|
|
|
| |
PR: ports/150308
Submitted by: Alex Samorukov <samm at os2 dot kiev dot ua> (maintainer)
Approved by: beat (co-mentor, implicit)
|
|
|
|
|
| |
PR: ports/150055
Submitted by: Ganael Laplanche <ganael.laplanche@martymac.com> (maintainer)
|
|
|
|
|
| |
New ports added:
misc/kde4-l10n-ia - Interlingua localization for KDE
|
|
|
|
| |
- Add LICENSE
|
| |
|
|
|
|
|
|
|
| |
- Changelog: <http://search.cpan.org/dist/Archive-Tar/CHANGES>
PR: ports/149877
Submitted by: Frederic Culot <frederic _AT_ culot.org>
|
|
|
|
|
|
|
| |
Add an OPTION to install this module
PR: ports/149886 [1]
Submitted by: Anders.F.Björklund
|
|
|
|
|
|
|
|
|
| |
- remove $/, $| it's artifacts from $rpm = <$f>; time.
[this might help in low RAM situations]
- change && to and
- whitespace cosmetic.
Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua> (via private email)
|
|
|
|
| |
been merged into mainline python after 2.4
|
|
|
|
|
| |
PR: 149331
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org>
|
|
|
|
|
|
|
| |
Free Pascal bzip2 unit
PR: 146001
Submitted by: Christopher Key <cjk32_ at cam.ac.uk>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Add support for amd64 [1]
- Add 23 new ports to to bsd.fpc.mk
- Remove obsolete patch file patch-packages-fcl-db_Makefile
- Turn off some optional dependencies like databases/unixODBC,
graphics/svgalib, databases/oracle8-client for avoid break amd64 support
- Clean up
PR: ports/146001
Submmitted by: Christopher Key <cjk32__ at _cam.ac.uk>
Patch reviewed by: marcov_ at _pascalprogramming.com (fpc developer)[1]
|
| |
|
|
|
|
|
|
|
| |
WWW: http://search.cpan.org/dist/IO-Compress-Lzma/
PR: ports/148981
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet at sunpoet.net>
|
|
|
|
|
|
|
| |
WWW: http://search.cpan.org/dist/Compress-Raw-Lzma/
PR: ports/148980
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet at sunpoet.net>
|
|
|
|
|
|
|
|
| |
RPM 4.8.1 uses a strange default for the %{_var} rpm macro...
The bug was fixed in RPM 5.0.0, variables need to be expanded.
PR: ports/149498
Submitted by: Anders F Björklund <afb@rpm5.org
|
|
|
|
|
|
|
|
|
|
|
| |
Environment. Its design adheres to the Xfce philosophy, which basically
means Squeeze is designed to be both fast and easy to use.
WWW: http://squeeze.xfce.org/
PR: ports/148438
Submitted by: David Demelier <markand at malikania.fr>
Approved by: rene@ (mentor vacation)
|
|
|
|
| |
Suggested by: admi3
|
|
|
|
|
| |
PR: 149279
Submitted by: Philip M. Gollucci
|
| |
|
|
|
|
|
|
| |
This fixes infinite loop in MS-ZIP.
PR: 149180
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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]
|
|
|
|
| |
- Changelog: <http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.66/CHANGES>
|
|
|
|
|
| |
PR: ports/148943
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet _AT_ sunpoet.net>
|
|
|
|
|
| |
PR: ports/148942
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet _AT_ sunpoet.net>
|
| |
|
|
|
|
| |
- Changelog: <http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.64/CHANGES>
|
|
|
|
|
|
|
| |
- Pass maintainership to submitter.
PR: ports/148453
Submitted by: C-S <c-s@c-s.li>
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
|
|
|
|
|
|
| |
- 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>
|
| |
|
|
|
|
|
| |
Submitted by: former maintainer on ports@
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
| |
Reported by: pointyhat via erwin
Feature safe: yes
|
|
|
|
|
|
| |
PR: ports/147870
Submitted by: Ganael Laplanche <ganael.laplanche@martymac.com> (maintainer)
Feature safe: yes
|
|
|
|
|
|
| |
- Grab maintainership
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
| |
- Changelog: http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.62/CHANGES
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
| |
PR: 148110
Submitted by: David Naylor <naylor.b.david@gmail.com> (maintainer)
Feature safe: yes
|
|
|
|
|
|
| |
PR: ports/148132
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Feature safe: yes
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION
PR: ports/146862
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet _AT_ sunpoet.net>
Feature safe: yes
|
|
|
|
|
|
| |
PR: ports/147883
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Feature safe: yes
|
|
|
|
|
|
|
| |
to PRs.
Hat: portmgr
Feature safe: yes
|
|
|
|
| |
Approved by: garga (mentor, implicit)
|
|
|
|
|
|
|
| |
merged into mainline python after 2.4
PR: ports/146944
Submitted by: Garrett Cooper <gcooper AT FreeBSD.org> (maintainer)
|
|
|
|
|
| |
Submitted by: John Hein <jhein@symmetricom.com>
Obtained from: upstream
|
| |
|
| |
|
| |
|
|
|
|
| |
With Hat: ruby@
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Hat: portmgr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
| |
|
|
|
|
|
|
|
|
|
|
| |
- 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)
|
|
|
|
| |
Submitted by: pointyhat
|
|
|
|
| |
bump PORTREVISION on all depending ports
|
| |
|
|
|
|
|
| |
PR: ports/144951
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
| |
PR: 146911
Submitted by: gcooper@
|
|
|
|
|
|
| |
to email.
Hat: portmgr
|
|
|
|
|
|
|
| |
bsd.cabal.options.mk
- Fix ports broken with non-default options
Triggered by: Yuri Pankov <yuri.pankov@gmail.com>
|
| |
|
| |
|
|
|
|
| |
the dependency on the archivers/xz port conditional on OSVERSION.
|
|
|
|
|
|
| |
the dependency on the archivers/xz port conditional on OSVERSION.
Approved by: MAINTAINER
|
| |
|
|
|
|
| |
- Import OPTIONS
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
With hat on: kde@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* 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)
|
|
|
|
|
| |
Changes: http://search.cpan.org/dist/Archive-SimpleExtractor/Changes
(diff in this case)
|
|
|
|
| |
- Changelog: http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.60/CHANGES
|
|
|
|
| |
- Changelog: http://cpansearch.perl.org/src/PMQS/Compress-Raw-Bzip2-2.027/Changes
|
|
|
|
| |
- Changelog: http://search.cpan.org/src/PMQS/Compress-Raw-Zlib-2.027/Changes
|
|
|
|
| |
PR: 146216
|
|
|
|
|
| |
PR: ports/146228
Submitted by: bf <bf1783 AT gmail.com> (maintainer)
|
|
|
|
|
| |
PR: ports/146138
Submitted by: bf <bf1783@gmail.com> (maintainer)
|
| |
|
| |
|
|
|
|
|
| |
PR: 145772
Submitted by: Alex Keda
|
|
|
|
|
| |
PR: 145772
Submitted by: Alex Keda
|
|
|
|
|
| |
PR: 145772
Submitted by: Alex Keda
|
|
|
|
| |
Hat: portmgr
|
|
|
|
|
|
| |
* Fix the build framework so it can successfully #define a wrapper for
stat() on those systems where namei() behaves strangely--independent
of architecture.
|
|
|
|
|
|
| |
PR: ports/145529
Submitted by: Steven Kreuzer <skreuzer@FreeBSD.org
Approved by: Gea-Suan Lin <gslin@gslin.org>
|
|
|
|
|
|
| |
PR: ports/144487
Submitted by: ale
Approved by: portmgr (-exp run by erwin)
|
| |
|
|
|
|
|
| |
Reported by: pointyhat
Approved by: portmgr (itetcu, erwin - blanket)
|
|
|
|
| |
Approved by: itetcu (mentor, implicit)
|
| |
|
| |
|
|
|
|
| |
Hat: portmgr
|
| |
|
|
|
|
|
| |
PR: ports/144792
Submitted by: Shigekazu KIMURA(LEE) <spbz6f99@utopia.ocn.ne.jp>
|
| |
|
|
|
|
|
| |
Reviewed by: exp8 run on pointyhat
Supported by: miwi
|
|
|
|
| |
Hat: portmgr
|
|
|
|
| |
Hat: portmgr
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
From upstream.
Security: c175d72f-3773-11df-8bb8-0211d880e350
|
|
|
|
|
| |
PR: 144953
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
|
|
|
|
| |
Reported by: QAT
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
| |
PR: 144625
Submitted by: Ganael Laplanche <ganael.laplanche@martymac.com> (maintainer)
|
|
|
|
|
| |
PR: 144081
Submitted by: Alex Samorukov <samm@os2.kiev.ua> (maintainer)
|
|
|
|
|
| |
Reported by: alepulver
Tested on: amd64, ia64
|
|
|
|
|
|
| |
PR: 143991
Submitted by: martinko <gamato@users.sf.net>
Approved by: maintainer timeout
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
| |
Hat: portmgr
Feature safe: yes
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
| |
Reported by: alex at to.govorit.ru
Obtained from: Arj's author
Tested by: Guilherme M. Schroeder <lero420 at gmail.com>
Feature safe: yes
|
|
|
|
|
|
| |
Reformat pkg-descr.
Feature safe: yes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
PR: 140699
Submitted by: Gea-Suan Lin <gslin@gslin.org>
Approved by: maintainer timeout
|
|
|
|
|
| |
PR: 143791
Submitted by: Gea-Suan Lin <gslin@gslin.org> (maintainer)
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
| |
- Install manual page
- Support for PORTDOCS
|
|
|
|
|
|
|
|
|
| |
- 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]
|
| |
|
|
|
|
| |
- Changelog: http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.56/CHANGES
|
|
|
|
| |
Approved by: miwi (mentor)
|
|
|
|
|
|
|
| |
Make portlint happier
PR: 143178
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
|
|
|
|
| |
Submitted by: Dennis Noordsij <noordsij@cs.helsinki.fi>
|
|
|
|
|
| |
PR: ports/141938 (based on)
Submitted by: Ted Mittelstaedt <tedm@ipinc.net>
|
|
|
|
| |
- Changelog: <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Zlib-2.024/Changes>
|
|
|
|
| |
- Changelog: <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Bzip2-2.024/Changes>
|
|
|
|
|
|
|
|
| |
x11/libexo
x11-toolkits/libxfce4gui
sysutils/xfce4-settings
x11-wm/xfce4-panel
x11/Terminal
|
| |
|
| |
|
|
|
|
|
| |
PR: ports/142205
Submitted by: Sevan Janiyan <venture37@geeklan.co.uk>
|
| |
|
| |
|
|
|
|
| |
archivers/unzip.
|
|
|
|
| |
archivers/star-devel
|
|
|
|
|
|
| |
PR: ports/141523
Approved by: maintainer
Submitted by: myself (pgollucci@)
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
| |
PR: ports/141373
Submitted by: ehaupt
|
|
|
|
|
|
|
|
| |
- Bump PORTREVISION for all affected ports
PR: ports/138567, ports/138568
Submitted by: Ashish Shukla <wahjava (at) gmail.com>
Approved by: maintainer
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
Approved by: miwi (mentor)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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)
|
|
|
|
|
| |
PR: ports/140903
Submitted by: Eugene Perevyazko <john@dnepro.net>
|
|
|
|
|
| |
- Changes: <http://cpansearch.perl.org/src/BINGOS/Archive-Extract-0.36/CHANGES>
- While I'm here, making portlint happy
|
|
|
|
| |
Reported by: pointyhat
|
|
|
|
| |
Reported by: pointyhat
|
|
|
|
|
|
|
| |
PR: 139647
Submitted by: myself
Approved by: Maintainer Timeout
Approved by: miwi (mentor)
|
|
|
|
| |
- Changes: <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Bzip2-2.023/Changes>
|
|
|
|
| |
- Changes: <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Zlib-2.023/Changes>
|
|
|
|
|
| |
PR: ports/140312
Submitted by: Ralf van der Enden <tremere@cainites.net>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
| |
WWW: http://search.cpan.org/dist/Archive-SimpleExtractor/
PR: ports/140224
Submitted by: Andrey Kostenko <andrey at kostenko.name>
|
|
|
|
|
|
|
| |
WWW: http://search.cpan.org/dist/Archive-Rar/
PR: ports/140223
Submitted by: Andrey Kostenko <andrey at kostenko.name>
|
|
|
|
|
| |
PR: 140182
Submitted by: Emanuel Haupt
|
|
|
|
|
| |
PR: ports/139981 (based on)
Submitted by: sylvio
|
| |
|
|
|
|
| |
PR: 139971
|
|
|
|
|
| |
PR: ports/139511
Submitted by: Anders F Björklund <afb@rpm5.org> (maintainer)
|
|
|
|
| |
Submitted by: Erik Trulsson <ertr1013@student.uu.se>
|
| |
|
| |
|
|
|
|
|
|
| |
PR: ports/139655
Submitted by: David Naylor <naylor.b.david@gmail.com> (maintainer)
Approved by: miwi(mentor)
|
|
|
|
|
|
| |
PR: ports/139324
Submitted by: myself
Approved by: tabthorpe, glarkin (mentors, implicit), maintainer
|
|
|
|
| |
Approved by: tabthorpe, glarkin (mentors, implicit)
|
|
|
|
|
|
|
|
| |
* Use system byte-swapping functions.
PR: 139205, 139206
Submitted by: swell.k@gmail.com (idea)
Feature safe: yes
|
|
|
|
|
| |
PR: ports/139246
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
|
|
|
|
|
|
|
| |
PR: ports/139223
Submitted by: Alex Samorukov <samm at os2.kiev.ua> (maintainer)
Approved by: tabthorpe, glarkin (mentors, implicit)
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
| |
Feature safe: yes
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
| |
use more than one thread.
PR: 137581
Submitted by: Martin Birgmeier <martin@email.aon.at>
Approved by: maintainer
Feature safe: yes
|
|
|
|
|
|
| |
PR: 138588 138594 138604
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
Feature safe: yes
|
|
|
|
|
|
| |
PR: 138587 138586 138584
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
Feature safe: yes
|
|
|
|
|
|
|
|
|
| |
- Move to PLIST_FILES
- Respect NOPORT*
PR: 138593
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
Feature safe: yes
|
|
|
|
|
|
| |
PR: 138591
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
Feature safe: yes
|
|
|
|
|
|
| |
PR: 138836
Reported by: Oleg Gawriloff <barzog@telecom.by>
Feature safe: yes
|
|
|
|
|
|
| |
PR: ports/138747
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> (maintainer)
Feature safe: yes
|
|
|
|
|
| |
history of this port. On the way update the use of Automake from 1.9
to 1.10.
|
|
|
|
| |
- Changelog : http://cpansearch.perl.org/src/BINGOS/Archive-Tar-1.54/CHANGES
|
|
|
|
| |
PR: 138693
|
|
|
|
|
| |
PR: 131570
Submitted by: "Ganael LAPLANCHE" <ganael.laplanche@martymac.com> (maintainer)
|
|
|
|
|
|
|
| |
- pet portlint
PR: 138583
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
| |
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)
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
- Changelog at <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Bzip2-2.021/Changes>
|
|
|
|
| |
- Changelog at <http://cpansearch.perl.org/src/PMQS/Compress-Raw-Zlib-2.021/Changes>
|
| |
|
|
|
|
|
|
| |
response to email.
Hat: portmgr
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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>
|
| |
|
|
|
|
| |
Approved by: Wen Heping (maintainer)
|
|
|
|
|
| |
PR: 137979
Submitted by: bf <bf1783@gmail.com> (maintainer)
|
|
|
|
| |
starting with A
|
| |
|
|
|
|
| |
Hat: portmgr
|
|
|
|
|
|
|
| |
display of error strings
PR: 137259
Submitted by: Anders F Björklund <afb@rpm5.org> (maintainer)
|
|
|
|
|
| |
PR: 137446
Submitted by: Gea-Suan Lin <gslin@gslin.org> (maintaner)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- rework KDE4_BUILDENV
All ports:
- remove needless post-extract target
- make patches relative to ${PATCH_WRKSRC}
- clean up
- bump PORTREVISION when required
databases/akonadi:
- replace dependency on boost-python-libs with boost-libs
(finally, boost-pyhton does not conflict with boost \o/)
deskutils/kdepim*:
- replace boost-python-libs with boost-libs
- reduce dependencies
- respect PREFIX
- fix build with qt3 installed
misc/kdeedu4:
- add dependency on astro/xplanet (for KStars)
misc/kdeutils4:
- add dependency on devel/qca (for okteta)
- make dependency on kdebase non-optional
multimedia/kdemultimedia4:
- add optional support for PulseAudio
x11/kdebase4:
- remove needless dependency on kdebase4-runtime
x11/kdebase4-runtime, x11/kdebase4-workspace
- remove extra CMAKE_ARGS to fix build for qt3/kde3 users
x11/kdelibs4
- remove needless dependencies
- remove extra CMAKE_ARGS to fix build for qt3/kde3 users
|
|
|
|
|
| |
PR: 137583
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
|
|
|
|
|
|
|
|
|
|
| |
for FreeBSD. The official KDE 4.3.0 (Codename: "Caizen") release
notes can be found at:
http://kde.org/announcements/4.3/index.php.
We'd like to say thanks to all helpers and submitters.
Tested by: pointyhat-exp-run (pav/miwi)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
-Update libtool and libltdl to 2.2.6a.
-Remove devel/libtool15 and devel/libltdl15.
-Fix ports build with libtool22/libltdl22.
-Bump ports that depend on libltdl22 due to shared library version change.
-Explain what to do update in the UPDATING.
It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop
and applications in the runtime.
With help: marcus and kwm
Pointyhat-exp: a few times by pav
Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and
a few MarcusCom CVS users. Also, I might have missed a few.
Repocopy by: marcus
Approved by: portmgr
|
|
|
|
|
|
| |
bumped or updated
Requested by: edwin
|
|
|
|
|
|
| |
PR: ports/136771
Exp Run by: pav
Approved by: portmgr (pav)
|
|
|
|
|
| |
PR: 136923
Submitted by: bf <bf1783@gmail.com> (maintainer)
|
|
|
|
|
|
| |
PR: ports/135398
Tested by: 2 -exp runs by pav
Approved by: portmgr (pav)
|
| |
|
|
|
|
| |
Changes: http://search.cpan.org/dist/POE-Filter-Zlib/Changes
|
| |
|
|
|
|
|
| |
Reviewed by: marcus (GNOME team)
Approved by: miwi (co-mentor)
|
|
|
|
|
| |
PR: 136605
Submitted by: Alex Samorukov <samm@os2.kiev.ua> (maintainer)
|
|
|
|
|
| |
PR: 136428
Submitted by: Ganael Laplanche <ganael.laplanche@martymac.com> (maintainer)
|
|
|
|
|
|
|
| |
o Bump PORTREVISION.
PR: 136312
Approved by: maintainer
|
|
|
|
|
| |
PR: 135890
Submitted by: Sylvio Cesar <scjamorim@bsd.com.br>
|
|
|
|
| |
- Pass to perl@
|
| |
|
|
|
|
|
| |
Reviewed by: mezz (GNOME team)
Approved by: tabthorpe (mentor)
|