--- libxfce4util-4.4.2.orig/config.guess +++ libxfce4util-4.4.2/config.guess @@ -139,23 +139,6 @@ UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown -if [ "${UNAME_SYSTEM}" = "Linux" ] ; then - eval $set_cc_for_build - cat << EOF > $dummy.c - #include - #ifdef __UCLIBC__ - # ifdef __UCLIBC_CONFIG_VERSION__ - LIBC=uclibc __UCLIBC_CONFIG_VERSION__ - # else - LIBC=uclibc - # endif - #else - LIBC=gnu - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep LIBC= | sed -e 's: ::g'` -fi - # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in @@ -850,28 +833,28 @@ echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; avr32*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) - echo cris-axis-linux-${LIBC} + echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) - echo crisv32-axis-linux-${LIBC} + echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) - echo frv-unknown-linux-${LIBC} + echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build @@ -894,7 +877,7 @@ s: ::g p }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build @@ -917,16 +900,16 @@ s: ::g p }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) - echo or32-unknown-linux-${LIBC} + echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-${LIBC} + echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-${LIBC} + echo powerpc64-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in @@ -939,40 +922,40 @@ EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null - if test "$?" = 0 ; then LIBC="gnulibc1" ; fi - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; - PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; - *) echo hppa-unknown-linux-${LIBC} ;; + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-${LIBC} + echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) - echo ${UNAME_MACHINE}-dec-linux-${LIBC} + echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) - echo x86_64-unknown-linux-${LIBC} + echo x86_64-unknown-linux-gnu exit ;; xtensa:Linux:*:*) - echo xtensa-unknown-linux-${LIBC} + echo xtensa-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so @@ -987,22 +970,20 @@ p'` case "$ld_supported_targets" in elf32-i386) - TENTATIVE="${UNAME_MACHINE}-pc-linux-${LIBC}" + TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-${LIBC}aout" + echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) - echo "${UNAME_MACHINE}-pc-linux-${LIBC}coff" + echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-${LIBC}oldld" + echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac - # This should get integrated into the C code below, but now we hack - if [ "$LIBC" != "gnu" ] ; then echo "$TENTATIVE" && exit 0 ; fi # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c --- libxfce4util-4.4.2.orig/config.sub +++ libxfce4util-4.4.2/config.sub @@ -244,7 +244,7 @@ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ - | d10v | d30v | dlx | dsp16xx | dvp \ + | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ @@ -277,7 +277,7 @@ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | score \ - | sh | sh[1234] | sh[24]a | sh[24]a*eb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ @@ -358,7 +358,7 @@ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[24]a*eb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ @@ -694,24 +694,6 @@ basic_machine=m68k-atari os=-mint ;; - mipsEE* | ee | ps2) - basic_machine=mips64r5900el-scei - case $os in - -linux*) - ;; - *) - os=-elf - ;; - esac - ;; - iop) - basic_machine=mipsel-scei - os=-irx - ;; - dvp) - basic_machine=dvp-scei - os=-elf - ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; @@ -1244,7 +1226,7 @@ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -irx*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) --- libxfce4util-4.4.2.orig/debian/watch +++ libxfce4util-4.4.2/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://www.xfce.org/archive/xfce-(.*)/src/ \ + libxfce4util-(.*)\.tar\.bz2 --- libxfce4util-4.4.2.orig/debian/libxfce4util-dev.install +++ libxfce4util-4.4.2/debian/libxfce4util-dev.install @@ -0,0 +1,5 @@ +usr/include/* +usr/lib/lib*.a +usr/lib/lib*.so +usr/lib/pkgconfig/* +usr/share/gtk-doc/html/libxfce4util/* --- libxfce4util-4.4.2.orig/debian/control +++ libxfce4util-4.4.2/debian/control @@ -0,0 +1,47 @@ +Source: libxfce4util +Priority: optional +Section: libs +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Debian Xfce Maintainers +Uploaders: Emanuele Rocca , Simon Huggins , Yves-Alexis Perez +Build-Depends: debhelper (>> 5.0.0), libglib2.0-dev, chrpath, quilt +Standards-Version: 3.8.0 +Homepage: http://www.xfce.org/ +Vcs-Svn: svn://svn.debian.org/pkg-xfce/desktop/trunk/libxfce4util/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-xfce/desktop/trunk/libxfce4util/ + +Package: libxfce4util-dev +Section: libdevel +Architecture: any +Replaces: libxfce4util-0-dev +Conflicts: libxfce4util-0-dev +Depends: libxfce4util4 (= ${binary:Version}), libglib2.0-dev, libgtk2.0-dev +Suggests: devhelp +Description: Development files for libxfce4util4 + This package contains the headers and the static library + for libxfce4util4. If you intend to code applications + for the Xfce4 desktop environment, you need to install + this package. + . + The libxfce4util4 Reference Manual is also included and + it can be consulted using Devhelp or a web browser. + +Package: libxfce4util4 +Section: libs +Architecture: any +Depends: ${shlibs:Depends} +Replaces: libxfce4util-0, libxfce4util-1, libxfce4util2 +Conflicts: libxfce4util-0, libxfce4util-1, libxfce4util2 +Description: Utility functions library for Xfce4 + This package contains libxfce4util4, the basic utility + function library for Xfce4. If you intend to run Xfce4, + you need this library. + +Package: libxfce4util4-dbg +Section: libs +Architecture: any +Priority: extra +Depends: ${shlibs:Depends}, libxfce4util4 (= ${binary:Version}) +Description: debugging informations for libxfce4util4 + This package contains debugging symbols for libxfce4util4, the basic + utility function library for Xfce4. --- libxfce4util-4.4.2.orig/debian/libxfce4util4.install +++ libxfce4util-4.4.2/debian/libxfce4util4.install @@ -0,0 +1,3 @@ +usr/lib/lib*.so.* +usr/sbin/xfce4-kiosk-query +usr/share/locale/ --- libxfce4util-4.4.2.orig/debian/compat +++ libxfce4util-4.4.2/debian/compat @@ -0,0 +1 @@ +5 --- libxfce4util-4.4.2.orig/debian/rules +++ libxfce4util-4.4.2/debian/rules @@ -0,0 +1,94 @@ +#!/usr/bin/make -f + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +patch: patch-stamp +patch-stamp: + dh_testdir + QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2 + touch patch-stamp + +unpatch: + dh_testdir + QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2 + rm -rf .pc patch-stamp + +config.status: configure patch-stamp + + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --sysconfdir=/etc --enable-final --enable-gtk-doc + +build: build-stamp +build-stamp: config.status + + dh_testdir + $(MAKE) + touch build-stamp + +clean: unpatch + + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + + dh_clean + +install: build + + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=`pwd`/debian/tmp + + rm -f `pwd`/debian/tmp/usr/lib/libxfce4util.la + + chrpath -d -k `pwd`/debian/tmp/usr/lib/*.so.* \ + `pwd`/debian/tmp/usr/sbin/* + +binary-indep: build install +binary-arch: build install + + dh_testdir + dh_testroot + + dh_installchangelogs ChangeLog + dh_installdocs NEWS TODO + dh_installman -p libxfce4util4 debian/xfce4-kiosk-query.8 + + dh_install --list-missing --sourcedir=debian/tmp + dh_strip --dbg-package=libxfce4util4-dbg + + dh_compress + dh_fixperms + + dh_makeshlibs -V 'libxfce4util4 (>= 4.4.2)' + dh_installdeb + + dh_shlibdeps + dh_gencontrol + + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libxfce4util-4.4.2.orig/debian/xfce4-kiosk-query.8 +++ libxfce4util-4.4.2/debian/xfce4-kiosk-query.8 @@ -0,0 +1,47 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH XFCE4-KIOSK-QUERY 8 "January 10, 2005" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +xfce4-kiosk-query \- Queries Xfce4 kiosk capabilities +.SH SYNOPSIS +.B xfce4-kiosk-query +.RI [ options ] module capability... +.SH DESCRIPTION +This manual page documents briefly the +.B xfce4-kiosk-query +command. +.PP +.\" TeX users may be more comfortable with the \fB\fP and +.\" \fI\fP escape sequences to invode bold face and italics, +.\" respectively. +\fBxfce4-kiosk-query\fP is a program that queries the given +capabilities of module for the current user and reports whether +the user has the capabilities or not. This tool is mainly ment +for system administrators to test their Kiosk setup. +.SH OPTIONS +A summary of options is included below. +.TP +.B \-h +Show summary of options. +.TP +.B \-v +Show version of program. +.SH AUTHOR +xfce4-kiosk-query was written by Benedikt Meurer . +.PP +This manual page was written by Benedikt Meurer , +for the Debian project (but may be used by others). --- libxfce4util-4.4.2.orig/debian/changelog +++ libxfce4util-4.4.2/debian/changelog @@ -0,0 +1,350 @@ +libxfce4util (4.4.2-3ubuntu2) intrepid; urgency=low + + * Translations: cherry-pick from upstream 4.4 svn branch: + - Estonian, Indonesian, Urdu, Sinhala translations added + - Slovak and Albanian translations updated. + * New patch debian/patches/99_update_translations.patch created and enabled + for this. + + -- Lionel Le Folgoc Sun, 19 Oct 2008 23:32:47 +0200 + +libxfce4util (4.4.2-3ubuntu1) intrepid; urgency=low + + * Merge with Debian unstable, remaining Ubuntu changes: + - debian/rules: pass --enable-gtk-doc to ./configure + - debian/control: adhere to DebianMaintainerField + - debian/patches/series: don't apply + 01_add-desktop-base-in-config-dirs.patch. + + -- Emanuele Gentili Tue, 15 Jul 2008 04:36:35 +0200 + +libxfce4util (4.4.2-3) unstable; urgency=low + + * debian/control: + - fixed typo in short description. closes: #489493 + - removed Martin Loschwitz from Uploaders. + - updated standards version to 3.8.0. + + -- Yves-Alexis Perez Sun, 06 Jul 2008 10:58:49 +0200 + +libxfce4util (4.4.2-2ubuntu1) hardy; urgency=low + + * Merge with Debian unstable, remaining Ubuntu changes: + - debian/rules: pass --enable-gtk-doc to ./configure + - debian/control: adhere to DebianMaintainerField + - debian/patches/series: don't apply + 01_add-desktop-base-in-config-dirs.patch. + + -- Lionel Le Folgoc Fri, 07 Mar 2008 22:16:56 +0100 + +libxfce4util (4.4.2-2) unstable; urgency=low + + * debian/control: + - add a -dbg package + - update standards version to 3.7.3. + - update my email address. + * debian/rules: put debug infos in -dbg package. + * debian/compat: updated to 5 so dh_strip behaves nicely. + * debian/libxfce4util-dev.install: remove /usr/share/xfce4/m4, not present. + * debian/copyright: use © sign. + + -- Yves-Alexis Perez Sat, 01 Mar 2008 23:46:50 +0100 + +libxfce4util (4.4.2-1ubuntu1) hardy; urgency=low + + * Merge with Debian Unstable, Ubuntu changes: + - adhere to DebianMaintainerField + - use our xfce.mk class + - drop debian/patches/01_add-desktop-base-in-config-dirs.patch + (not needed for xubuntu) + - remove quilt and chrpath build-dependencies, and add cdbs + - debian/rules: ship debian/xfce4-kiosk-query.8 in libxfce4util4. + * debian/libxfce4util4.shlibs: bumped to 4.4.2. + * debian/compat: bump to 5. + * debian/control: b-d on autotools-dev & debhelper (>= 5). + * debian/libxfce4util-dev: don't install usr/share/xfce4/m4/*. + + -- Lionel Le Folgoc Tue, 04 Dec 2007 23:25:55 +0100 + +libxfce4util (4.4.2-1) unstable; urgency=low + + [ Simon Huggins ] + * Use ${binary:Version} so we are binNMU safe. + * debian/control: Move fake Homepage field to a real one now dpkg + supports it. + + [ Yves-Alexis Perez ] + * New upstream release. + * debian/rules: don't ignore all make errors at clean stage. + + [ Simon Huggins ] + * Add Vcs-* headers to debian/control + + -- Simon Huggins Tue, 27 Nov 2007 16:39:16 +0000 + +libxfce4util (4.4.1-1ubuntu1) gutsy; urgency=low + + * Merge with Debian Unstable, Ubuntu changes: + - adhere to DebianMaintainerField + - use our xfce.mk class + - drop debian/patches/01_add-desktop-base-in-config-dirs.patch + (not needed for xubuntu) + - remove quilt and chrpath build-dependencies, and add cdbs. + * debian/patches: drop 01_glib_2.10_fix.patch and 02_xfce_rc_fixes.patch + (fixed upstream). + * debian/rules: ship debian/xfce4-kiosk-query.8 in libxfce4util4. + + -- Lionel Le Folgoc Wed, 02 May 2007 21:24:05 +0200 + +libxfce4util (4.4.1-1) unstable; urgency=low + + * New upstream release. + * debian/copyright: updated copyright holders. + + -- Yves-Alexis Perez Sun, 15 Apr 2007 15:28:17 +0100 + +libxfce4util (4.4.0-2) experimental; urgency=low + + * debian/rules: remove /usr/lib/libxfce4util.la from package. + * debian/libxfce4util4.install: ship locales. + + -- Yves-Alexis Perez Thu, 25 Jan 2007 01:08:59 +0100 + +libxfce4util (4.4.0-1) experimental; urgency=low + + * (Yves-Alexis Perez) + - New upstream release. + * (Emanuele Rocca) + - debian/control: Added a note about the manual and suggest devhelp. + + -- Yves-Alexis Perez Wed, 24 Jan 2007 22:32:30 +0100 + +libxfce4util (4.4.0-0ubuntu3) feisty; urgency=low + + * debian/patches/02_xfce_rc_fixes.patch: two bugfixes from upstream svn, + hopefully they help with the xfce4-session crashes experienced by many users + - Fix invalid g_slice_free1() in XfceRc code. + - Fix buglet when deleting groups. + + -- Jani Monoses Tue, 20 Mar 2007 14:52:36 +0200 + +libxfce4util (4.4.0-0ubuntu2) feisty; urgency=low + + * 01_glib_2.10_fix.patch: fix memory leaks in XfceRc + * Updated Maintainer + + -- Gauvain Pocentek Wed, 14 Mar 2007 20:32:17 +0100 + +libxfce4util (4.4.0-0ubuntu1) feisty; urgency=low + + * New upstream release + * debian/copyright: updated + + -- Gauvain Pocentek Mon, 22 Jan 2007 14:22:09 +0100 + +libxfce4util (4.3.99.2-1) unstable; urgency=low + + * New upstream release. + * 01_add-desktop-base-in-config-dirs: enable use of config files provided + by desktop-base package. Quick & dirty patch for Etch. + + -- Yves-Alexis Perez Mon, 20 Nov 2006 12:54:53 +0100 + +libxfce4util (4.3.99.2-0ubuntu1) feisty; urgency=low + + * New upstream release (4.4RC2) + * Bump standards version to 3.7.2 + + -- Gauvain Pocentek Thu, 9 Nov 2006 14:01:57 +0100 + +libxfce4util (4.3.99.1-1) unstable; urgency=low + + * New upstream release + + -- Yves-Alexis Perez Sat, 23 Sep 2006 13:46:27 +0100 + +libxfce4util (4.3.99.1-0ubuntu1) edgy; urgency=low + + * New upstream release (4.4RC1) + + -- Jani Monoses Tue, 12 Sep 2006 09:50:48 +0300 + +libxfce4util (4.3.90.2-2) unstable; urgency=low + + * rpath fixes: call chrpath in debian/rules and add it to the build + dependencies. + * Move the dh_makeshlibs call to the right place so we run ldconfig in + postinst. + + -- Simon Huggins Thu, 20 Jul 2006 17:54:53 +0100 + +libxfce4util (4.3.90.2+beta2-1) edgy; urgency=low + + * New upstream release (4.4 Beta2) + + -- Jani Monoses Mon, 10 Jul 2006 20:45:34 +0300 + +libxfce4util (4.3.90.2svn+r21550-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot, bump soname, rename binary package accordingly + + -- Jani Monoses Mon, 8 May 2006 12:52:00 +0300 + +libxfce4util (4.3.90.2-1) experimental; urgency=low + + (Yves-Alexis Perez) + * New upstream release. + * debian/control: updated standards version to 3.7.2. + * Bumped soname version to 4 and renamed binary package accordingly. + (Simon Huggins) + * Upload to experimental so we can clear NEW without issues. + + -- Yves-Alexis Perez Wed, 12 Jul 2006 17:48:20 +0100 + +libxfce4util (4.3.90.1+r21033-0ubuntu1) dapper; urgency=low + + * Upstream beta1 release (4.3.90.1) with resource file handling bugfixes + + -- Jani Monoses Mon, 17 Apr 2006 17:56:58 +0300 + +libxfce4util (4.3.90.1-1) unstable; urgency=low + + * New Upstream Release + * Changed binary package name to reflects soname change + * Remove pointless .la files. + + -- Yves-Alexis Perez Tue, 18 Apr 2006 15:09:22 +0200 + +libxfce4util (4.3.1svn+r20220-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot needed for newer xfdesktop + * Bump package version name to match upstream + * Switch to CDBS + + -- Jani Monoses Sun, 5 Mar 2006 10:48:28 +0200 + +libxfce4util (4.3.0svn+r19775-0ubuntu1) dapper; urgency=low + + * Upstream svn snapshot + * UVF exception granted + + -- Jani Monoses Wed, 15 Feb 2006 12:49:52 +0200 + +libxfce4util (4.2.3.2-1) unstable; urgency=low + + * Yves-Alexis Perez + * New Upstream Release + * Simon Huggins + * Configure sysconfdir correctly closes: #329139 + + -- Yves-Alexis Perez Sun, 27 Nov 2005 12:08:34 +0000 + +libxfce4util (4.2.2-1) unstable; urgency=low + + * New Upstream Release + * Fix shlibs to be > 4.2.0 to help fix upstream's soname breakage + * Moved xfce4-kiosk-query.8 from the -dev to libxfce4util-1 + * Change suite to unstable + + -- Simon Huggins Sat, 18 Jun 2005 09:50:03 +0100 + +libxfce4util (4.2.1-1) experimental; urgency=low + + * ML: New Upstream Release (Xfce 4.2.1) + * ML: Upload to experimental to prevents problems with NEW packages + * ML: debian/control: Added Maintainer/Uploaders fields + + -- Martin Loschwitz Sat, 19 Mar 2005 13:02:00 +0100 + +libxfce4util (4.2.0-2) experimental; urgency=low + + * Add the xfce4-kiosk-query.8 from Benny + * --enable-final to configure + * Add a Homepage: to the description + + -- Simon Huggins Sat, 15 Jan 2005 10:45:10 +0000 + +libxfce4util (4.2.0-1) experimental; urgency=low + + * New Upstream Release + + -- Simon Huggins Sat, 15 Jan 2005 10:45:10 +0000 + +libxfce4util (4.1.99.1-1) experimental; urgency=low + + * ML: New Upstream Release (4.1.99.1 alias XFce4 4.2 RC1) + * ML: libxfce4util-1.install: nls.alias is gone, don't try to install it + * ML: libxfce4util-dev.install: Added usr/share/gtk-doc/html/libxfce4util/* + * ML: libxfce4util-1.install Added usr/bin/xfce4-kiosk-query + + -- Martin Loschwitz Fri, 19 Nov 2004 15:26:00 +0100 + +libxfce4util (4.0.6-1) unstable; urgency=high + + * urgency high to avoid previous buildd mess; there are 4 more upload stages + each requiring the dev packages from the previous stage to be installed on + all archs before we can upload (see http://wiki.earth.li/XfceDebian) + * New upstream release + * Upstream have incorporated the fix for PATH_MAX definition closes: #254383 + * Remove Norbert Tretkowski from Uploaders as requested. + + -- Simon Huggins Mon, 12 Jul 2004 21:05:33 +0100 + +libxfce4util (4.0.5-1) unstable; urgency=high + + * urgency high to avoid previous buildd mess; there are 4 more upload stages + each requiring the dev packages from the previous stage to be installed on + all archs before we can upload (see http://wiki.earth.li/XfceDebian) + * New upstream release + * Update upstream's libtool + + -- Simon Huggins Sat, 17 Apr 2004 12:17:35 +0100 + +libxfce4util (4.0.3-2) unstable; urgency=low + + * Update libtool + * Snarf depends.m4 from CVS for XFCE_MCS_PLUGINS so I can update libtool + elsewhere (thanks benny) + * Just adding Daniel wasn't enough. Add self to Uploaders so katie doesn't + think this is an NMU again. + + -- Simon Huggins Tue, 09 Mar 2004 13:12:14 +0000 + +libxfce4util (4.0.3-1) unstable; urgency=low + + * New upstream release + * Add libgtk2.0-dev to Depends: closes: #220410 + * Add Daniel Silverstone to Uploaders as approved by + madkiss + * Thanks to Daniel for checking and uploading these packages + + -- Simon Huggins Tue, 24 Feb 2004 22:40:08 +0000 + +libxfce4util (4.0.2-1) unstable; urgency=low + + * New upstream release + + -- Martin Loschwitz Fri, 26 Dec 2003 15:41:00 +0100 + +libxfce4util (4.0.0.final-1) unstable; urgency=low + + * New upstream release + * New Co-Maintainer: Norbert Tretkowski. + * Many cleanups in debian/-subdir + * Renamed libxfce4util-0-dev to libxfce4util-dev + * libxfce4util-1 instead of libxfce4util-0 + + -- Martin Loschwitz Tue, 29 Sep 2003 15:49:00 +0200 + +libxfce4util (0.2.0+cvs.20030421-1) unstable; urgency=low + + * New CVS checkout + + -- Martin Loschwitz Mon, 21 Apr 2003 18:58:00 +0200 + +libxfce4util (0.0.0+cvs.20030324-1) unstable; urgency=low + + * Initial Release. + + -- Martin Loschwitz Mon, 24 Mar 2003 16:47:40 +0100 + --- libxfce4util-4.4.2.orig/debian/copyright +++ libxfce4util-4.4.2/debian/copyright @@ -0,0 +1,32 @@ +This package was debianized by Martin Loschwitz on +Thu, 26 Jun 2003 15:11:52 +0200. + +libxfce4util can be downloaded from the official Xfce4 website, which is +http://www.xfce.org/ + +Upstream author and copyright holders are: +© 2002-2007 Benedikt Meurer +© 2004 Jasper Huijsmans +© 2003 Olivier Fourdan + +Maarten Boekhold , cygwin patches. + +libxfce4util/abicheck.sh contains code © 2004 The GLib Development Team. +License: + + This package is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + +On Debian systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL'. --- libxfce4util-4.4.2.orig/debian/patches/01_add-desktop-base-in-config-dirs.patch +++ libxfce4util-4.4.2/debian/patches/01_add-desktop-base-in-config-dirs.patch @@ -0,0 +1,17 @@ +Index: libxfce4util-4.3.99.2/libxfce4util/xfce-resource.c +=================================================================== +--- libxfce4util-4.3.99.2.orig/libxfce4util/xfce-resource.c 2006-11-17 15:31:52.000000000 +0100 ++++ libxfce4util-4.3.99.2/libxfce4util/xfce-resource.c 2006-11-17 15:32:08.000000000 +0100 +@@ -184,6 +184,12 @@ + _res_split_and_append (dirs, XFCE_RESOURCE_CONFIG); + _res_split_and_append (SYSCONFDIR "/xdg", XFCE_RESOURCE_CONFIG); + ++ /* add desktop-base config files to the list. quick and dirty ++ * patch for Etch ++ */ ++ _res_split_and_append ("/usr/share/desktop-base/profiles/xdg-config", ++ XFCE_RESOURCE_CONFIG); ++ + /* + * Icons dirs + */ --- libxfce4util-4.4.2.orig/debian/patches/99_update_translations.patch +++ libxfce4util-4.4.2/debian/patches/99_update_translations.patch @@ -0,0 +1,864 @@ +--- libxfce4util-4.4.2.orig/configure ++++ libxfce4util-4.4.2/configure +@@ -21164,7 +21164,7 @@ + + + +- ALL_LINGUAS="am ar ca cs cy de dz en_GB eu fi fr gl he it ja ka ko lt lv mk nb_NO nl pl pt_BR pt_PT ro sq th tr uk" ++ ALL_LINGUAS="am ar ca cs cy de dz en_GB et eu fi fr gl he id it ja ka ko lt lv mk nb_NO nl pl pt_BR pt_PT ro si sk sq th tr uk ur" + + + for ac_header in locale.h +--- libxfce4util-4.4.2.orig/po/id.po ++++ libxfce4util-4.4.2/po/id.po +@@ -0,0 +1,129 @@ ++# Indonesian translation of the libxfce4util package. ++# Copyright (C) 2003-2006 Benedikt Meurer ++# This file is distributed under the same license as the libxfce4util package. ++# Andhika Padmawan , 2008. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: libxfce4util 4.4.0\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2007-04-07 11:07+0200\n" ++"PO-Revision-Date: 2008-05-29 19:04+0700\n" ++"Last-Translator: Andhika Padmawan \n" ++"Language-Team: Indonesian \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=utf-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++ ++#: libxfce4util/xfce-fileutils.c:154 ++#, c-format ++msgid "Error creating directory '%s': %s" ++msgstr "Galat membuat direktori '%s': %s" ++ ++#: libxfce4util/xfce-license.c:33 ++msgid "" ++" Redistribution and use in source and binary forms, with or without\n" ++" modification, are permitted provided that the following conditions\n" ++" are met:\n" ++"\n" ++" 1. Redistributions of source code must retain the above copyright\n" ++" notice, this list of conditions and the following disclaimer.\n" ++" 2. Redistributions in binary form must reproduce the above copyright\n" ++" notice, this list of conditions and the following disclaimer in the\n" ++" documentation and/or other materials provided with the distribution.\n" ++"\n" ++" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n" ++" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n" ++" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n" ++" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n" ++" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n" ++" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n" ++" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n" ++" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n" ++" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n" ++" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" ++msgstr "" ++"Pendistribusian ulang dan penggunaan dalam bentuk sumber dan biner,\n" ++"dengan atau tanpa perubahan, diperkenankan jika ketentuan berikut\n" ++"terpenuhi:\n" ++"\n" ++" 1. Pendistribusian ulang kode sumber harus menyertakan nota hak\n" ++" cipta di atas, senarai ketentuan ini dan sanggahan berikut.\n" ++" 2. Pendistribusian ulang dalam bentuk biner harus mereproduksi ulang\n" ++" nota hak cipta diatas, senarai ketentuan ini dan sanggahan berikut\n" ++" di dokumentasi dan/atau material yang disertakan dengan distribusi.\n" ++"\n" ++" PERANTI LUNAK INI DISEDIAKAN OLEH PENULIS ``APA ADANYA'' DAN GARANSI\n" ++" APAPUN BAIK YANG EKSPLISIT MAUPUN IMPLISIT, TERMASUK, TAPI TIDAK TERBATAS\n" ++" PADA, GARANSI IMPILISIT PADA PENJUALAN DAN PENGGUNAAN UNTUK TUJUAN\n" ++" KHUSUS DISANGGAH. TIDAK DALAM KEADAAN APAPUN PENULIS BERTANGGUNG\n" ++" JAWAB TERHADAP KERUSAKAN LANGSUNG, TIDAK LANGSUNG, TIDAK DISENGAJA,\n" ++" KHUSUS, EKSEMPLAR, ATAU KONSEKUENSI (TERMASUK, TAPI TIDAK TERBATAS PADA,\n" ++" PENCURIAN ATAU PENGGANTIAN BARANG ATAU JASA; KEHILANGAN KEGUNAAN,\n" ++" DATA, ATAU KEUNTUNGAN; ATAU INTERUPSI BISNIS) TAPI DISEBABKAN DAN PADA\n" ++" TEORI APAPUN TENTANG PERTANGGUNGJAWABAN, BAIK DALAM KONTRAK,\n" ++" PERTANGGUNGJAWABAN KETAT, ATAU KELALAIAN (TERMASUK KECEROBOHAN ATAU\n" ++" SEBALIKNYA) YANG MENGAKIBATKAN KERUSAKAN PERANTI LUNAK INI, BAHKAN JIKA\n" ++" TERCANTUM ADANYA KEMUNGKINAN KERUSAKAN SEPERTI ITU.\n" ++ ++#: libxfce4util/xfce-license.c:55 ++msgid "" ++"This program is free software; you can redistribute it and/or modify it\n" ++"under the terms of the GNU General Public License as published by the Free\n" ++"Software Foundation; either version 2 of the License, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful, but WITHOUT\n" ++"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n" ++"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\n" ++"more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License along with\n" ++"this program; if not, write to the Free Software Foundation, Inc., 59 Temple\n" ++"Place, Suite 330, Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"Program ini adalah peranti lunak bebas; anda dapat mendistribusikan ulang\n" ++"dan/atau memodifikasinya di bawah Lisensi Publik Umum GNU yang diterbitkan\n" ++"oleh Free Software Foundation; baik versi 2 dari Lisensi; atau (sesuai pilihan\n" ++"anda) versi manapun setelahnya.\n" ++"\n" ++"Program ini didistribusikan dengan harapan dapat berguna; tapi TANPA\n" ++"GARANSI APAPUN; tanpa pula garansi implisit dari PENJUALAN atau PENGGUNAAN\n" ++"UNTUK TUJUAN KHUSUS. Lihat Lisensi Publik Umum GNU untuk detail lebih lanjut.\n" ++"\n" ++"Anda seharusnya menerima salinan dari Lisensi Publik Umum Pustaka GNU\n" ++"bersama dengan pustaka ini; jika tidak, kirim surat ke Free Software\n" ++"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA.\n" ++ ++#: libxfce4util/xfce-license.c:70 ++msgid "" ++"This library is free software; you can redistribute it and/or\n" ++"modify it under the terms of the GNU Library General Public\n" ++"License as published by the Free Software Foundation; either\n" ++"version 2 of the License, or (at your option) any later version.\n" ++"\n" ++"This library is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" ++"Library General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU Library General Public\n" ++"License along with this library; if not, write to the \n" ++"Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n" ++"Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"Pustaka ini adalah peranti lunak bebas; anda dapat mendistribusikan\n" ++"ulang dan/atau memodifikasinya di bawah Lisensi Publik Umum\n" ++"Pustaka GNU yang diterbitkan oleh Free Software Foundation; baik\n" ++"versi 2 dari Lisensi, atau (sesuai pilihan anda) versi manapun setelahnya.\n" ++"\n" ++"Pustaka ini didistribusikan dengan harapan dapat berguna,\n" ++"tapi TANPA GARANSI APAPUN; tanpa pula garansi implisit dari\n" ++"PENJUALAN atau PENGGUNAAN UNTUK TUJUAN KHUSUS. Lihat Lisensi\n" ++"Publik Umum Pustaka GNU untuk detail lebih lanjut.\n" ++"\n" ++"Anda seharusnya menerima salinan dari Lisensi Publik Umum Pustaka\n" ++"GNU bersama dengan pustaka ini; jika tidak, kirim surat ke\n" ++"Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n" ++"Boston, MA 02111-1307 USA.\n" ++ +--- libxfce4util-4.4.2.orig/po/sq.po ++++ libxfce4util-4.4.2/po/sq.po +@@ -8,7 +8,7 @@ + "Project-Id-Version: libxfce4util 4.4.0\n" + "Report-Msgid-Bugs-To: \n" + "POT-Creation-Date: 2007-04-07 11:07+0200\n" +-"PO-Revision-Date: 2007-01-18 22:32+0200\n" ++"PO-Revision-Date: 2007-12-19 20:21+0200\n" + "Last-Translator: Besnik Bleta \n" + "Language-Team: Albanian \n" + "MIME-Version: 1.0\n" +@@ -47,31 +47,21 @@ + " ndryshime, lejohen me kusht që të plotësohen kushtet vijuese:\n" + "\n" + " 1. Rishpërndarja e kodit burim duhet të ruajë shënimin e mësipërm\n" +-" rreth të drejtash kopjimi, këtë listë kushtesh dhe disclaimer-in " +-"vijues.\n" ++" rreth të drejtash kopjimi, këtë listë kushtesh dhe disclaimer-in vijues.\n" + " 2. Rishpërndarja në formë dyore duhet të riprodhojë shënimin e mësipër\n" +-" rreth të drejtash kopjimi, këtë listë kushtesh dhe disclaimer-in vijues " +-"te\n" ++" rreth të drejtash kopjimi, këtë listë kushtesh dhe disclaimer-in vijues te\n" + " dokumentacioni dhe/ose materiale të tjera të dhëna me shpërndarjen.\n" + "\n" + " KY SOFTWARE JEPET NGA AUTORI ''SIÇ ËSHTË'' DHE NUK MERREN PËRSIPËR ÇFARËDO\n" +-" GARANCISH TË SHPREHURA OSE TË NËNKUPTUARA, PËRFSHI, POR JO DUKE U KUFIZUAR " +-"NË,\n" +-" GARANCI TË NËNKUPTUARA TREGTUESHMËRIE DHE PËRSHTATSHËRIE PËR NJË QËLLIM TË " +-"CAKTUAR.\n" +-" AUTORI NË ASNJË RAST NUK DO TË JETË PËRGJEGJËS PËR ÇFARËDO DËMI TË " +-"DREJTPËRDREJTË,\n" ++" GARANCISH TË SHPREHURA OSE TË NËNKUPTUARA, PËRFSHI, POR JO DUKE U KUFIZUAR NË,\n" ++" GARANCI TË NËNKUPTUARA TREGTUESHMËRIE DHE PËRSHTATSHËRIE PËR NJË QËLLIM TË CAKTUAR.\n" ++" AUTORI NË ASNJË RAST NUK DO TË JETË PËRGJEGJËS PËR ÇFARËDO DËMI TË DREJTPËRDREJTË,\n" + " TË TËRTHORTË, TË RRJEDHUR, SPECIAL, SHEMBULLOR, OSE RRJEDHOR (PËRFSHI, POR\n" +-" JO DUKE U KUFIZUAR NË, SIGURIM ZËVENDËSIMI TË MIRASH MATERIALE APO " +-"SHËRBIMESH;\n" +-" HUMBJE PËRDORIMI, TË DHËNASH, APO FITIMI; APO NDËRPRERJE AKTIVITETI) SIDO " +-"QË TË JETË\n" +-" SHKAKTUAR DHE SIPAS CILËSDO TEORIE PËRGJEGJSHMËRIE, QOFTË NË KONTRATË, " +-"PËRGJEGJSHMËRI\n" +-" STRIKTE, APO SHTREMBËRIM (PËRFSHI NEGLIZHENCË OSE TJETËR) DALË NË ÇFARËDO " +-"RRUGE PREJ\n" +-" PËRDORIMIT TË KËTIJ SOFTWARE-I, EDHE PSE SINJALIZOHET MBI MUNDËSI DËMESH TË " +-"TILLË.\n" ++" JO DUKE U KUFIZUAR NË, SIGURIM ZËVENDËSIMI TË MIRASH MATERIALE APO SHËRBIMESH;\n" ++" HUMBJE PËRDORIMI, TË DHËNASH, APO FITIMI; APO NDËRPRERJE AKTIVITETI) SIDO QË TË JETË\n" ++" SHKAKTUAR DHE SIPAS CILËSDO TEORIE PËRGJEGJSHMËRIE, QOFTË NË KONTRATË, PËRGJEGJSHMËRI\n" ++" STRIKTE, APO SHTREMBËRIM (PËRFSHI NEGLIZHENCË OSE TJETËR) DALË NË ÇFARËDO RRUGE PREJ\n" ++" PËRDORIMIT TË KËTIJ SOFTWARE-I, EDHE PSE SINJALIZOHET MBI MUNDËSI DËMESH TË TILLË.\n" + + #: libxfce4util/xfce-license.c:55 + msgid "" +@@ -85,31 +75,22 @@ + "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\n" + "more details.\n" + "\n" +-"You should have received a copy of the GNU General Public License along " +-"with\n" +-"this program; if not, write to the Free Software Foundation, Inc., 59 " +-"Temple\n" ++"You should have received a copy of the GNU General Public License along with\n" ++"this program; if not, write to the Free Software Foundation, Inc., 59 Temple\n" + "Place, Suite 330, Boston, MA 02111-1307 USA.\n" + msgstr "" +-"Ky program është software i lirë; mund ta rishpërndani dhe/ose ndryshoni " +-"atë\n" +-"sipas kushteve të Licensës së Përgjithshme Publike GNU ashtu si botohe " +-"nga Free\n" +-"Software Foundation; versioni 2 i kësaj License, ose (sipas dëshirës " +-"suaj)\n" +-"çfarëdo version i mëvonshëm.\n" +-"\n" +-"Ky program shpërndahet me shpresën se do të jetë i dobishëm, por PA " +-"ASNJË\n" +-"GARANCI; madje pa as edhe garancinë e nënkuptuar të TREGTUESHMËRISË ose\n" +-"PARSHTATMËRISË PËR NJË QËLLIM TË VEÇANTË. Shihni Licensën e Përgjithshme " +-"Publike\n" +-"GNU për më tepër hollësi.\n" +-"\n" +-"Duhej të kishit marrë një kopje të Licensës së Përgjithshme Publike " +-"GNU bashkë\n" +-"me këtë program; nëse jo, shkruajini Free Software Foundation, Inc., 59 " +-"Temple\n" ++"Ky program është software i lirë; mund ta rishpërndani dhe/ose ndryshoni atë\n" ++"sipas kushteve të Licensës së Përgjithshme Publike GNU, ashtu si botohet nga Free\n" ++"Software Foundation; versioni 2 i kësaj License, ose (sipas dëshirës suaj)\n" ++"çfarëdo version i mëvonshëm.\n" ++"\n" ++"Ky program shpërndahet me shpresën se do të jetë i dobishëm, por PA ASNJË\n" ++"GARANCI; madje pa as edhe garancinë e nënkuptuar të TREGTUESHMËRISË ose\n" ++"PËRSHTATMËRISË PËR NJË QËLLIM TË VEÇANTË. Shihni Licensën e Përgjithshme Publike\n" ++"GNU për më tepër hollësi.\n" ++"\n" ++"Duhej të kishit marrë një kopje të Licensës së Përgjithshme Publike GNU bashkë\n" ++"me këtë program; nëse jo, shkruajini Free Software Foundation, Inc., 59 Temple\n" + "Place, Suite 330, Boston, MA 02111-1307 USA.\n" + + #: libxfce4util/xfce-license.c:70 +@@ -129,23 +110,17 @@ + "Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n" + "Boston, MA 02111-1307 USA.\n" + msgstr "" +-"Kjo librari është software i lirë; mund ta rishpërndani dhe/ose " +-"ndryshoni atë\n" +-"sipas kushteve të Licensës së Përgjithshme Publike GNU ashtu si botohe " +-"nga Free\n" +-"Software Foundation; versioni 2 i kësaj License, ose (sipas dëshirës " +-"suaj)\n" +-"çfarëdo version i mëvonshëm.\n" +-"\n" +-"Kjo librari shpërndahet me shpresën se do të jetë e dobishme, por PA " +-"ASNJË\n" +-"GARANCI; madje pa as edhe garancinë e nënkuptuar të TREGTUESHMËRISË ose\n" +-"PARSHTATMËRISË PËR NJË QËLLIM TË VEÇANTË. Shihni Licensën e Përgjithshme " +-"Publike\n" +-"GNU për më tepër hollësi.\n" +-"\n" +-"Duhej të kishit marrë një kopje të Licensës së Përgjithshme Publike " +-"GNU bashkë\n" +-"me këtë program; nëse jo, shkruajini Free Software Foundation, Inc., 59 " +-"Temple\n" ++"Kjo librari është software i lirë; mund ta rishpërndani dhe/ose ndryshoni atë\n" ++"sipas kushteve të Licensës së Përgjithshme Publike GNU, ashtu si botohet nga Free\n" ++"Software Foundation; versioni 2 i kësaj License, ose (sipas dëshirës suaj)\n" ++"çfarëdo version i mëvonshëm.\n" ++"\n" ++"Kjo librari shpërndahet me shpresën se do të jetë e dobishme, por PA ASNJË\n" ++"GARANCI; madje pa as edhe garancinë e nënkuptuar të TREGTUESHMËRISË ose\n" ++"PËRSHTATMËRISË PËR NJË QËLLIM TË VEÇANTË. Shihni Licensën e Përgjithshme Publike\n" ++"GNU për më tepër hollësi.\n" ++"\n" ++"Duhej të kishit marrë një kopje të Licensës së Përgjithshme Publike GNU bashkë\n" ++"me këtë librari; nëse jo, shkruajini Free Software Foundation, Inc., 59 Temple\n" + "Place, Suite 330, Boston, MA 02111-1307 USA.\n" ++ +--- libxfce4util-4.4.2.orig/po/ur.po ++++ libxfce4util-4.4.2/po/ur.po +@@ -0,0 +1,134 @@ ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# FIRST AUTHOR , YEAR. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: libxfce4util\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2007-04-07 11:07+0200\n" ++"PO-Revision-Date: 2007-10-28 19:40+0200\n" ++"Last-Translator: Muhammad Ali Makki \n" ++"Language-Team: Urdu \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=utf-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Poedit-Language: Urdu\n" ++"X-Poedit-Country: PAKISTAN\n" ++"X-Poedit-SourceCharset: utf-8\n" ++ ++#: libxfce4util/xfce-fileutils.c:154 ++#, c-format ++msgid "Error creating directory '%s': %s" ++msgstr "ڈائریکٹری '%s': %s بنانے میں ناکامی" ++ ++#: libxfce4util/xfce-license.c:33 ++msgid "" ++" Redistribution and use in source and binary forms, with or without\n" ++" modification, are permitted provided that the following conditions\n" ++" are met:\n" ++"\n" ++" 1. Redistributions of source code must retain the above copyright\n" ++" notice, this list of conditions and the following disclaimer.\n" ++" 2. Redistributions in binary form must reproduce the above copyright\n" ++" notice, this list of conditions and the following disclaimer in the\n" ++" documentation and/or other materials provided with the distribution.\n" ++"\n" ++" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n" ++" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n" ++" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n" ++" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n" ++" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n" ++" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n" ++" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n" ++" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n" ++" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n" ++" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" ++msgstr "" ++" Redistribution and use in source and binary forms, with or without\n" ++" modification, are permitted provided that the following conditions\n" ++" are met:\n" ++"\n" ++" 1. Redistributions of source code must retain the above copyright\n" ++" notice, this list of conditions and the following disclaimer.\n" ++" 2. Redistributions in binary form must reproduce the above copyright\n" ++" notice, this list of conditions and the following disclaimer in the\n" ++" documentation and/or other materials provided with the distribution.\n" ++"\n" ++" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n" ++" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n" ++" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n" ++" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n" ++" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n" ++" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n" ++" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n" ++" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n" ++" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n" ++" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" ++ ++#: libxfce4util/xfce-license.c:55 ++msgid "" ++"This program is free software; you can redistribute it and/or modify it\n" ++"under the terms of the GNU General Public License as published by the Free\n" ++"Software Foundation; either version 2 of the License, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful, but WITHOUT\n" ++"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n" ++"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\n" ++"more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License along " ++"with\n" ++"this program; if not, write to the Free Software Foundation, Inc., 59 " ++"Temple\n" ++"Place, Suite 330, Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"This program is free software; you can redistribute it and/or modify it\n" ++"under the terms of the GNU General Public License as published by the Free\n" ++"Software Foundation; either version 2 of the License, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful, but WITHOUT\n" ++"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n" ++"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\n" ++"more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License along " ++"with\n" ++"this program; if not, write to the Free Software Foundation, Inc., 59 " ++"Temple\n" ++"Place, Suite 330, Boston, MA 02111-1307 USA.\n" ++ ++#: libxfce4util/xfce-license.c:70 ++msgid "" ++"This library is free software; you can redistribute it and/or\n" ++"modify it under the terms of the GNU Library General Public\n" ++"License as published by the Free Software Foundation; either\n" ++"version 2 of the License, or (at your option) any later version.\n" ++"\n" ++"This library is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" ++"Library General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU Library General Public\n" ++"License along with this library; if not, write to the \n" ++"Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n" ++"Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"This library is free software; you can redistribute it and/or\n" ++"modify it under the terms of the GNU Library General Public\n" ++"License as published by the Free Software Foundation; either\n" ++"version 2 of the License, or (at your option) any later version.\n" ++"\n" ++"This library is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" ++"Library General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU Library General Public\n" ++"License along with this library; if not, write to the \n" ++"Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n" ++"Boston, MA 02111-1307 USA.\n" +--- libxfce4util-4.4.2.orig/po/si.po ++++ libxfce4util-4.4.2/po/si.po +@@ -0,0 +1,133 @@ ++# translation of libxfce4util.po to Sinhala ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# FIRST AUTHOR Rashan Anushka , 2007. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: libxfce4util\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2007-04-07 11:07+0200\n" ++"PO-Revision-Date: 2008-02-09 21:09+0530\n" ++"Last-Translator: Rashan Anushka \n" ++"Language-Team: Sinhala \n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"X-Generator: KBabel 1.11.4\n" ++ ++#: libxfce4util/xfce-fileutils.c:154 ++#, c-format ++msgid "Error creating directory '%s': %s" ++msgstr "'%s' ඩිරෙක්ටරිය සෑදීමේ දෝෂයකි: %s" ++ ++#: libxfce4util/xfce-license.c:33 ++msgid "" ++" Redistribution and use in source and binary forms, with or without\n" ++" modification, are permitted provided that the following conditions\n" ++" are met:\n" ++"\n" ++" 1. Redistributions of source code must retain the above copyright\n" ++" notice, this list of conditions and the following disclaimer.\n" ++" 2. Redistributions in binary form must reproduce the above copyright\n" ++" notice, this list of conditions and the following disclaimer in the\n" ++" documentation and/or other materials provided with the distribution.\n" ++"\n" ++" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n" ++" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n" ++" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n" ++" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n" ++" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n" ++" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n" ++" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n" ++" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n" ++" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n" ++" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" ++msgstr "" ++" Redistribution and use in source and binary forms, with or without\n" ++" modification, are permitted provided that the following conditions\n" ++" are met:\n" ++"\n" ++" 1. Redistributions of source code must retain the above copyright\n" ++" notice, this list of conditions and the following disclaimer.\n" ++" 2. Redistributions in binary form must reproduce the above copyright\n" ++" notice, this list of conditions and the following disclaimer in the\n" ++" documentation and/or other materials provided with the distribution.\n" ++"\n" ++" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n" ++" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n" ++" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n" ++" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n" ++" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n" ++" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n" ++" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n" ++" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n" ++" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n" ++" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n" ++ ++#: libxfce4util/xfce-license.c:55 ++msgid "" ++"This program is free software; you can redistribute it and/or modify it\n" ++"under the terms of the GNU General Public License as published by the Free\n" ++"Software Foundation; either version 2 of the License, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful, but WITHOUT\n" ++"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n" ++"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\n" ++"more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License along " ++"with\n" ++"this program; if not, write to the Free Software Foundation, Inc., 59 " ++"Temple\n" ++"Place, Suite 330, Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"This program is free software; you can redistribute it and/or modify it\n" ++"under the terms of the GNU General Public License as published by the Free\n" ++"Software Foundation; either version 2 of the License, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful, but WITHOUT\n" ++"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n" ++"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\n" ++"more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License along " ++"with\n" ++"this program; if not, write to the Free Software Foundation, Inc., 59 " ++"Temple\n" ++"Place, Suite 330, Boston, MA 02111-1307 USA.\n" ++ ++#: libxfce4util/xfce-license.c:70 ++msgid "" ++"This library is free software; you can redistribute it and/or\n" ++"modify it under the terms of the GNU Library General Public\n" ++"License as published by the Free Software Foundation; either\n" ++"version 2 of the License, or (at your option) any later version.\n" ++"\n" ++"This library is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" ++"Library General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU Library General Public\n" ++"License along with this library; if not, write to the \n" ++"Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n" ++"Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"This library is free software; you can redistribute it and/or\n" ++"modify it under the terms of the GNU Library General Public\n" ++"License as published by the Free Software Foundation; either\n" ++"version 2 of the License, or (at your option) any later version.\n" ++"\n" ++"This library is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" ++"Library General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU Library General Public\n" ++"License along with this library; if not, write to the \n" ++"Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n" ++"Boston, MA 02111-1307 USA.\n" ++ +--- libxfce4util-4.4.2.orig/po/ChangeLog ++++ libxfce4util-4.4.2/po/ChangeLog +@@ -1,3 +1,29 @@ ++2008-10-05 Maximilian Schleiss ++ ++ * et.po, LINGUAS: Estonian translation added (Kristjan Siimson) ++ ++2008-06-22 Maximilian Schleiss ++ ++ * sk.po: Slovak translation update (Stefan Miklosovic) ++ ++2008-06-22 Mike Massonnet ++ ++ * id.po, LINGUAS: Add Indonesian translation (Andhika Padmawa) ++ ++2008-02-22 Mike Massonnet ++ ++ * LINGUAS, ur.po: Merge Urdu translation from trunk (r26296) ++ ++2008-02-14 Stephan Arts ++ ++ * si.po: Add Sinhala translations by Rashan Anushka ++ ++ ++2007-12-23 Jean-François Wauthy ++ ++ * sq.po: Updated Albanian translations by Besnik Bleta ++ ++ + 2007-11-16 Jean-François Wauthy + + * ro.po: Add Romanian translations by Mişu Moldovan +--- libxfce4util-4.4.2.orig/po/sk.po ++++ libxfce4util-4.4.2/po/sk.po +@@ -0,0 +1,135 @@ ++# Slovak translations for libxfce4util package. ++# Copyright (C) 2006 THE libxfce4util'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the libxfce4util package. ++# Stefan Miklosovic , 2008. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: libxfce4util 4.4.0\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2007-04-07 11:07+0200\n" ++"PO-Revision-Date: 2008-05-28 02:47-0700\n" ++"Last-Translator: Štefan Miklošovič \n" ++"Language-Team: MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" ++ ++#: libxfce4util/xfce-fileutils.c:154 ++#, c-format ++msgid "Error creating directory '%s': %s" ++msgstr "Chyba pri vytváraní adresára '%s': %s" ++ ++#: libxfce4util/xfce-license.c:33 ++msgid "" ++" Redistribution and use in source and binary forms, with or without\n" ++" modification, are permitted provided that the following conditions\n" ++" are met:\n" ++"\n" ++" 1. Redistributions of source code must retain the above copyright\n" ++" notice, this list of conditions and the following disclaimer.\n" ++" 2. Redistributions in binary form must reproduce the above copyright\n" ++" notice, this list of conditions and the following disclaimer in the\n" ++" documentation and/or other materials provided with the distribution.\n" ++"\n" ++" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n" ++" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n" ++" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n" ++" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n" ++" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n" ++" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n" ++" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n" ++" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n" ++" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n" ++" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" ++msgstr "" ++" Daľšie šírenie a použitie v zdrojovej alebo binárnej podobe, s úpravami " ++"alebo \n" ++" bez úprav, je povolené, pokiaľ sú splnené nasledujúce podmienky:\n" ++"\n" ++" 1. Dalšia distribúcia zdrojových kódov musí udržať pôvodnú zmienku o\n" ++" autorských právach, tento zoznam podmienok a nižšie uvedené zrieknutie " ++"sa\n" ++" zodpovednosti.\n" ++" 2. Dalšie distribúcie v binárnej podobe musia obsahovať predchádzajúcu\n" ++" zmienku o autorských právach, tento zoznam podmienok a nižšie uvedené\n" ++" zrieknutie sa zodpovednosti v dokumentácii alebo v materiáloch\n" ++" dodávaných s distribúcou.\n" ++"\n" ++" TENTO SOFTWARE JE POSKYTOVANÝ AUTOROM ``TAK, AKO JE'' BEZ AKÝCHKOĽVEK\n" ++" VYJADRENÝCH ALEBO VYPLÝVAJÚCICH ZÁRUK, VRÁTANE ZÁRUK OBCHODOVATEĽNOSTI A\n" ++" VHODNOSTI PRE KONKRÉTNE POUŽITIE KTORÝMI SA TÝMTO AUTOR ZRIEKA. AUTOR NIE " ++"JE\n" ++" ZODPOVEDNÝ PRIMO ANI NEPRIAMO ZA ŠKODY, VRÁTANE AKÝCHKOĽVEK VŠEOBECNÝCH,\n" ++" MIMORIADNYCH, NÁHODNÝCH ALEBO NASLEDUJÚCICH ŠKOD (VRÁTNE, ALE NIELEN,\n" ++" SPROSTREDKOVANIE NÁHRADY TOVARU ALEBO SLUŽIEB, STRATY DÁT ČI UŠLÝCH ZISKOV\n" ++" ALEBO PRERUŠENIA OBCHODNÝCH STYKOV), A TO I V PRÍPADE, ŽE NA TÚTO " ++"SKUTOČNOSŤ\n" ++" BOLA TRETIA STRANA O RIZIKÁCH UPOZORNENÁ V ZMLUVE I MIMO NEJ (VRÁTANE\n" ++" NEDBALOSTI A INÝCH PREČINOV PRI POUŽITÍ).\n" ++ ++#: libxfce4util/xfce-license.c:55 ++msgid "" ++"This program is free software; you can redistribute it and/or modify it\n" ++"under the terms of the GNU General Public License as published by the Free\n" ++"Software Foundation; either version 2 of the License, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful, but WITHOUT\n" ++"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n" ++"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\n" ++"more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License along " ++"with\n" ++"this program; if not, write to the Free Software Foundation, Inc., 59 " ++"Temple\n" ++"Place, Suite 330, Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"Tento program je slobodný software. Môžete ho ďaľej distribuovať a/alebo\n" ++"upravovať pod podmienkami licencie GNU General Public License vydanými\n" ++"organizáciou Free Software Foundation, verzia licencie 2 alebo vyššej " ++"(podľa\n" ++"Vašej voľby).\n" ++"\n" ++" Tento program je distribuovaní v nádeji, že bude užitočným, ale\n" ++" NEPOSKYTUJE ŽIADNE ZÁRUKY. Bez akejkoľvek vyplývajúcej záruky\n" ++" na OBCHODOVATELNOSŤ alebo VHODNOSŤ PRE KONKRÉTNE\n" ++" POUŽITIE. Pre\n" ++" viac podrobností si prečítajte licenciu GNU General Public Licence.\n" ++" S týmto programom by ste mali obdržať kópiu licencie GNU Library General\n" ++" Public License. Ak tomu tak nie je, napíšte na adresu Free Software\n" ++" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307\n" ++" USA.\n" ++ ++#: libxfce4util/xfce-license.c:70 ++msgid "" ++"This library is free software; you can redistribute it and/or\n" ++"modify it under the terms of the GNU Library General Public\n" ++"License as published by the Free Software Foundation; either\n" ++"version 2 of the License, or (at your option) any later version.\n" ++"\n" ++"This library is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" ++"Library General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU Library General Public\n" ++"License along with this library; if not, write to the \n" ++"Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n" ++"Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"Táto knižnica je slobodný software. Môžete ju ďalej distribuovať\n" ++"a/alebo upravovať pod podmienkami licencie GNU Library General\n" ++"Public vydanej organizáciou Free Software Foundation, verzia licen-\n" ++"cie 2 alebo vyššia (podľa Vašej voľby).\n" ++"\n" ++"Táto knižnica je distribuovaná v nádeji, že bude užitočná, ale\n" ++"NEPOSKYTUJE ŽIADNE ZÁRUKY. Bez akejkoľvek vyplývajúcej záruky\n" ++"na OBCHODOVATEĽNOSŤ alebo VHODNOSŤ PRE KONKRÉTNE\n" ++"POUŽITIE. Pre viac podrobností si prečítajte licenciu\n" ++"GNU Library General Public Licence. S touto knižnicou by ste\n" ++"mali obdržať kópiu licencie GNU Library General Public License\n" ++"Ak tomu tak nie je, napíšte na adresu Free Software Foundation,\n" ++"Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307\n" ++"USA.\n" +--- libxfce4util-4.4.2.orig/po/et.po ++++ libxfce4util-4.4.2/po/et.po +@@ -0,0 +1,139 @@ ++# Estonian translations for libxfce4util package. ++# Copyright (C) 2008 THE libxfce4util'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the libxfce4util package. ++# Kristjan Siimson , 2008. ++# ++msgid "" ++msgstr "" ++"Project-Id-Version: libxfce4util 4.4.2\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2007-04-07 11:07+0200\n" ++"PO-Revision-Date: 2008-09-08 06:50-0800\n" ++"Last-Translator: Kristjan Siimson \n" ++"Language-Team: Estonian\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Poedit-Language: Estonian\n" ++"X-Poedit-Country: ESTONIA\n" ++ ++#: libxfce4util/xfce-fileutils.c:154 ++#, c-format ++msgid "Error creating directory '%s': %s" ++msgstr "Viga luues kataloogi \"%s\": %s" ++ ++#: libxfce4util/xfce-license.c:33 ++msgid "" ++" Redistribution and use in source and binary forms, with or without\n" ++" modification, are permitted provided that the following conditions\n" ++" are met:\n" ++"\n" ++" 1. Redistributions of source code must retain the above copyright\n" ++" notice, this list of conditions and the following disclaimer.\n" ++" 2. Redistributions in binary form must reproduce the above copyright\n" ++" notice, this list of conditions and the following disclaimer in the\n" ++" documentation and/or other materials provided with the distribution.\n" ++"\n" ++" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n" ++" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES\n" ++" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.\n" ++" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,\n" ++" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\n" ++" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n" ++" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n" ++" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n" ++" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n" ++" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n" ++msgstr "" ++" Edasilevitamine ning tarkvara lähtekoodi ja binaarsete vormide\n" ++" kasutamine muudetud või muutmata kujul on lubatud, kui on\n" ++" täidetud järgnevad tingimused:\n" ++"\n" ++" 1. Tarkvara lähtekoodi edasilevitamisel tuleb säilitada ülaltoodud\n" ++" autoriõigusemärge, käesolev tingimuste loetelu ja alljärgnev\n" ++" loobumisteade.\n" ++" 2. Tarkvara binaarse vormi edasilevitamisel tuleb dokumentatsioonis\n" ++" ja/või teistes levitamisel üleantavates materjalides reprodutseerida\n" ++" ülaltoodud autoriõigusemärge, käesolev tingimuste loetelu ja\n" ++" alljärgnev loobumisteade.\n" ++"\n" ++" SELLE TARKVARA ON VALMISTANUD AUTOR KASUTAMISEKS SELLISENA, NAGU TA ON,\n" ++" NING TA EI ANNA MINGIT SELGESÕNALIST VÕI KAUDSET TAGATIST, SEALHULGAS\n" ++" RAHULDAVA KVALITEEDI, TEATUD OTSTARBEKS SOBIVUSE EGA MUUD TAGATIST.\n" ++" MITTE MINGIL JUHUL POLE AUTOR KOHUSTATUD VASTUTAMA ÜKSKÕIK MILLISE\n" ++" OTSESE, KAUDSE, JUHUSLIKU, ERILISE, ÜHEKORDSE, EGA TULENEVA KAHJU\n" ++" (KAASA ARVATUD, KUID MITTE AINULT, ASENDUSTOODETE VÕI -TEENUSTE\n" ++" HANKIMISE KUJUL; KASUTUSKÕLBMATUKS MUUTUMISE, ANDMETE KAOTSIMINEKU,\n" ++" VÕI SAAMATAJÄÄNUD TULU KUJUL; VÕI ÄRITEGEVUSE KATKEMISE KUJUL) EEST\n" ++" ÜKSKÕIK KUIDAS PÕHJUSTATUNA JA ÜKSKÕIK MISSUGUSE KOHUSTUSTE\n" ++" PÕHJENDUSEGA, ÜKSKÕIK KAS SEE TEKIB LEPINGULISE KOHUSTUSE, RANGE\n" ++" VASTUTUSE VÕI ÕIGUSERIKKUMISE (SEALHULGAS HOOLETUSE VÕI MUUL KUJUL)\n" ++" TÕTTU, KUI SEE TEKIB ÜKSKÕIK MISSUGUSEL TEEL SELLE TARKVARA KASUTAMISE\n" ++" TAGAJÄRJEL, ISEGI KUI ON TEATATUD SELLISE KAHJU TEKKIMISE VÕIMALUSEST.\n" ++ ++#: libxfce4util/xfce-license.c:55 ++msgid "" ++"This program is free software; you can redistribute it and/or modify it\n" ++"under the terms of the GNU General Public License as published by the Free\n" ++"Software Foundation; either version 2 of the License, or (at your option)\n" ++"any later version.\n" ++"\n" ++"This program is distributed in the hope that it will be useful, but WITHOUT\n" ++"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\n" ++"FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for\n" ++"more details.\n" ++"\n" ++"You should have received a copy of the GNU General Public License along with\n" ++"this program; if not, write to the Free Software Foundation, Inc., 59 Temple\n" ++"Place, Suite 330, Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"Käesolev programm on vaba tarkvara. Te võite seda edasi\n" ++"levitada ja/või muuta vastavalt GNU Üldise Avaliku Litsentsi\n" ++"tingimustele, nagu need on Vaba Tarkvara Fondi poolt\n" ++"avaldatud; kas Litsentsi versioon number 2 või (vastavalt\n" ++"Teie valikule) ükskõik milline hilisem versioon.\n" ++"\n" ++"Seda programmi levitatakse lootuses, et see on kasulik,\n" ++"kuid ILMA IGASUGUSE TAGATISETA; isegi RAHULDAVA KVALITEEDI\n" ++"või ERILISEKS OTSTARBEKS SOBIVUSE kaudse tagatiseta.\n" ++"Üksikasjalise info saamiseks vaata GNU Üldist Avaliku Litsetsi.\n" ++"\n" ++"Te peaks olema saanud GNU Üldise Avaliku Litsentsi\n" ++"koopia koos selle programmiga, kui ei, siis kontakteeruge Free Software\n" ++"Foundation'iga, 59 Temple Place - Suite 330, Boston,\n" ++"MA 02111-1307, USA.\n" ++ ++#: libxfce4util/xfce-license.c:70 ++msgid "" ++"This library is free software; you can redistribute it and/or\n" ++"modify it under the terms of the GNU Library General Public\n" ++"License as published by the Free Software Foundation; either\n" ++"version 2 of the License, or (at your option) any later version.\n" ++"\n" ++"This library is distributed in the hope that it will be useful,\n" ++"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" ++"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" ++"Library General Public License for more details.\n" ++"\n" ++"You should have received a copy of the GNU Library General Public\n" ++"License along with this library; if not, write to the \n" ++"Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n" ++"Boston, MA 02111-1307 USA.\n" ++msgstr "" ++"Käesolev teek on vaba tarkvara. Te võite seda edasi levitada\n" ++"ja/või muuta vastavalt GNU Üldise Avaliku Teegilitsentsi\n" ++"tingimustele, nagu need on Vaba Tarkvara Fondi poolt\n" ++"avaldatud; kas Litsentsi versioon number 2 või (vastavalt\n" ++"Teie valikule) ükskõik milline hilisem versioon.\n" ++"\n" ++"Seda teeki levitatakse lootuses, et see on kasulik,\n" ++"kuid ILMA IGASUGUSE TAGATISETA; isegi RAHULDAVA KVALITEEDI\n" ++"või ERILISEKS OTSTARBEKS SOBIVUSE kaudse tagatiseta.\n" ++"Üksikasjalise info saamiseks vaata GNU Üldist Avaliku Teegilitsetsi.\n" ++"\n" ++"Te peaks olema saanud GNU Üldise Avaliku Teegilitsentsi\n" ++"koopia koos selle teegiga, kui ei, siis kontakteeruge Free Software\n" ++"Foundation'iga, 59 Temple Place - Suite 330, Boston,\n" ++"MA 02111-1307, USA.\n" ++ --- libxfce4util-4.4.2.orig/debian/patches/series +++ libxfce4util-4.4.2/debian/patches/series @@ -0,0 +1,2 @@ +#01_add-desktop-base-in-config-dirs.patch +99_update_translations.patch