--- xfce-mcs-manager-4.0.5.orig/debian/changelog +++ xfce-mcs-manager-4.0.5/debian/changelog @@ -0,0 +1,89 @@ +xfce-mcs-manager (4.0.5-1) unstable; urgency=high + + * urgency high to avoid previous buildd mess; there are 2 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 + * Fix manpages path to be /usr/share/xfce4 not /usr/share/doc/xfce4 + * Update xlibs-pic dependency to be xlibs-static-pic + * Remove odd dependency on xfwm4 + * Reorder clean target in debian/rules so it removes config.status after + distclean otherwise distclean won't. + + -- Simon Huggins Wed, 21 Apr 2004 20:28:26 +0100 + +xfce-mcs-manager (4.0.3-2) unstable; urgency=low + + * Update libtool + * 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:37:49 +0000 + +xfce-mcs-manager (4.0.3-1) unstable; urgency=low + + * New Upstream release + * Remove debian/tmp-install in the clean target of debian/rules + * Add Daniel Silverstone to Uploaders as approved by + madkiss + * Add manpages for xfce-setting-show and xfce-mcs-manager + * Remove .la and .a files from non-library packages + * Thanks to Daniel for checking and uploading these packages + + -- Simon Huggins Wed, 25 Feb 2004 09:38:49 +0000 + +xfce-mcs-manager (4.0.2-1) unstable; urgency=low + + * New Upstream release + + -- Martin Loschwitz Fri, 26 Dec 2003 15:59:00 +0100 + +xfce-mcs-manager (4.0.0.final-1) unstable; urgency=low + + * New Upstream release. + * New Co-Maintainer: Norbert Tretkowski. + * Various cleanups in debian/ subdirectory. + * Added xlibs-pics to Build-Depends. + * Bumped Standards-Version to 3.6.1 (no changes). + + -- Martin Loschwitz Tue, 29 Sep 2003 16:46:00 +0200 + +xfce-mcs-manager (4.0.0+cvs.20030421-1) unstable; urgency=low + + * New CVS checkout (2003-04-21) + + -- Martin Loschwitz Mon, 21 Apr 2003 19:20:00 +0200 + +xfce-mcs-manager (4.0.0+cvs.20030301-3) unstable; urgency=low + + * Fix Depends: for libxfce4mcs-0-dev + + -- Martin Loschwitz Tue, 06 Mar 2003 20:54:00 +0100 + +xfce-mcs-manager (4.0.0+cvs.20030301-2) unstable; urgency=low + + * Added Dependency for libxfce4mcs-0-dev (Closes: #183681) + + -- Martin Loschwitz Tue, 06 Mar 2003 19:57:00 +0100 + +xfce-mcs-manager (4.0.0+cvs.20030301-1) unstable; urgency=low + + * New CVS checkout (Using Xfce CVS, 2003-03-01) + * Official release (really this time!) (last release was never made public) + * debian/control: Changed Maintainer e-mail address + + -- Martin Loschwitz Sat, 01 Mar 2003 10:31:00 +0100 + +xfce-mcs-manager (4.0.0+cvs.20030216-1) unstable; urgency=low + + * New CVS checkout (Using Xfce CVS, 2003-02-16) + * Official release (last release was never made public) + + -- Martin Loschwitz Sun, 16 Jan 2003 09:43:00 +0100 + +xfce-mcs-manager (4.0.0+cvs.20030119-1) unstable; urgency=low + + * Initial Release. + + -- Martin Loschwitz Sun, 19 Jan 2003 12:30:54 +0100 --- xfce-mcs-manager-4.0.5.orig/debian/control +++ xfce-mcs-manager-4.0.5/debian/control @@ -0,0 +1,29 @@ +Source: xfce-mcs-manager +Section: x11 +Priority: optional +Maintainer: Martin Loschwitz +Uploaders: Martin Loschwitz , Norbert Tretkowski , Daniel Silverstone , Simon Huggins +Build-Depends: debhelper (>= 4.1.25), libgtk2.0-dev, libxfce4mcs-dev (>= 4.0.3-1), libxfcegui4-dev (>= 4.0.3-1), libxft-dev, xlibs-static-pic +Standards-Version: 3.6.1 + +Package: xfce4-mcs-manager +Architecture: any +Depends: ${shlibs:Depends} +Recommends: xfce4-mcs-plugins +Description: Settings manager for Xfce4 + This package contains xfce-mcs-manager, a tool that can be + used to configure your Xfce4 desktop to meet your needs. + Additionally, it contains xfce-setting-show which can give + you a short and quick overview over your settings. If you + intend to install Xfce4, you most probably want this package. + +Package: xfce4-mcs-manager-dev +Architecture: any +Section: devel +Depends: libxfce4mcs-dev (>= ${Source-Version}) +Description: Development files and static plugins + This package contains the header-files and the static versions + of the plugins for xfce-mcs-manager which is a configuration + GUI for Xfce4 desktop environment. If you intend to develop + applications which use the xfce-mcs-manager, you will have to + install this package. --- xfce-mcs-manager-4.0.5.orig/debian/rules +++ xfce-mcs-manager-4.0.5/debian/rules @@ -0,0 +1,86 @@ +#!/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 + +config.status: configure + + dh_testdir + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --disable-rpath + touch config.status + +build: config.status build-stamp +build-stamp: + + dh_testdir + $(MAKE) + touch build-stamp + +clean: + + dh_testdir + dh_testroot + + -$(MAKE) distclean + + rm -rf build-stamp config.status debian/tmp-install + +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-install + + install -d `pwd`/debian/tmp-install/usr/share/man/man1 + install `pwd`/debian/xfce-mcs-manager.1 `pwd`/debian/tmp-install/usr/share/man/man1 + install `pwd`/debian/xfce-setting-show.1 `pwd`/debian/tmp-install/usr/share/man/man1 + + dh_install --list-missing --sourcedir=debian/tmp-install + +binary-indep: build install + +binary-arch: build install + + dh_testdir + dh_testroot + + dh_installdocs + dh_installmenu + + dh_installchangelogs + dh_strip + + dh_shlibdeps + dh_compress + + dh_fixperms + dh_makeshlibs + + dh_installdeb + dh_gencontrol + + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- xfce-mcs-manager-4.0.5.orig/debian/copyright +++ xfce-mcs-manager-4.0.5/debian/copyright @@ -0,0 +1,32 @@ +This package was debianized by Martin Loschwitz on +Sun, 19 Jan 2003 12:30:54 +0100. + +You can fetch xfce-mcs-manager from CVS only right now. Instructions can +be found at http://xfce.sourceforge.net/ + +Upstream authors are: + Olivier Fourdan + Jasper Huijsmans + +Additionally, portions based on gnome capplets by Jonathan Blandford + and plugin icons from GNOME icons collection are +included. + +Copyright: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- xfce-mcs-manager-4.0.5.orig/debian/xfce4-mcs-manager.menu +++ xfce-mcs-manager-4.0.5/debian/xfce4-mcs-manager.menu @@ -0,0 +1,4 @@ +?package(xfce4-mcs-manager): needs="X11" section="Apps/Tools" command="xfce-mcs-manager" \ + title="XFce-mcs-manager" longtitle="Xfce Settings Manager" hints="Settings manager" +?package(xfce4-mcs-manager): needs="X11" section="Apps/Tools" command="xfce-setting-show" \ + title="XFce-setting-show" longtitle="Xfce Settings displayer" hints="Display settings" --- xfce-mcs-manager-4.0.5.orig/debian/xfce4-mcs-manager.install +++ xfce-mcs-manager-4.0.5/debian/xfce4-mcs-manager.install @@ -0,0 +1,5 @@ +usr/bin/ +usr/lib/xfce-mcs-manager/plugins/*.so +usr/share/man/ +usr/share/locale/ +usr/share/xfce4/doc/ --- xfce-mcs-manager-4.0.5.orig/debian/xfce4-mcs-manager-dev.install +++ xfce-mcs-manager-4.0.5/debian/xfce4-mcs-manager-dev.install @@ -0,0 +1,2 @@ +usr/lib/pkgconfig/xfce-mcs-manager.pc +usr/include/xfce4/xfce-mcs-manager/* --- xfce-mcs-manager-4.0.5.orig/debian/compat +++ xfce-mcs-manager-4.0.5/debian/compat @@ -0,0 +1 @@ +4 --- xfce-mcs-manager-4.0.5.orig/debian/xfce-mcs-manager.1 +++ xfce-mcs-manager-4.0.5/debian/xfce-mcs-manager.1 @@ -0,0 +1,18 @@ +.\" Copyright (C) 2004 Simon Huggins +.TH XFCE-MCS-MANAGER "1" "February 2004" "xfce-mcs-manager 0.1" "User Commands" +.SH NAME +xfce-mcs-manager \- XFce 4 Settings Manager backend +.SH SYNOPSIS +.B xfce-mcs-manager +.SH DESCRIPTION +.PP +Starts the XFce 4 settings manager backend. +.SH SEE ALSO +Upstream documentation in /usr/share/xfce4/doc/C/xfce-mcs-manager.html +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2004 Simon Huggins +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. --- xfce-mcs-manager-4.0.5.orig/debian/xfce-setting-show.1 +++ xfce-mcs-manager-4.0.5/debian/xfce-setting-show.1 @@ -0,0 +1,18 @@ +.\" Copyright (C) 2004 Simon Huggins +.TH XFCE-SETTING-SHOW "1" "February 2004" "xfce-setting-show 0.1" "User Commands" +.SH NAME +xfce-setting-show \- XFce 4 Settings Manager +.SH SYNOPSIS +.B xfce-setting-show +.SH DESCRIPTION +.PP +Starts the XFce 4 settings manager. +.SH SEE ALSO +Upstream documentation in /usr/share/xfce4/doc/C/xfce-mcs-manager.html +.SH "REPORTING BUGS" +Report bugs to . +.SH COPYRIGHT +Copyright \(co 2004 Simon Huggins +.br +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.