Commit graph

5441 commits

Author SHA1 Message Date
tonnerre
d01ab5350d Upgrade patchadd to version 0.1.1.
Changes since version 0.1:
 - Replaced license template with the official NetBSD license.
2009-06-01 17:37:58 +00:00
zafer
8f63dd887a revert to previous. 2009-05-30 11:10:56 +00:00
zafer
0cec315758 update master site. clean up. remove non-working mirrors. 2009-05-30 01:55:00 +00:00
wiz
ecccec500d Add link to upstream bug report. 2009-05-26 19:21:45 +00:00
wiz
ac467ea594 Add link to upstream bug reports. 2009-05-26 19:11:55 +00:00
drochner
0c5fbb6953 update to 2.26.1
change: (linux specific) also hide "none" fs
2009-05-26 18:49:04 +00:00
drochner
80ff1f0382 update to 2.26.2
changes: translation updates
2009-05-26 18:47:40 +00:00
drochner
86ae81c46b update to 1.2.3
changes: bugfixes
2009-05-26 18:39:38 +00:00
drochner
9862fd440c Add a minimal implementation of the read_rom method for NetBSD, just
good enough to get newer xorg servers running.
(I need to double-check the PCI spec, but it is well possible that we
can't do much better anyway: ISTR the PCI spec allows devices to share
decoding ressources between ROM and runtime logics, which means there
is no safe way to read the original ROM at runtime. Correct me if
I'm wrong.)
2009-05-25 20:11:05 +00:00
zafer
9f7a2a78ed update master site. 2009-05-22 17:27:22 +00:00
zafer
5999cd245c update master sites. 2009-05-22 17:23:06 +00:00
zafer
94e2411620 update master site. 2009-05-21 21:59:13 +00:00
tnn
9ace0d1241 Update to duplicity-0.5.18.
New in v0.5.18 (2009/05/20)
---------------------------
Added support for RackSpace's CloudFiles, cf+http.
Added support for Tahoe-LAFS
patch #6743: Tahoe backend for duplicity
Only half of this bug is fixed but it's still useful.
bug #21792: pipe call fails with an error OSError:
            [Errno 24] Too many open files
Changed from using ulimit external command to
 resource.getrlimit to check open files limit.

New in v0.5.17 (2009/05/04)
---------------------------
Removed one line of code left from some testing that I
 did that caused a crash when the target dir was empty
 and collection-status was requested.
Moved from using the df command to get temp space
 availability to Python's os.statvfs() call.  Not all
 df commands work the same way.
patch #6813: Making changelist easy to read
patch #6814: Ignore comments in filelists

New in v0.5.16 (2009/04/21)
---------------------------
bug #24825: duplicity warn on insufficient TMPDIR
            space availability and low max open
            file limits pre-backup.
bug #25594: wrong backup statistics
bug #25976: Password requested when not needed.
patch #6806: More graceful handling of old
             --short-filename files
Added tilde and variable expansion to the source or
target argument that is not a URL.

New in v0.5.15 (2009/04/09)
---------------------------
FTP backend was failing on PureFTPd when the "-x ''"
 option was removed from the second ncftpls popen, a fix
 that was implemented due to bug #24741.  This fix does
 the ls in one pass by extracting the last entry on the
 'ls -l' listing.
If a file is unreadable due to access rights or other
 non-fatal errors, put out error message and continue
 rather than dying messily with a traceback.
Added tilde '~' expansion and variable expansion in the
 options that require a filename.  You can now have this
 "--archive-dir=~/ArchDir/$SYSNAME" if you need it.  No
 expansion is applied to the source or target URL's.
Fixed problem I caused, again, where sys.exit() was
 trapping instead of exiting.  Added big note to not
 to do that again.

New in v0.5.14 (2009/04/02)
---------------------------
After email voting among known duplicity contributors,
 the decision was reached to revert to the GPL Version 2
 license, so with their consensus, duplicity is now under
 GPL Version 2.
Revert to calling NcFTP utilities (ls, get, put) directly
 rather than scripting ncftp via pexpect by reverting to the
 0.5.07 version of ftpbackend.py.
Changed fatal error regarding version 3.2.0 of ncftpput to
 warning level since it has been reported that the problem
 does not occur on most distributions.

Changed from log.Log with numbered log levels to log.Debug,
log.Info, log.Notice, log.Warn, log.FatalError.
The -vN option has not changed.  Verbosity may also be one
 of: character [ewnid], or word ['error', 'warning', 'notice',
 'info', 'debug'].  The default is 4 (Notice).  The options
 -v4, -vn, and -vnotice are functionally equivalent, as are
 the mixed-case versions, -vN, -vNotice, -vNOTICE.
Normalized include statements and tried to insure that all
 duplicity includes were from the duplicity module.
patch #6790: Add --exclude-if-present

New in v0.5.13 (2009/03/26)
---------------------------
Add more error detection to FTP backend.
Fix backends so sleep does not occur after last retry.
Fix so BackendException does not cause traceback except when
verbosity is at level 5 or higher (Info level).
Adjust log levels so some errors show up with default verbosity.
Fixed bug where an extra comma caused a traceback during a warning
 about unnecessary sig files.  Plus fixed print so the real filename
 would show up and not a Python object representation.
Add Changelog.GNU to website and distribution to add a bit of detail
 showing the CVS changes via rcs2log.  Added dist/mkGNUChangelog.sh.
bug #22908: Don't block gpg-agent
To fix the above, --use-agent was added as a command line option.
 When this is specified and asymetric encryption is enabled, then all
 GnuPG passphrases will come from the gpg-agent or equivalent program
 and no passphrase prompt will be issued.
bug #25787: Usernames with escaped @-sign are not handled properly
bug #25976: Password requested when not needed.
patch #6787: import duplicity.GnuPGInterface explicitly

New in v0.5.12 (2009/03/15)
---------------------------
bug #25838: Backup fails / ncftp - remote file already exists
With this fix we also get resume in ftp get/put.  If a put or
 get fails part of the way through, ncftp will resume on the
 next retry.
bug #25853: duplicity fails with boto passwords coming from ~/.boto
patch #6773: Make user name optional in rsync backend
GPG errors will no longer cause tracebacks, but will produce a
 log entry, from gpg, similar to the following:
===== Begin GnuPG log =====
gpg: BAD0BAD0: skipped: public key not found
gpg: [stdin]: encryption failed: public key not found
===== End GnuPG log =====
This will let the user know what really caused the GPG process
to fail, and what really caused errors like 'broken pipe'.

New in v0.5.11 (2009/03/08)
---------------------------
bug #25787: Usernames with @-sign are not handled properly
Bug #333057: GnuPGInterface prints exit statuses incorrectly
bug #25696: ncftp error w/0.5.09 -- nested target directories
bug #15664: When restoring backup: "OverflowError:
            long int too large to convert to int"
patch #6761: More robust pexpect handling of SSH authentication
patch #6762: Wrong exit() used for 2.3/2.4 Python
2009-05-21 19:17:13 +00:00
sno
e3a132d003 pkgsrc changes:
- Updating package for file from 5.00 to 5.03
  - Adding/updating patch which prevents non-gcc is invoked
    with gcc's warning options

Upstream changes:
2009-05-06  10:25  Christos Zoulas <christos@zoulas.com>
        * Avoid null dereference in cdf code (Drew Yao)
        * More cdf bounds checks and overflow checks

2009-05-01  18:37  Christos Zoulas <christos@zoulas.com>
        * Buffer overflow fixes from Drew Yao

2009-04-30  17:10  Christos Zoulas <christos@zoulas.com>
        * Fix more cdf lossage. All the documents I have
          right now print the correct information.

2009-03-27  18:43  Christos Zoulas <christos@zoulas.com>
        * don't print \012- separators in the same magic entry
          if it consists of multiple magic printing lines.

2009-03-23  10:20  Christos Zoulas <christos@zoulas.com>
        * Avoid file descriptor leak in compress code from
          (Daniel Novotny)

2009-03-18  16:50  Christos Zoulas <christos@zoulas.com>
        * Allow escaping of relation characters, so that we can say \^[A-Z]
          and the ^ is not eaten as a relation char.
        * Fix troff and fortran to their previous glory using
          regex. This was broken since their removel from ascmagic.

2009-03-10  16:50  Christos Zoulas <christos@zoulas.com>
        * don't use strlen in strndup() (Toby Peterson)

2009-03-10  7:45  Christos Zoulas <christos@zoulas.com>
        * avoid c99 syntax.

2009-02-23 15:45  Christos Zoulas <christos@zoulas.com>
        * make the cdf code use the buffer first if available,
          and then the fd code.
2009-05-21 15:58:17 +00:00
wiz
18e4d758d7 Add URL to upstream bug report. 2009-05-20 13:43:21 +00:00
wiz
5cfbac17bc Update to 2.26.2. Set LICENSE to gnu-gpl-v2.
18-5-2009

Bug fixed:
#578970 – should allow all text targets, not just UTF8_STRING
#578977 – use g_uri_list_extract_uris
#578959 – brasero crashed with SIGSEGV in g_closure_invoke()
#579023 – No error message when attempting to burn on incorrect medium
and part of #573807 – Image selection filters are badly named
#582143 – Reports successful copy when out of disk space in copying DVD


Translations:
Marios Zindilis <m.zindilis@dmajor.org>: Updated Greek translation
David Planella <david.planella@gmail.com>: Added Catalan translation by Joan Duran
Jorge Gonzalez <jorgegonz@svn.gnome.org>: Updated Spanish translation
Mattias Põldaru <mahfiaz gmail com>: Updating Estonian translation
Khaled Hosny <khaledhosny@eglug.org>: Updated Arabic translation, with various spell checking and translation fixes
2009-05-20 13:21:13 +00:00
wiz
2f031a0f1f Update pattern in PRINT_PLIST_AWK. 2009-05-20 13:19:04 +00:00
wiz
3478537b52 More readline-6.0 stragglers. 2009-05-20 01:09:12 +00:00
wiz
272d51cc21 Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib
major change.

Reported by Robert Elz in PR 41345.
2009-05-20 00:58:05 +00:00
wiz
b4f7f604df Add URL for upstream bug report. 2009-05-19 23:52:15 +00:00
abs
b911c24df8 +PKG_DESTDIR_SUPPORT 2009-05-19 22:26:13 +00:00
abs
4e9acec8ff +PKG_DESTDIR_SUPPORT 2009-05-19 22:03:44 +00:00
wiz
7ad0351329 Stop creating lib/nautilus/extensions-1.0, it's not needed any longer.
Include sysutils/desktop-file-utils/desktopdb.mk.

Bump PKGREVISION.
2009-05-19 21:46:23 +00:00
wiz
1c4311eafd Remove unneeded patches. 2009-05-19 21:38:33 +00:00
wiz
5120c1b12e Update to 2.26.3. Add commented out LICENSE (needs AND).
Major changes in 2.26.3 are:
* New translations
* Allow shift+return during typeahead find
* Some startup performance fixes
* Fix excessive whitespace on right hand size in zoomed icon view
2009-05-19 20:35:34 +00:00
wiz
60f460ab01 Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT
block). Uncomment some commented out LICENSE lines while here.
2009-05-19 08:59:00 +00:00
abs
c74a524075 +PKG_DESTDIR_SUPPORT 2009-05-19 07:00:50 +00:00
abs
783faeab22 Only install messagebus.redhat and rc.messagebus.slackware iff on linux, plus set group on libexec/dbus-daemon-launch-helper 2009-05-18 21:55:30 +00:00
hasso
6ebd8ee533 Update to 0.10.6. Fix build on DragonFly.
Changes since 0.10.5:

Alan Coopersmith (12):
      Fill in byte swapping routines for big-endian Solaris machines
      Don't open/gzopen pci.ids if we're not going to read it
      Add AC_SYS_LARGEFILE to configure.ac
      Solaris: Use bus-range properties to limit busses scanned on each node
      Add README with pointers to mailing list, bugzilla & git repos
      Fix const mismatch compiler warnings in Solaris backend
      Sun bug 6811468: pci_device_solx_devfs_probe accesses freed memory
      Move included m4 to a subdir so we can more easily update from upstream
      Fix $CWARNFLAGS addition
      Fix unused variable warnings in Solaris code
      Resync COPYING file with code copyright notices
      Version bump: 0.10.6

Darren Smith (1):
      Be more paranoid about reading bridge info (#20786)

Mark Kettenis (1):
      Make libpciaccess on OpenBSD domain-aware.

Matthieu Herrb (3):
      Fix a logic error in pci_device_openbsd_write().
      Sync with OpenBSD code.
      Fix a logic error in pci_device_netbsd_write()

Owain Ainsworth (1):
      openbsd_pci.c: use the correct size when mapping the legacy vga rom.

Paulo Cesar Pereira de Andrade (1):
      Janitor: Correct make distcheck and compiler warnings.

Robert Noland (1):
      FreeBSD: Incorporate several fixes that have accumulated.

edward shu (1):
      Sun bug 6785726: libpciaccess needs to use the correct BAR index on solaris


Changes since 0.10.4:

Julien Cristau (2):
      Make --without-zlib work
      Bump to 0.10.5

Robert Noland (1):
      Fix FreeBSD systems which support pci domains.
2009-05-18 19:09:01 +00:00
rumble
9860da3081 Woops. 2009-05-18 18:26:16 +00:00
rumble
bf174aefcc patch-aa updated. 2009-05-18 18:22:38 +00:00
rumble
ab77d3f0a6 Remove $Revision$ change to aslcompiler.y, add NetBSD id tag. 2009-05-18 18:22:13 +00:00
rumble
b0cd3d7f17 Fix ~6 month breakage: update aslcompiler.y to work with new versions of
bison.

Should close pkg/39970.
2009-05-18 18:18:03 +00:00
dholland
4cfef9f8ea Hack around misuse of math.h. From Heath Caldwell in PR 41350.
Nominally a build fix, but bump PKGREVISION as a precaution.
2009-05-17 23:11:21 +00:00
dholland
db43590888 Solaris doesn't have <paths.h>. Should fix the last traces of PR 39717. 2009-05-17 22:04:11 +00:00
seb
db8aca7c27 Fix build on NetBSD 3.1_STABLE, tested on i386 and sparc64.
Also built/tested ok on NetBSD/i386 4.0.1 and 5.0.
2009-05-17 20:40:46 +00:00
seb
7043fe3d55 Add & enable p5-SSH-Batch 2009-05-17 20:09:35 +00:00
seb
90ae200ead Initial import of p5-SSH-Batch version 0.021 in the NetBSD Packages
Collection.

The Perl 5 module SSH::Batch provides cluster operations based on
parallel SSH, set and interval arithmetic.  The following scripts
are provided:
- fornodes: Expand patterns to machine host list
- atnodes: Run command on clusters
- tonodes: Upload local files/directories to remote clusters
- key2nodes: Push SSH public key to the remote clusters
2009-05-17 20:08:17 +00:00
kefren
141069a632 Update to 1.470 2009-05-17 14:44:23 +00:00
kefren
b38d0f4e04 Update to 1.470 2009-05-17 14:36:47 +00:00
kefren
00cb9ca578 Update to 1.470 2009-05-17 14:29:25 +00:00
kefren
87cc0461bf Update to 1.470 2009-05-17 14:18:52 +00:00
kefren
878aeabc4a Update to 1.470 2009-05-17 14:09:01 +00:00
kefren
113c49eb10 Update to 1.470 2009-05-17 13:57:08 +00:00
kefren
823a465671 Update to 1.470 2009-05-17 13:55:26 +00:00
kefren
4bd7d49b1d Update to 1.470 2009-05-17 13:30:14 +00:00
kefren
236ff196d0 Update to 1.470 2009-05-16 18:52:35 +00:00
kefren
7ad720e578 Update to 1.470 2009-05-16 18:41:06 +00:00
kefren
e6a6203a6a update to 1.470 2009-05-16 18:36:43 +00:00
kefren
0b8416f6ed Update to 1.470 2009-05-16 17:57:05 +00:00
kefren
94225b0643 Update to 1.470 2009-05-16 17:46:01 +00:00
kefren
5b9d0a480f Stop installing net module, I'm starting updating the rest of wbm* packages
PKGREVISION++
2009-05-16 17:45:26 +00:00
kefren
cb8dd93807 Update to 1.470 2009-05-16 17:10:40 +00:00
obache
beed4a9299 * set LICENSE=gnu-gpl-v2
* honor PKG_SYSCONFDIR
* add DESTDIR support.
2009-05-16 08:10:03 +00:00
adam
db41e30fa8 Added bacula-qt-console 2009-05-16 08:08:22 +00:00
adam
e4bf3b513d Fixed EXAMPLESDIR in patches 2009-05-16 08:06:56 +00:00
adam
376ba096fa Qt-based console for Bacula 2009-05-16 08:06:18 +00:00
adam
04d59ff604 Do not install libs 2009-05-16 07:48:45 +00:00
adam
39d004ad15 Changes 3.0.1:
* Bug fixes.
* Check for job_canceled() in fd_plugin code.
* Update Win32 table creation to have new DB version 11 format
* Remove illegal Options in Exclude of default Win32/64 bacula-dir.conf
* Remove "Reposition" message when restoring
* Update projects file
* Modify insertion of read Volumes in SD to be done before the
  drive reservation. This ensures that a Volume to be read will not
  be reserved for writing. Significant enhancement.

Changes 3.0.0:
* Fix Win32 make clean to clean correctly
* Separate object/binaries in Win32 and Win64 builds. More to be done.
* Add bconsole to Win64 installer.
* Enhance Job messages from SD when the FD->SD protocol is incorrect
  and the SD hangs up. Previously this looked like a comm error.
* Fixed problem in xattr and acl code trying to send empty acl or xattr
  streams.
* Fix for bug #1261 where we send out a null stream when a file only an
  acl and xattr support is also turned on.
* Added some warnings to configure when using libtool and static in
  one configure.
* Fix small memory leak in fileregexp bsr code
* Correct bacula32.def entry point as specified by James.
* Add code to FD plugin driver to make a copy of the plugin
  filename to be saved to avoid save_file from zaping it.
* Directly mark all files saved by plugin as being seen for Accurate.
* more...
2009-05-15 10:29:05 +00:00
wiz
d7f7b949bb Update to 1.2.1. Set LICENSE to gnu-gpl-v2.
Changes:
* Also support version 3 icons, as used in some newer ROMs
2009-05-13 21:48:38 +00:00
martti
417dbfda88 Added LICENSE=gnu-gpl-v2 2009-05-12 12:51:07 +00:00
zafer
3d8f5cdfe4 add 26 to PYTHON_VERSIONS_ACCEPTED. 2009-05-10 10:28:50 +00:00
abs
6ec2d566e2 Set mode 4511 on libexec/dbus-daemon-launch-helper - now dhcpcd-gtk and gnome keyring manager work when everything is installed via binary packages - bump pkgrevision 2009-05-08 13:13:51 +00:00
abs
a5e7b78bc4 Add PKG_DESTDIR_SUPPORT and clean up some pkglint 2009-05-03 23:10:50 +00:00
wiz
401b2a83a0 Fix permissions for dbus-daemon-launch-helper, especially with user-destdir.
Bump PKGREVISION.
2009-05-03 22:46:25 +00:00
hasso
31a39f2da0 Correct the patch-ac checksum. 2009-05-03 16:44:41 +00:00
zafer
0e25b9142a remove dead one. 2009-05-01 14:52:02 +00:00
zafer
5090e5b7da update mirrors. 2009-05-01 14:50:38 +00:00
zafer
5a47e09223 remove dead mirror. 2009-05-01 14:48:41 +00:00
zafer
bcad2577ec remove dead mirrors. 2009-05-01 14:47:29 +00:00
apb
2b54c598f9 When configuring on NetBSD:
* Prefer /dev/ksyms, then getbootfile(), then fall back to /netbsd as the
  kernel name.
* Recognise NetBSD versions 5.0* and 5.99*
* When the NetBSD version is unrecognised, don't treat it like 1.6;
  treat it like either 1.2 (if it's really old) or 5.0 (if it's too new).
Bump PKGREVISION to 4
2009-05-01 12:56:50 +00:00
hasso
97c51336db Make it build on DragonFly. 2009-04-28 13:01:39 +00:00
rh
39844797e2 Update burn to 0.4.1. Changes include:
- The cdrecord and cdrdao backends are now able to handle ATAPI devices.
  This, however, requires fairly recent versions of those tools (see
  README).
- Added overburn option for both backends. Currently this must be switched
  on manually in the parameters dialog. Maybe in the future we may try to
  detect this automatically.
- The cdrdao backend bundle is no longer built and installed by default,
  but must be handled separately. This makes things easier for me :-)
- The cdrdao backend now knows the method -availableDrives using cdrdao's
  'scanbus' command.
- The 'Burn Tools' panel has now moved to the preferences.
- Split the service 'Burn To CD' into two again: 'Burn To CD' and 'Add To
  CD'.  This gets us rid of the annoying 'do you want to append or create
  new...' message.
- ISO image files may now be opened with a double-click or 'gopen'
  (Burn.app registers for suffix .iso).
- The miniwindow for the BurnProgress panel now displays the progress.
- Removed the track types raw-intel and raw-motorola. Noone needs this.
- Add functionality to plug-in audio converters, i.e. bundles that convert
  arbitrary audio formats into .wav files.
- Add a converter bundle for MP3 files. This bundle is part of the CVS, but
  not of th release package.

Fixed Bugs/Issues:
- Fixed a bug where the 'burnproof' option for cdrecord was was not written
  properly to the defaults and thus not used at all.
2009-04-25 12:07:04 +00:00
wiz
1b5362f287 Update to 20090414: more devices.
Add comment for LICENSEs (two).
2009-04-20 11:34:13 +00:00
tonnerre
1369a8879a Import the patch_add/patch_delete/patch_info suite of binary patch
management utilities. These tools can be used to add patches to the
local system and to back them out again. It also uses OpenSSL for
patch signing.

This package is BSD licensed and uses solely BSD licensed tools for
operation.
2009-04-19 21:34:56 +00:00
tonnerre
7893852413 Import the patch_add/patch_delete/patch_info suite of binary patch
management utilities. These tools can be used to add patches to the
local system and to back them out again. It also uses OpenSSL for
patch signing.

This package is BSD licensed and uses solely BSD licensed tools for
operation.
2009-04-19 21:13:57 +00:00
tonnerre
4abe8551ee Import the patch_add/patch_delete/patch_info suite of binary patch
management utilities. These tools can be used to add patches to the
local system and to back them out again. It also uses OpenSSL for
patch signing.

This package is BSD licensed and uses solely BSD licensed tools for
operation.
2009-04-19 20:15:17 +00:00
seb
80712abff0 Add & enable ruby-rb-appscript 2009-04-19 09:28:29 +00:00
seb
b4eb9da25e Initial import of ruby-rb-appscript version 0.5.1 in the NetBSD
Packages Collection.

Ruby appscript (rb-appscript) is a high-level, user-friendly Apple
event bridge that allows you to control scriptable Mac OS X
applications using ordinary Ruby scripts.
2009-04-19 09:27:36 +00:00
rh
a329ff7c6c gnustep-make now allows unprivileged DESTDIR installs. 2009-04-18 23:54:02 +00:00
wiz
f9e50f52b8 Needs m4, add it to USE_TOOLS.
From Aleksey Cheusov in PR 41242.
2009-04-18 14:29:07 +00:00
drochner
249b6550ab update to 2.26.2
changes: bugfixes
2009-04-17 18:06:12 +00:00
drochner
473bb56a5c update to 1.2.2
changes: bugfixes
2009-04-17 18:01:50 +00:00
drochner
996bc478fd update to 2.26.1
changes:
-bugfixes
-translation updates
2009-04-17 18:00:52 +00:00
drochner
c4c626181a update to 2.26.1
changes: translation updates
2009-04-17 17:59:33 +00:00
joerg
a28ea5b442 Fix broken caching of iconv handlers. Addresses PR 37643. 2009-04-16 16:44:02 +00:00
schmonz
028185d0a3 I'll look after this one. 2009-04-14 22:35:45 +00:00
rh
6771be496a Update gworkspace to 0.8.6. This is a major restructure of the GNUstep
workspace manager.  This also changes the filesystem layout to be more
hier(7) compliant.
2009-04-13 12:45:04 +00:00
abs
d906593763 Add fam to PKG_SUPPORTED_OPTIONS, rather than just PKG_SUGGESTED_OPTIONS... 2009-04-12 20:08:04 +00:00
wiz
9123c8a0c8 Update to 2.01.01alpha59pre2:
NEW features of cdrtools-2.01.01a59:

All:

-	Add -D_GNU_SOURCE to the standard include flags for Linux in order
	to unhide needed extensions.

Cdrecord:

-	Better error messages when the media size is unknown

-	Try to work around a firmware bug in the drive:
	'HL-DT-ST' 'DVD-RAM GH22NP20' '1.02'
	that is in effect with DVD+R media.

-	cdtext.c now checks for empty CD-Text files to prevent a later endless loop in cdrecord
	while writing the TOC. Thanks to Sebastian Tr

Cdda2wav (Maintained/enhanced by J

-	cdda2wav now supports new parameters for the -output-endianess option.
	"host" or "machine" represent the actual byte order of the host CPU in the current OS.

NEW features of cdrtools-2.01.01a58:

All:

-	New Make rules for Syllable. Syllable is a fork from AtheOS.

-	New make rules for Haiku

-	New include file schily/sysexits.h is needed for Haiku

-	New autoconf test for sysexits.h

-	Autoconf tests for os2.h and os2me.h moved from cdda2wav to
	global

-	config.guess and config.sub now have support for Haiku

-	New rule support for linux on "sh3", "sh4" and "sh4a" platforms.

-	autoconf now acts more reliable and more orthogonal with  AC_CHECK_TYPE() vs.
	AC_CHECK_SIZEOF() and carefully includes include files separately based on
	fine grained tests.

-	Changed schily/dirent.h to correctly set up NAME_MAX on ATARI MiNT

-	Changed schily/maxpath.h to correctly set up NAME_MAX on ATARI MiNT

Libschily:

-	fexec now correctly works on Haiku and BeOS

-	libschily/format.c now supports the %z (size_t) and %t (ptrdiff_t)
	printf format size modifiers (fixed a typo introdiced in the first attempt)

Libscg:

-	A first version of the SCSI adaptation layer for Syllable has been added.
	Thanks to Kristian Van Der Vliet <vanders@liqwyd.com> for the first
	implementation.

-	Haiku is a BeOS clone and thus uses scsi-beos.c as SCSI adaptation layer.

	IMPORTANT NOTICE: if you like to compile libscg with a current Haiku release
	you first need to copy a file:

	cd /boot/develop/headers/os
	cp device/CAM.h drivers/CAM.h

	CAM.h was at /boot/develop/headers/os/drivers/CAM.h in BeOS and as CAM
	has no own hardware, it seems to belong into /boot/develop/headers/os/drivers/

Cdrecord:

-	Fixed a minor typo in cdrecord

-	Some better warnings with cdrecord in case that the environment variables
	'CDR_FORCERAWSPEED=' or 'CDR_FORCSPEED=' have been specified.


Cdda2wav (Maintained/enhanced by J

-	Cdda2wav now uses an autoconf test to decide whether BEOS clone areas
	can be used. THis gives Haiku compatibility.

-	Fixed a bug introduced with introducing support for MD5 Sums.
	Cdda2wav now disables the MD5 sum output in case -no-infofile has been specified

-	Autoconf tests for os2.h and os2me.h moved from cdda2wav to
	global

Mkisofs (Maintained/enhanced by J

-	Mkisofs now reports "Haiku" for the OS platform if on Haiku.

-	The isoinfo man page now includes the -debug option

-	Automated support for System ID

	Haiku, Syllable, AMIGA-OS, ATARI-MiNT

-	Fixed some Rock Ridge bugs that have been identified when investigating
	in the OpenSolaris bug 6807009
	http://defect.opensolaris.org/bz/show_bug.cgi?id=5385

-	Man page description for -abstract -biblio -copyright is now better
	to understand
2009-04-12 14:36:52 +00:00
wiz
ca3935f19d Avoid null mounting /dev (it needs to be layer-free).
Otherwise, random panics may occur.

Explanation from ad@, patch from Zafer.

Bump to 0.17.
2009-04-11 17:28:16 +00:00
asau
570c708f82 Make FAM support optional (enabled by default).
Per request in PR pkg/41025
2009-04-10 22:27:16 +00:00
kefren
1fb8176071 Install net modules also
Bump PKGREVISION
2009-04-10 05:03:12 +00:00
kefren
4dcaefa1fe blind update to 1.470
Changelist since 1.370 is too large to be included in this message
so please consult:

 http://www.webmin.com/changes-1.380.html
 http://www.webmin.com/changes-1.390.html
 http://www.webmin.com/changes-1.400.html
 http://www.webmin.com/changes-1.410.html
 http://www.webmin.com/changes-1.420.html
 http://www.webmin.com/changes-1.430.html
 http://www.webmin.com/changes-1.440.html
 http://www.webmin.com/changes-1.450.html
 http://www.webmin.com/changes-1.460.html
 http://www.webmin.com/changes-1.470.html
2009-04-09 10:15:01 +00:00
joerg
368d71b62e Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
joerg
d0076c3403 Remove the remaining NO_MTREE definitions, it has been a nop for a
while.
2009-04-08 22:43:23 +00:00
drochner
3c3cb3b7d0 minor fix for NetBSD: get netmask in the right byteorder
(this is ugly code, should use ioctl instead of kvm)
bump PKGREVISION
2009-04-07 11:26:48 +00:00
gdt
f8c0fc3b57 New in Version 0.6.1
Remove DESTDIR/stand before building to avoid failed builds from
  renamed module path.
2009-04-01 19:05:03 +00:00
bouyer
c49b6b0a4d Never build qemu documentation (it's the stock qemu documentation and
has not been updated for Xen, so it's not of much use anyway).
Fix PLIST issues because the documentation was built only if texi2html
was installed.
Bump PKGREVISION
2009-03-31 17:37:36 +00:00
martti
969f6f0ea9 Removed xenconsole from pkgsrc. 2009-03-29 08:49:29 +00:00
joerg
fd1a99ea0a Fix installation. Honour PKGMANDIR. 2009-03-26 19:05:29 +00:00
he
43cafc3804 Bump PKGREVISION following the update of textproc/icu, and the
corresponding change of ABI.

OK'ed by wiz@ (as was the textproc/icu update).
2009-03-25 22:37:12 +00:00
abs
9ae4e10533 Adjust doc & manfiles to not overlap with qemu, and fix PLIST 2009-03-24 20:04:51 +00:00
sno
9993b99a53 Added sysutils/p5-Filesys-Statvfs version 0.82 2009-03-22 21:53:58 +00:00
sno
a85dd265ff Importing package for Perl module Filesys::Statvfs-0.82
Interface for statvfs() and fstatvfs()

Unless access to the bsize, flag, and namemax values is required, either
Filesys::DfPortable or Filesys::Df could be a better choice.  They will
generally provide more functionality and portability.

The module should work with all flavors of Unix that implement the statvfs()
and fstatvfs() calls. This would include Linux, *BSD, HP-UX, AIX, Solaris,
Mac OS X, Irix, Cygwin, etc ...

Oked by joerg@
2009-03-22 21:45:16 +00:00
sno
0219a03b35 Added sysutils/p5-Filesys-DfPortable version 0.85 2009-03-22 21:36:24 +00:00
sno
e2409894d9 Adding package for perl module Filesys::DfPortable-0.85
This module provides a portable way to obtain filesystem disk space
information.

The module should work with all versions of Windows (95 and up), and with all
flavors of Unix that implement the statvfs or the statfs calls. This would
include Linux, *BSD, HP-UX, AIX, Solaris, Mac OS X, Irix, Cygwin, etc ...

This module differs from Filesys::Df in that it has added support for
Windows, but does not support open filehandles as a argument.

Oked by joerg@
2009-03-22 21:34:26 +00:00
sno
12c2ecb731 Added sysutils/p5-Filesys-Df version 0.92 2009-03-22 21:30:30 +00:00
sno
521fc1c07a Importing module for Filesys::Df
This module provides a way to obtain filesystem disk space information. This
is a Unix only distribution. If those information needs to be gathered for
Unix and Windows, use Filesys::DfPortable. The only major benefit of using
Filesys::Df over Filesys::DfPortable, is that Filesys::Df supports the use of
open filehandles as arguments.

The module should work with all flavors of Unix that implement the statvfs()
and fstatvfs() calls, or the statfs() and fstatfs() calls. This would include
Linux, *BSD, HP-UX, AIX, Solaris, Mac OS X, Irix, Cygwin, etc ...

Oked by joerg@
2009-03-22 21:25:10 +00:00
sno
42eb7dce07 Added sysutils/p5-Sys-Utmp version 1.6 2009-03-22 21:21:39 +00:00
sno
65b45c1f81 Importing package for Sys::Utmp - an object(ish) interface to UTMP files.
Sys::Utmp provides a vaguely object oriented interface to the Unix user
accounting file (sometimes /etc/utmp or /var/run/utmp). Whilst it would
prefer to use the getutent() function from the systems C libraries it will
attempt to provide its own if they are missing.

Oked by joerg@
2009-03-22 21:17:03 +00:00
wiz
a3f54af0c9 Update to 20090309, undocumented. 2009-03-22 20:50:10 +00:00
wiz
930a789f33 Convert to destdir (not user-destdir, because of libgtop_server2). 2009-03-22 19:57:08 +00:00
wiz
32c14e8aa3 Update to 2.26.0:
1 Mars 2009: Overview of changes in 2.26.0
==========================================
* Nothing.

17 February 2009: Overview of changes in 2.25.91
================================================
* Synced with gnome-2-24.
2009-03-22 19:53:15 +00:00
wiz
b1076bb765 Remove msgfmtstrip scripts and targets using them, now that the
infrastructure supports this properly (thanks joerg!).
2009-03-22 19:01:37 +00:00
wiz
c3da557f7b Update to 2.22.2:
Changes since last release
==========================

  General
  =======
  - Clean up GTK Includes (Maxim Ermilov)
  - Remove usage of deprecated API (Andre Klapper, Thomas H.P. Andersen)

  Translation
  ===========
  - ar (Anas Husseini)
  - as (Amitakhya Phukan)
  - ast (Astur)
  - bn_IN (Runa Bhattacharjee)
  - de (Mario Blättermann)
  - dz (Dawa pemo)
  - en_GB (Jen Ockwell)
  - es (Jorge González)
  - fi (Ilkka Tuohela)
  - gl (Suso Baleato)
  - he (Mark Krapivner)
  - hi (Rajesh Ranjan)
  - it (Francesco Marletta)
  - ko (Changwoo Ryu)
  - lv (Raivis Dejus)
  - or (Manoj Kumar Giri)
  - pl (Tomasz Dominikowski)
  - ps (Zabeeh Khan)
  - pt_BR (Leonardo Ferreira Fontenelle)
  - ro (Adi Roiban)
  - sk (Pavol Klačanský)
  - sv (Daniel Nylander)
  - te (Krishna Babu K)
  - th (Theppitak Karoonboonyanan)
  - zh_HK (Woodman Tuen)
  - zh_TW (Woodman Tuen)
2009-03-22 18:20:36 +00:00
snj
b652920554 Update to 1.2.8.
Changes:
Improve handling of incorrect permissions on backup repository during
restore operation. Closes Ubuntu bug #329722. (Andrew Ferguson)

Don't crash on zlib errors. Closes Debian bug #518531. (Andrew Ferguson)

Make sticky bit warnings quieter while determining file system abilities.
Closes Savannah bug #25788. (Andrew Ferguson)

Fix situation where destination file cannot be opened because of an access
error. Thanks to Dean Cording for the bug report. (Andrew Ferguson)

Fix --compare-hash options on Windows. Thanks to Serge Zub for the fix.
2009-03-22 15:24:37 +00:00
wiz
63c73d9f57 Update to 2.26.0:
2.26.0:

* ApplicationRegistry: supports_mime_type(), supports_uri_scheme():
  Actually return the bool. (Vincent Untz ) Bug #570107.
2009-03-22 10:27:55 +00:00
wiz
b8054b9702 Fix CD burning handling on NetBSD. From Jared McNeill in PR 41043.
Bump PKGREVISION.
2009-03-22 09:30:38 +00:00
manu
0529d18242 Leave over maintainership to pkgsrc-users 2009-03-22 04:53:38 +00:00
sno
fc65f837ca Adding a patch to allow compiling with gcc incompatible compilers
and enabling LINUX_COMPAT on AIX (file-5.00 requires it, because it
allocates 0 bytes)

Oked by he@
2009-03-21 20:55:58 +00:00
snj
994e253f62 Update to 0.3.5.
No changelog, but changes seem to be the addition of DragonFly and
FreeBSD plus some minor code shuffling.

From Bartosz Kuzma in PR pkg/41053.
2009-03-21 17:35:06 +00:00
gdt
8ae022fa5b Use my NetBSD.org address for $MAINTAINER. 2009-03-21 11:58:56 +00:00
tnn
b7fbea7313 give to pkgsrc-users@
While here, add DESTDIR support.
2009-03-21 09:44:19 +00:00
joerg
2d1ba244e9 Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
2009-03-20 19:23:50 +00:00
joerg
0d0e90a320 Include pyversion.mk include the protected part of the buildlink3.mk
files, not over and over again.
2009-03-20 17:30:09 +00:00
drochner
bc290fdc13 sync w/ base pkg 2009-03-20 15:38:05 +00:00
hasso
477ee8c5e2 Needs msgfmt. 2009-03-19 23:20:07 +00:00
joerg
a2757a7493 Fix path to gamin include, now that it is living in sysutils/libgamin. 2009-03-19 16:11:09 +00:00
drochner
f28db367b9 update to 2.24.1
changes:
* Fix memory leaks
* Use single GLib includes
* Updated translations
2009-03-19 11:32:45 +00:00
darcy
e54bd46da7 No need for both real MAINTAINER and generic one. 2009-03-18 19:18:59 +00:00
jmcneill
f359536137 Forgot to cvs add this patch. 2009-03-18 14:44:38 +00:00
jmcneill
ea4f69e5ff to netbsd-desktop 2009-03-18 13:30:45 +00:00
snj
72ced93608 Include libglade/buildlink3.mk to get us building. 2009-03-18 07:04:28 +00:00
snj
45f8b9ea45 Remove some now-unused bl3 includes. 2009-03-18 06:17:39 +00:00
jmcneill
cbaa0b8685 Add bl3 file for libbrasero-media 2009-03-17 23:40:37 +00:00
asau
4a073012eb Mark as make jobs unsafe.
This affects both sysutils/gamin and sysutils/libgamin.
PR pkg/41031 by Ryo HAYASAKA, tested by Daniel Horecki.
2009-03-17 22:31:10 +00:00
darcy
57ded33aec Correct email address for generic MAINTAINER. 2009-03-17 21:40:44 +00:00
jmcneill
3bcf8215ab Update gnome-system-monitor to 2.26.0.1.
New in 2.26.1 - 16 Mars 2009
* Updated translations.

New in 2.26.0 - 2 Mars 2009
* Fixed potential segfault with broken icon themes (#573030).

New in 2.25.91 - 16 February 2009
* A few bugfixes.
* Faster startup (spaws lsb_release only when needed).
2009-03-17 16:04:07 +00:00
jmcneill
38ce593bec Fix socket credentials issue on NetBSD, and PATCHDIR typo in shared
Makefile. Bump both PKGREVISIONs.
2009-03-17 13:34:06 +00:00
jmcneill
00d0abb2df Update gnome-menus to 2.26.0.
==============
Version 2.26.0
==============

  Translators

	* Reşat SABIQ (crh)
	* Suso Baleato (gl)
	* Rajesh Ranjan (hi)
	* Francesco Marletta (it)
	* Manoj Kumar Giri (or)

===============
Version 2.25.91
===============

  Translators

	* Changwoo Ryu (ko)
	* Raivis Dejus (lv)
	* Sandeep Shedmake (mr)
	* Горан Ракић (sr)
	* Daniel Nylander (sv)
	* Woodman Tuen (zh_HK)
	* Woodman Tuen (zh_TW)

==============
Version 2.25.5
==============

  Misc

	* Use gnome-common macro to define DEPRECATED build variables (Vincent)

  Translators

	* Reşat SABIQ (crh)
	* Saudat Mohammed (ha)
	* Sylvester Onye (ig)
	* Fajuyitan, Sunday Ayo (yo)

==============
Version 2.25.2
==============

  Fixes

	* Fix a critical warning in the python binding for monitoring a file
	  (Vincent)

  Misc

	* Ship a gnome-menus-ls.py script that is an example of python bindings
	  and that can be used as a replacement for gnome-menu-spec-test
	  (Vincent)
2009-03-16 22:51:22 +00:00
jmcneill
a0cb2597fb Update gnome-settings-daemon to 2.26.0.
==============
Version 2.26.0
==============
- Make build work with -Wl,-z,defs (Christopher Taylor) (#574452)
- Updated translations:
  - as (Amitakhya Phukan)
  - ca (Gil Forcada)
  - cs (Petr Kovar)
  - da (Kenneth Nielsen)
  - de (Mario Blättermann)
  - el (Kostas Papadimas)
  - eu (Inaki Larranaga Murgoitio)
  - gl (Ignacio Casal Quinteiro)
  - gu (Ankitkumar Patel)
  - he (Yair Hershkovitz)
  - hi (Rajesh Ranjan)
  - it (Luca Ferretti)
  - ja (Takeshi AIHANA)
  - lt (Gintautas Miliauskas)
  - ml (Ani Peter)
  - mr (Sandeep Shedmake)
  - or (Manoj Kumar Giri)
  - ro (Mișu Moldovan)
  - ru (Nickolay V. Shmyrev)
  - ta (I. Felix)
  - te (Krishnababu K)

===============
Version 2.25.92
===============
- don't print warnings for disabled custom shortcuts (Jens Granseuer)
- revert screen resolution change if the user closes the confirmation window
  using the close icon or by pressing escape (Jens Granseuer) (#571492)
- add missing keys for a11y shortcut keys to GConf schemas (Jens Granseuer)
  (#572807)
- install gnome-settings-daemon-plugin.h for custom plugin developement
  (Jens Granseuer) (#573610)
- Updated translations:
  - bg (Alexander Shopov)
  - en_GB (Philip Withnall)
  - es (Jorge Gonzalez)
  - fi (Ilkka Tuohela)
  - fr (Claude Paroz)
  - gu (Sweta Kothari)
  - hu (Gabor Kelemen)
  - ko (Changwoo Ryu)
  - nl (Wouter Bolsterlee)
  - pl (Tomasz Dominikowski)
  - pt (Duarte Loreto)
  - pt_BR (Krix Apolinário, Vladimir Melo)
  - sv (Daniel Nylander)
  - th (Theppitak Karoonboonyanan)
  - zh_HK (Chao-Hsiung Liao)
  - zh_TW (Chao-Hsiung Liao)

===============
Version 2.25.91
===============
- Have gnome-session restart g-s-d if it crashes (Matthias Clasen)
- Add --without-libnotify to disable notifications (Nirbheek Chauchan)
- Avoid warnings due to notifications on nonexisting status icons
  (Matthias Clasen)
- Fix crash with invalid keyboard shortcuts (Jens Granseuer)
- fix label for "Don't show this message again" checkbox (Luca Ferretti) (#517821)
- HIG fix for button labels (Luca Ferretti) (#571819)
- Don't use legacy icons for keyboard and mouse (Luca Ferretti) (#571823)
- Fix alignment of the composited media window (Leo Iannacone) (#567249)
- Updated translations:
  - ast (Mikel González)
  - ca (Gil Forcada)
  - da (Kenneth Nielsen)
  - es (Jorge Gonzalez)
  - eu (Iñaki Larrañaga Murgoitio)
  - ja (Takeshi AIHANA)
  - nl (Wouter Bolsterlee)
  - pl (Tomasz Dominikowski)
  - ro (Jani Monoses)
  - sv (Daniel Nylander)
  - vi (Clytie Siddall)

===============
Version 2.25.90
===============
- Initialize thread system (Frederic Peters) (#565515)
- Better support for Eject and Sleep actions on BSD (Jasper Lievisse Adriaanse)
  (#565472)
- Spawn screensaver after a 30 second timeout instead of when idle so that it
  doesn't compete with other processes when the session starts (Jens Granseuer)
  (#564059)
- Add low diskspace notification (Vincent Untz) (#557647)
- Support hotkeys for a11y tools (Matthias Clasen) (#565310)
- Quiet xrdb when there are duplicate rules in the .ad files (Bastien Nocera)
  (#566610)
- Add debugging output when de/registering media players (Jens Granseuer)
  (#564433)
- Add a new sound plugin that tells PulseAudio to drop its sample cache when
  the sound theme changes (Lennart Poettering) (#545386)
- Don't pop up an error message when there's no randr configuration file
  (Federico Mena Quintero)
- Ungrab keys when key-related plugins are disabled (Jens Granseuer) (#567867)
- Use PulseAudio directly to change the volume (Bastien Nocera) (#567177)
- Don't draw_background immediately when nautilus is disabled, GnomeBG will
  send a signal (Ray Strode)
- Add crossfade transition when switching backgrounds (Ray Strode) (#552857)
- Use XF86Explorer to launch the file manager (Bastien Nocera)
- Fix possible crash when pressing Fn-F7 (Andres Freund) (#568713)
- Delay drawing the background until SessionRunning (Ray Stode)
- Ask for confirmation with a timeout after changing the randr configuration
  (Federico Mena Quintero) (#545115)
- Require gnome-desktop 2.25.6 (Jen Granseuer)
- Plug leaks
- Build fixes
- Updated translations:
  - es (Jorge González)
  - et (Mattias Põldaru)
  - he (Yuval Tanny)
  - hu (Gabor Kelemen)
  - it (Luca Ferretti)
  - ko (Changwoo Ryu)
  - nb (Kjartan Maraas)
  - pt_BR (Krix Apolinário)
  - sv (Daniel Nylander)
  - zh_CN (甘露(Gan Lu))

==============
Version 2.25.3
==============
- Add support for fn-f7 type keys (Søren Sandmann)
- Use D-Bus instead of an X client mesage in the xrandr plugin, so
  the front-end can get error messages as well (Federico Mena Quintero)
- Fix crash when the X server doesn't have the XInput extension (Jens Granseuer) (#562977)
- Don't call umask (Behdad Esfahbod) (#563543)
- Shut the daemon down properly when the SIGTERM signal is received or the
  D-Bus bus goes away (Ray Strode)
- Restore AccessX bits to original values on exit, fixes sticky keys
  coming on when gnome-settings-daemon has exited (Ray Strode)
- Use only top-level glib and gtk+ headers (Pedro Fragoso) (#563796)

==============
Version 2.25.2
==============
- No need to trap XkbQueryExtension and friends errors (Jens Granseuer) (#559346)
- Add some performance annotations around libxklavier calls (Behdad Esfahbod)
- Start managers in idle callbacks (Behdad Esfahbod) (#559482, #559564)
- Only initialize fontconfig when starting up (Behdad Esfahbod) (#559550)
- Remove unnecessary X error traps (Jens Granseuer) (#559562)
- Init a11y status icon only when needed (Behdad Esfahbod) (#559558)
- Reshufle plugin priorities a bit (Behdad Esfhabod)
- Delay constructing the GnomeBg object until we need it (Behdad Esfahbod)
  (#559639)
- Listen for DeviceEnabled instead of DeviceAdded to be sure the mouse has
  been initialized (William Grant) (#559827)
- Add debugging output for volume_step (Jens Granseuer)
- Fork before gtk_init (Behdad Esfahbod) (#559695)
- Lockdown in the keybinding plugin (Matthias Clasen) (#553434)
- Trap X errors so we don't crash on X servers that don't support DevicePresence
  (Jens Granseuer) (#560618)
- Fix handling of time = GDK_CURRENT_TIME (Jens Granseuer) (#559797)
- Add bundle_loader linker flag to fix compilation on MacOS X (dmack@netspace.org)
  (#522673)
- Grab all keycodes that match the respective keysim (Mario Limonciello) (#561275)
- Fix --no-daemon (Behdad Esfahbod)
- Depend on libxklavier 3.8 (Sergey Udaltsov)
- Fix checks for various X libraries (Jens Granseuer)
- Fix check for xklavier device discovery (Jens Granseuer)

==============
Version 2.25.1
==============
- Ignore the 'activate' signal for deselected items so that the rotation
  setting doesn't reset when the systray menu is opened (Eric Piel)
  (#554951)
- Don't make togglekeys_enable depend on global AccessX state (Jens
  Granseuer) (#555009)
- Fix picking up of the GDM layout (Matthias Clasen) (#554525 and
  #555873)
- Use printf safely (Christian Persch) (#555553)
- Show the shutdown dialog when the power button is pressed (Matthias
  Clasen) (#556307)
- Support the Gtk/ButtonImages XSetting (Matthias Clasen) (#556797)
- Clean-up volume initialization (Jens Granseuer) (#552383)
- Make the composited volume images more clear (Bogdan Butnaru)
  (#557307)
- Spawn screensaver process in idle callback (Rodrigo Moya)
- Remove sound plugin (Jens Granseuer) (#557806)
- Replace gnome_help_display_desktop with gtk_show_uri (Jens Granseuer)
  (#557808)
- Listen for X device changes and reconfigure the mouse if necessary
  (William Grant) (#549267)
- Remove AM_MAINTAINER_MODE (Jens Granseuer) (#558503)
- Disable xrdb plugin by default (Behdad Esfahbod) (#557807)
- Improve performance logging annotations (Behdad Esfahbod) (#559162)
- Cleanup font module (Behdad Esfahbod) (#559163)
- Don't trap errors around grab_key (Behdad Esfahbod) (#559164)
- Don't run 'mousetweaks -s' at startup (Behdad Esfahbod) (#559165)
- Start fontconfig monitors, mouse and clipboard managers in idle
  callbacks (Behdad Esfahbod) (#559166)
- Preload gconf dirs when feasible (Behdad Esfahbod) (#559167)
- Wait for initialization processes to be done before spawning other
  processes (Behdad Esfahbod) (#559168)
- Don't close stderr to not lose warnings (Behdad Esfahbod)
- Use a pipe to communicate between children and parent process instead
  of a signal (Behdad Esfahbod)
- Updated translations:
  - et (Priit Laes)
  - mk (Jovan Naumovski)
  - pt_BR (Leonardo Ferreira Fontenelle)
  - sk (Marcel Telka)
2009-03-16 16:21:36 +00:00
jmcneill
86e48108e3 Update nautilus to 2.26.0.
pkgsrc changes:

    * user-destdir support
    * remove eel, libbonobo, libbonoboui, libgnome, libgnomeui, libgsf,
      libart, ORBit2, startup-notification dependencies
    * add exempi, libunique dependencies


Major changes in 2.26.0 are:
* Stable release
* Fix crash due to broken gdk-pixbuf tga loader
* make sure thumbnails are updated even when zoomed up
* fix crash in media settings preferences

Major changes in 2.25.93 are:
* Use ConsoleKit to make sure we only autorun on active sessions
* Never show unmount if we show an eject menu item
* Show the gvfs reported owner/group names
* Don't allow changing default app for folders
* Fix "can't unmount same location twice" bug

Major changes in 2.25.92 are:
* Set mmap limit to avoid desktop background memory not being returned to the os
* Warn when source overwrites destination in move
* Don't put "link to ..." in front of symlinks unless there are name conflicts
* Fix desktop flicker on theme change
* Require desktop file app launchers to be executable
* Support making symlinks on remote locations (if supported by backend)

Major changes in 2.25.91 are:
* Use G_DEFINE_TYPE_* instead of hand-written types
* fix: opening a new window restores minimised ones
* fix renaming of desktop files
* Handle new kinds of GIcons
* Don't display shadowed mounts

Major changes in 2.25.4 are:
* Don't show desktop files from other desktops than Gnome on the desktop
* Support crossfades of desktop backgrounds
* Don't snap desktop icons outside right margin
* Fix crashes and leaks

Major changes in 2.25.3 are:
* Remove CD/DVD creator from places menu and sidebar
* Allow deleting custom emblems
* Fix crashes
* Don't show read-only emblems in trash
* Trash performance fixes
* General performance fixes
* Update to new PackageKit API

Major changes in 2.25.2 are:
* Merged eel into nautilus
* Use single glib/gtk includes
* Support PackageKit application search
* Fix new windows not appearing after successful mount
* Remove support for old KDE trash dirs

Major changes in 2.25.1 are:
* Remove depencency on libgnome & gnome-vfs
* Fix crashes
* Chop trailing space characters when moving to FAT file system
* When DnD'ing, COPY instead of MOVE, when the source is not deletable
* Don't set default when opening with other app, just add to open with list.
* Don't make copies of files from readonly source (e.g. CDROM) readonly
* Don't show cancel dialog when showing the "run or display" dialog
2009-03-16 14:05:04 +00:00
tron
ff395614e1 Fix build problem under Mac OS X. 2009-03-16 13:06:46 +00:00
jmcneill
b83fa1741c Update gvfs to 1.2.0.
Major changes in 1.2.0
======================
* sftp: Don't hang if ssh no authentication method availible
* Don't leak file monitors
* computer: don't show shadowed mounts

Major changes in 1.1.8
======================
* Fix crashers and leaks
* Handle file:// uris with anchors in gvfs-open
* fuse: Support ftruncate to the current file size
* escape/unescape hostname part in uris, allowing spaces in e.g. smb domains
* hal: Fix "No mount object" error on mount
* Change details of the new .xdg-volume-info file format
* Fix races in cancellation of gvfs streams
* Remove debug spew from backends
* ftp: Fix anonymous login
* gphoto2: Ignore broken storages with no capacity
* Don't globally modify COMP_WORDBREAKS in bash completion script
* Don't ask for username when getting ssh key passphrase

Major changes in 1.1.7
======================
* Fix build on some platforms
* ftp: Fix short read errors
* gphoto2: Make it work on iphone
* sftp: Fix symlink creation
* fuse: Better support of truncation, fixing OOo save
* proxy monitors: Support mount operations, etc
* gvfs-mount: add --device commandline support
* sftp: Fix protocol bug that made some servers not work
* general support for query_info over streams, implemented for smb, sftp
* Initial support for .xdg-volume-info reading

Major changes in 1.1.6
======================
* Fix crashes
* trash: Better messages
* Clean up glib and gtk includes
* archive: Build with later versions of libarchive
* dav: Fix folder creation
* dav: Fix redirection when user is specified in url
* http: fix error propagation
* sftp: Try to preserve ownership when replacing a file

Major changes in 1.1.5
======================
* network: Pick up SMB shares from zeroconf
* obexftp: Write support for
* obexftp: Support obexftp over usb
* trash: Don't follow symlinks on delete
* fix crashes

Major changes in 1.1.4
======================
* Trash performance fixes
* Fuse performance fixes

Major changes in 1.1.3
======================
* ftp: fix limited number of connections causes commands to fail (#565504)
* trash: fix parallel build doesn't work (#562955)
* trash: add trash::orig-path and trash::deletion-date info
* trash: set files to mode 700 before deleting to deal with users trashing read-only directories
* smb-browse: browsing authentication support (#524485)
* smb-browse: make backend not automounted anymore

Major changes in 1.1.2
======================
* New trash backend
* Use the new shadow mount facility in gio
* gphoto2: Use shadow mounts
* obex: Fix icon for root directory
* http: Fix major memory leak
* http: Support proxies

Major changes in 1.1.1
======================
* Reverse map FUSE pathnames to gvfs locations
* Fix crashes
* Show better icon info in gvfs-info
* Support custom icons for gvfs backends
* dav: support uris (dav+sd://) which specify dns-sd services instead of resolved ip+port
* ftp: Fix time parsing
* ftp: Show username in auth dialog if specified in uri
* ftp: Support UTF8 server feature
* ftp: Use LIST -a instead of LIST on unix servers
* fuse: Fix major race in that caused crashes
* fuse: Set st_blocks so that e.g. the "du" command works
* gphoto: use custom icons for faster thumbnails
* obexftp: Port to bluez 4 API
* sftp: If name specified in mount, use in name too so that fuse paths are unique
* sftp: Support /etc/favicon.png
* smb: Don't ask for password twice if cancelled
* smb: support setting timestamp
2009-03-16 13:06:40 +00:00
jmcneill
c692a86b9c + brasero 2009-03-16 10:49:49 +00:00
jmcneill
7e5851504d Import brasero version 2.26.0.
Brasero is an application to burn CDs and DVDs for the GNOME desktop. It is
designed to be as simple as possible and has some unique features to enable
users to create their discs easily and quickly.
2009-03-16 10:49:06 +00:00
jmcneill
197a18ce3c add libgamin 2009-03-15 21:30:21 +00:00
jmcneill
cf4fd74a95 Break libgamin 0.1.10 out from sysutils/gamin.
Gamin is a file and directory monitoring system defined to be a subset
of the FAM (File Alteration Monitor) system.

The main goals of the project are:

   1. Minimize the security model of FAM -- the daemon runs under the
      user account.
   2. Simplify the code base, dropping some of the most exotic features
      of FAM.
   3. Provide an API and ABI compatible replacement for FAM.
   4. Try to fix some other issues like resource consumption.

This package provides the Gamin libraries.
2009-03-15 21:29:14 +00:00
jmcneill
006c56a675 Break libgamin out from the gamin package, bump pkgrev 2009-03-15 21:27:47 +00:00