--- lxpanel-0.3.999.orig/debian/compat +++ lxpanel-0.3.999/debian/compat @@ -0,0 +1 @@ +7 --- lxpanel-0.3.999.orig/debian/docs +++ lxpanel-0.3.999/debian/docs @@ -0,0 +1,3 @@ +NEWS +README +TODO --- lxpanel-0.3.999.orig/debian/copyright +++ lxpanel-0.3.999/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Cory Flick on +Wed, 18 Mar 2009 18:59:00 -0500. + +It was downloaded from http://www.gnomefiles.org/app.php/LXPanel + +Upstream Author(s): + + Hong Jen Yee (PCMan) + Jim Huang + Greg McNew (battery plugin) + Fred Chien + Daniel Kesler + +Copyright: + + + + (battery plugin) + + + +License: + + GNU GENERAL PUBLIC LICENSE Version 2, June 1991 /usr/share/common-licenses/GPL-2 + +The Debian packaging is (C) 2009, Cory Flick and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + +# Please also look if there are files or directories which have a +# different copyright/license attached and list them here. --- lxpanel-0.3.999.orig/debian/README.Debian +++ lxpanel-0.3.999/debian/README.Debian @@ -0,0 +1,6 @@ +lxpanel for Debian +------------------ + + + + -- Cory Flick Wed, 18 Mar 2009 18:59:00 -0500 --- lxpanel-0.3.999.orig/debian/control +++ lxpanel-0.3.999/debian/control @@ -0,0 +1,13 @@ +Source: lxpanel +Section: x11 +Priority: extra +Maintainer: Cory Flick +Build-Depends: debhelper (>= 7), autotools-dev, intltool, libgtk2.0-dev +Standards-Version: 3.7.3 +Homepage: http://www.gnomefiles.org/app.php/LXPanel + +Package: lxpanel +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, lxmenu-data, menu-cache +Description: Lightweight X11 desktop panel based on fbpanel + Lightweight X11 desktop panel based on fbpanel --- lxpanel-0.3.999.orig/debian/changelog +++ lxpanel-0.3.999/debian/changelog @@ -0,0 +1,10 @@ +lxpanel (0.3.999-1) intrepid; urgency=low + + * Initial release + * Fix icon display problems under 64-bit systems. + * Fixes to work with minimization animation provided by window manager. + * Fix RTL problems of the task list. + * Launch console applications in terminal properly. + * Some minor bug fixes. + * Add some new translations. + -- Cory Flick Wed, 18 Mar 2009 19:02:32 -0500 --- lxpanel-0.3.999.orig/debian/dirs +++ lxpanel-0.3.999/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- lxpanel-0.3.999.orig/debian/rules +++ lxpanel-0.3.999/debian/rules @@ -0,0 +1,105 @@ +#!/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) +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +CROSS= --build $(DEB_BUILD_GNU_TYPE) +endif + + + +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 $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/lxpanel.sgml > lxpanel.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(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/lxpanel. + $(MAKE) DESTDIR=$(CURDIR)/debian/lxpanel 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 ChangeLog + 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