[Pkg-xfce-commits] r3778 - desktop/branches/experimental/libxfce4util/debian
Yves-Alexis Perez
corsac at alioth.debian.org
Sat Jan 9 03:44:28 UTC 2010
Author: corsac
Date: 2010-01-09 15:44:27 +0000 (Sat, 09 Jan 2010)
New Revision: 3778
Added:
desktop/branches/experimental/libxfce4util/debian/README.source
Modified:
desktop/branches/experimental/libxfce4util/debian/changelog
desktop/branches/experimental/libxfce4util/debian/control
desktop/branches/experimental/libxfce4util/debian/rules
desktop/branches/experimental/libxfce4util/debian/xfce4-kiosk-query.8
Log:
* New upstream development release.
* debian/control:
- update standards version to 3.8.3.
- add build-dep on intltool.
- add depends on ${misc:Depends}.
* debian/xfce4-kiosk-query.8: fix typo.
* debian/rules:
- switch to dh7 with quilt addon.
* debian/README.source added.
Added: desktop/branches/experimental/libxfce4util/debian/README.source
===================================================================
--- desktop/branches/experimental/libxfce4util/debian/README.source (rev 0)
+++ desktop/branches/experimental/libxfce4util/debian/README.source 2010-01-09 15:44:27 UTC (rev 3778)
@@ -0,0 +1,2 @@
+This package uses quilt patch system to apply patch at build-time. More
+information can be found in /usr/share/doc/quilt/README.source.
Modified: desktop/branches/experimental/libxfce4util/debian/changelog
===================================================================
--- desktop/branches/experimental/libxfce4util/debian/changelog 2010-01-09 15:32:30 UTC (rev 3777)
+++ desktop/branches/experimental/libxfce4util/debian/changelog 2010-01-09 15:44:27 UTC (rev 3778)
@@ -1,3 +1,17 @@
+libxfce4util (4.7.1-1) UNRELEASED; urgency=low
+
+ * New upstream development release.
+ * debian/control:
+ - update standards version to 3.8.3.
+ - add build-dep on intltool.
+ - add depends on ${misc:Depends}.
+ * debian/xfce4-kiosk-query.8: fix typo.
+ * debian/rules:
+ - switch to dh7 with quilt addon.
+ * debian/README.source added.
+
+ -- Yves-Alexis Perez <corsac at debian.org> Sat, 09 Jan 2010 16:43:50 +0100
+
libxfce4util (4.6.1-1) unstable; urgency=low
* New upstream release.
Modified: desktop/branches/experimental/libxfce4util/debian/control
===================================================================
--- desktop/branches/experimental/libxfce4util/debian/control 2010-01-09 15:32:30 UTC (rev 3777)
+++ desktop/branches/experimental/libxfce4util/debian/control 2010-01-09 15:44:27 UTC (rev 3778)
@@ -3,8 +3,8 @@
Section: xfce
Maintainer: Debian Xfce Maintainers <pkg-xfce-devel at lists.alioth.debian.org>
Uploaders: Emanuele Rocca <ema at debian.org>, Simon Huggins <huggie at earth.li>, Yves-Alexis Perez <corsac at debian.org>
-Build-Depends: debhelper (>= 7.0.0), libglib2.0-dev, chrpath, quilt
-Standards-Version: 3.8.1
+Build-Depends: debhelper (>= 7.0.0), libglib2.0-dev, chrpath, quilt, intltool
+Standards-Version: 3.8.3
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/
@@ -12,7 +12,7 @@
Package: libxfce4util-dev
Section: libdevel
Architecture: any
-Depends: libxfce4util4 (= ${binary:Version}), libglib2.0-dev
+Depends: libxfce4util4 (= ${binary:Version}), ${misc:Depends}, libglib2.0-dev
Suggests: devhelp
Description: Development files for libxfce4util4
This package contains the headers and the static library
@@ -26,7 +26,7 @@
Package: libxfce4util4
Section: libs
Architecture: any
-Depends: ${shlibs:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Utility functions library for Xfce4
This package contains libxfce4util4, the basic utility
function library for Xfce4. If you intend to run Xfce4,
@@ -36,7 +36,7 @@
Section: debug
Architecture: any
Priority: extra
-Depends: ${shlibs:Depends}, libxfce4util4 (= ${binary:Version})
+Depends: ${shlibs:Depends}, ${misc:Depends}, libxfce4util4 (= ${binary:Version})
Description: debugging informations for libxfce4util4
This package contains debugging symbols for libxfce4util4, the basic
utility function library for Xfce4.
Modified: desktop/branches/experimental/libxfce4util/debian/rules
===================================================================
--- desktop/branches/experimental/libxfce4util/debian/rules 2010-01-09 15:32:30 UTC (rev 3777)
+++ desktop/branches/experimental/libxfce4util/debian/rules 2010-01-09 15:44:27 UTC (rev 3778)
@@ -1,88 +1,6 @@
#!/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
LDFLAGS+=-Wl,-z,defs -Wl,--as-needed
-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
-
-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
-
- dh_clean
-
-install: build
-
- dh_testdir
- dh_testroot
- dh_prep
- 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 --fail-missing --sourcedir=debian/tmp
- dh_strip --dbg-package=libxfce4util4-dbg
-
- dh_compress
- dh_fixperms
-
- dh_makeshlibs -V 'libxfce4util4 (>= 4.6.0)'
- dh_installdeb
-
- dh_shlibdeps
- dh_gencontrol
-
- dh_md5sums
- dh_builddeb
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+%:
+ dh --with quilt $@
Modified: desktop/branches/experimental/libxfce4util/debian/xfce4-kiosk-query.8
===================================================================
--- desktop/branches/experimental/libxfce4util/debian/xfce4-kiosk-query.8 2010-01-09 15:32:30 UTC (rev 3777)
+++ desktop/branches/experimental/libxfce4util/debian/xfce4-kiosk-query.8 2010-01-09 15:44:27 UTC (rev 3778)
@@ -30,7 +30,7 @@
.\" 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
+the user has the capabilities or not. This tool is mainly meant
for system administrators to test their Kiosk setup.
.SH OPTIONS
A summary of options is included below.
More information about the Pkg-xfce-commits
mailing list