- Give maintainership back to ports@ (foxfair has not logged into freefall
for over a year and email is bouncing)
PR: 34862
Reviewed by: Alex George <ageorge@nts.umd.edu>
in the last version. For the victims please manually reinstall the
portupgrade port, as always. ;)
Reported by: many users (Sorry!)
Use some logic and keep pkg_add/pkg_delete from complaining about the
@exec/@unexec return codes.
Submitted by: olgeni
with Sendmail, if on a recent $OSVERSION. (Whoops!)
- Submitted by: Richard Kiss <kiss@hhn.com>
- Clarify $PKGMESSAGE and output of $PKGDEINSTALL somewhat.
- Correctly handle Mailman config file (mm_cfg.py) in $PLIST when
deinstalling port/package.
- Bump PORTREVISION again.
The changes:
. our patch-gcc3 (provided to me by Alex Vasylenko) is
incorporated;
. the library uses its own implementation of wchar; they
say, it can only work if sizeof(wchar_t) is 2 bytes, so
they can not rely on the OS provided wchar...
The port changed:
. the package is installed as libfpx-version rather than
fpx-version;
. make is passed `-j2', which is very efficient even for
non-SMP machines, since each file is compiled twice --
for .o and .So object -- with -j2 they are compiled at
the same time, utilizing the cache;
. don't insist on any particular version of -ljpeg;
. ftp.imagemagick.org added to the MASTER_SITES (time for
MASTER_SITE_IMAGEMAGICK);
. the ABI and API did not change, so, the installed library's
version remains the same.
---------------------------------------------------
To run this licq with qt and Xfree86 4.x.x
you must start it with "licq -- -noxim"
---------------------------------------------------
Problem analysed by Andriy Gapon.
PR: 34534
pkgdb(1):
- Set the default answer to no when a score is under 80%.
pkgdb(1), portupgrade(1):
- Add a BUGS entry to each of the two man pages to note that a user
must run pkgdb -fu to rebuild a corrupt pkgdb.
pkgdb(3):
- Add a silly workaround against a possible bug of the dbm module to
keep a pkgdb from getting insane and rebuilt.
- [exp.] Add a knob environment variable PKG_DBDRIVER to specify an
alternative binary database format for pkgdb. The available options
are:
"bdb_btree":
DB 3.x/4.x B+tree; requires databases/ruby-bdb.
"bdb_hash" or just "bdb":
DB 3.x/4.x hash; requires databases/ruby-bdb.
"bdb1_btree" or just "btree":
DB 1.85 B+tree; requires databases/ruby-bdb1.
"bdb1_hash", or just "bdb1" or "hash":
DB 1.85 hash; requires databases/ruby-bdb1. This should be
equivalent to the default except some tuning parameters, but
it is quite possible that ruby-bdb1 is stabler than the
standard dbm module included in ruby.
default:
DB 1.85 hash; uses ruby's standard dbm module.
In principle, a B+tree database is faster to store data, a little
bit slower to extract data, and takes more space than a hash
database.
This is still an experimental/undocumented feature only for those
interested, although I don't believe it brings any unstability.
Note that you can always run pkgdb -fu to rebuild a database.
portcvsweb(1):
- Invoke browsers with system() instead of exec() so that it will
properly try every browser in turn - exec('/bin/sh', '-c', '..') may
cause an error within /bin/sh but it never returns.
Reported by: Jimmy Olgeni <olgeni@FreeBSD.org>
portsclean(1):
- Make portsclean -D remove empty directories (recursively) as well.