--- zenpanel-0.9.2.orig/debian/changelog +++ zenpanel-0.9.2/debian/changelog @@ -0,0 +1,19 @@ +zenpanel (0.9.2-zenix2) lucid; urgency=low + + * Standards bump. Fix some lintian warnings. + + -- Iain Buclaw Wed, 02 Jun 2010 22:02:12 +0100 + +zenpanel (0.9.2-zenix1) lucid; urgency=low + + * Empty package in first commit. + * Reupload original tarball. + + -- Iain Buclaw Wed, 02 Jun 2010 21:40:29 +0100 + +zenpanel (0.9.1-zenix1) lucid; urgency=low + + * Initial release + + -- Iain Buclaw Wed, 02 Jun 2010 21:05:36 +0100 + --- zenpanel-0.9.2.orig/debian/copyright +++ zenpanel-0.9.2/debian/copyright @@ -0,0 +1,37 @@ +This package was debianized by Iain Buclaw on +Wed, 02 Jun 2010 21:05:36 +0100. + +It was downloaded from https://code.launchpad.net/~zenix-shravaka/zenix/zenpanel + +Upstream Author(s): + + Zenix Shravaka + +Copyright: + + Zenix Shravaka + +License: + + Copyright (C) 2008 nsf + Copyright (C) 2010 Iain Buclaw + + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + +The Debian packaging is (C) 2010, Iain Buclaw and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + --- zenpanel-0.9.2.orig/debian/compat +++ zenpanel-0.9.2/debian/compat @@ -0,0 +1 @@ +5 --- zenpanel-0.9.2.orig/debian/docs +++ zenpanel-0.9.2/debian/docs @@ -0,0 +1 @@ +README --- zenpanel-0.9.2.orig/debian/control +++ zenpanel-0.9.2/debian/control @@ -0,0 +1,16 @@ +Source: zenpanel +Section: utils +Priority: extra +Maintainer: Zenix Shravaka +Build-Depends: debhelper (>= 5), autotools-dev, libimlib2-dev, libxfixes-dev, libfreetype6-dev, libfontconfig-dev, libglib2.0-dev +Standards-Version: 3.8.4 +Vcs-Bzr: lp:~zenix-shravaka/zenix/zenpanel +Vcs-Browser: http://bazaar.launchpad.net/~zenix-shravaka/zenix/zenpanel/files + +Package: zenpanel +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Zenix Bitmap Panel + ZenPanel is a fork of BMPanel (BitMap Panel) a lightweight, NETWM compliant + panel for X11 Window System, which contains a desktop switcher, taskbar, + system tray and clock. --- zenpanel-0.9.2.orig/debian/rules +++ zenpanel-0.9.2/debian/rules @@ -0,0 +1,99 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +config.status: configure + dh_testdir + # Add here commands to configure the package. +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 + ./configure --prefix=/usr --optimize + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/zenpanel.sgml > zenpanel.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/zenpanel. + $(MAKE) DESTDIR=$(CURDIR)/debian/zenpanel install + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install