--- compiz-fusion-plugins-main-0.7.6.orig/debian/changelog +++ compiz-fusion-plugins-main-0.7.6/debian/changelog @@ -0,0 +1,62 @@ +compiz-fusion-plugins-main (0.7.6-1) unstable; urgency=low + + * New upstream release. + + -- Sean Finney Tue, 03 Jun 2008 00:52:04 +0200 + +compiz-fusion-plugins-main (0.7.4-2) unstable; urgency=low + + * Make sure to install the pkgconfig .pc files used when building the + other plugins packages (closes: #478423). Thanks to Tarek Soliman + for reporting this. + * Grammar fix in package description, thanks to Reuben Thomas for + reporting this (closes: #463599). + + -- Sean Finney Sun, 25 May 2008 18:51:07 +0200 + +compiz-fusion-plugins-main (0.7.4-1) unstable; urgency=low + + * New upstream release. + * Bump build-depends on bcop and compiz-dev to >= 0.7.3. + * Include new png images. + + -- Sean Finney Mon, 19 May 2008 19:31:39 +0200 + +compiz-fusion-plugins-main (0.6.0-5) unstable; urgency=low + + [Emilio Scalise] + * Added missing build-depends on: libcairo2-dev, libpango1.0-dev, + librsvg2-dev, libsm-dev, libdbus-1-dev, libdecoration0-dev + (closes: #456380). + + -- Sean Finney Fri, 21 Dec 2007 20:58:27 +0100 + +compiz-fusion-plugins-main (0.6.0-4) unstable; urgency=low + + * FTBFS: add Build-Depends: automake1.9 (closes: #453194). + + -- Sean Finney Sat, 01 Dec 2007 15:14:23 +0100 + +compiz-fusion-plugins-main (0.6.0-3) unstable; urgency=low + + * Remove autofoo generated content and create/remove it as part of the + standard build process instead. + * FTBFS: add the following to Build-Depends: autoconf, compiz-fusion-bcop, + libgconf2-dev, libglib2.0-dev, libglu1-mesa-dev, libjpeg62-dev, libtool, + libxml2-dev, libxslt1-dev + + -- Sean Finney Tue, 20 Nov 2007 20:29:29 +0100 + +compiz-fusion-plugins-main (0.6.0-2) unstable; urgency=low + + * make sure the package provides the text.h header file, which is needed + by compiz-fusion-plugins-extra + + -- Sean Finney Sat, 10 Nov 2007 10:49:11 +0100 + +compiz-fusion-plugins-main (0.6.0-1) unstable; urgency=low + + * Initial release (Closes: #431755). + + -- Sean Finney Fri, 09 Nov 2007 18:56:43 +0100 + --- compiz-fusion-plugins-main-0.7.6.orig/debian/install +++ compiz-fusion-plugins-main-0.7.6/debian/install @@ -0,0 +1,8 @@ +usr/share/locale/*/LC_MESSAGES/*.mo +usr/share/compiz/*.xml +usr/share/compiz/filters +usr/share/compiz/Gnome +usr/share/compiz/Oxygen +usr/lib/compiz/*.so +usr/lib/pkgconfig/*.pc +usr/include/compiz --- compiz-fusion-plugins-main-0.7.6.orig/debian/compat +++ compiz-fusion-plugins-main-0.7.6/debian/compat @@ -0,0 +1 @@ +5 --- compiz-fusion-plugins-main-0.7.6.orig/debian/control +++ compiz-fusion-plugins-main-0.7.6/debian/control @@ -0,0 +1,20 @@ +Source: compiz-fusion-plugins-main +Priority: extra +Maintainer: Debian X Strike Force +Uploaders: Sean Finney +Build-Depends: autoconf, automake1.9, autotools-dev, compiz-dev (>= 0.7.6), compiz-fusion-bcop (>= 0.7.6), debhelper (>= 5), intltool, libgconf2-dev, libglib2.0-dev, libtool, libglu1-mesa-dev, libjpeg62-dev, libxml2-dev, libxslt1-dev, pkg-config, xsltproc, libcairo2-dev, libpango1.0-dev, librsvg2-dev, libsm-dev, libdbus-1-dev, libdecoration0-dev +Standards-Version: 3.7.2 +Section: x11 + +Package: compiz-fusion-plugins-main +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Compiz Fusion plugins - main collection + Compiz Fusion is the result of the re-unification of the Beryl-project + and the community around the Compiz Window Manager. It seeks to provide + an easy and fun-to-use windowing environment, allowing use of the + graphics hardware to provide impressive effects, amazing speed and + unrivalled usefulness. + . + This package provides the primary and most well tested set of plugins + from the compiz-fusion project. --- compiz-fusion-plugins-main-0.7.6.orig/debian/docs +++ compiz-fusion-plugins-main-0.7.6/debian/docs @@ -0,0 +1,3 @@ +NEWS +AUTHORS +TODO --- compiz-fusion-plugins-main-0.7.6.orig/debian/rules +++ compiz-fusion-plugins-main-0.7.6/debian/rules @@ -0,0 +1,90 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +# the following files are modified in the build process, but shouldn't be. +UPSTREAM_PRESERVE:=po/Makefile.in.in + +# the following are generated by autoconf and have no way of being deleted +# gracefully. +AUTOFOO_DELETE:=aclocal.m4 config.guess config.h.in config.sub configure \ + depcomp install-sh intltool-extract.in intltool-merge.in \ + intltool-update.in ltmain.sh missing mkinstalldirs + +configure: configure-stamp +configure-stamp: + dh_testdir + for f in $(UPSTREAM_PRESERVE); do \ + cp -a $$f $$f.preserve; \ + done + ./autogen.sh + ./configure --prefix=/usr --disable-static + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + [ ! -f Makefile ] || $(MAKE) distclean + # clean up extra automake cruft + find . -type f -name Makefile.in -print0 | xargs -0 rm -f + rm -f $(AUTOFOO_DELETE) + for f in $(UPSTREAM_PRESERVE); do \ + if [ -f $$f.preserve ]; then \ + cp -a $$f.preserve $$f; rm -f $$f.preserve; \ + fi; \ + done + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + # clean up some upstream cruft + find $(CURDIR)/debian/tmp -type f -name '*.la' -print0 | xargs -0 rm -f + +# 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 +# uncomment when upstream starts putting stuff in it +# dh_installchangelogs ChangeLog + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install --sourcedir=debian/tmp --fail-missing + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + 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 configure --- compiz-fusion-plugins-main-0.7.6.orig/debian/copyright +++ compiz-fusion-plugins-main-0.7.6/debian/copyright @@ -0,0 +1,19 @@ +This package was debianized by Sean Finney . + +It was downloaded from git://anongit.compiz-fusion.org/fusion/plugins-main + +Upstream Authors (Lead Developers, see AUTHORS for full list): + + Danny Baumann + David Reveman + Dennis Kasprzyk + Erkin Bahceci + Guillaume Seguin - iXce + Kristian Lyngstøl + +License: + + GPL, see `/usr/share/common-licenses/GPL' + +The Debian packaging is (C) 2007, sean finney and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'.