--- oxygencursors-0.0.2012-06-kde4.8.orig/debian/prerm +++ oxygencursors-0.0.2012-06-kde4.8/debian/prerm @@ -0,0 +1,42 @@ +#! /bin/sh +# prerm script for #PACKAGE# +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +ICONDIR=/etc/X11/cursors + +case "$1" in + remove|deconfigure) + for theme in `find $ICONDIR -regex '.*oxy-.*theme$'`; do + update-alternatives --remove x-cursor-theme $theme + done + ;; + upgrade) + ;; + failed-upgrade) + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/rules +++ oxygencursors-0.0.2012-06-kde4.8/debian/rules @@ -0,0 +1,71 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 +ICONDIR=usr/share/icons +WRAPPERDIR=etc/X11/cursors + +include /usr/share/quilt/quilt.make + +builddir: $(QUILT_STAMPFN) + mkdir -p $@ + +builddir/Makefile: builddir + cd builddir && cmake .. -DCMAKE_INSTALL_PREFIX=/usr + +build-compile-cursors-stamp: builddir/Makefile + cd builddir && make + touch $@ + +$(subst theme,cursors/oxy,$(wildcard theme-*)): build-compile-cursors-stamp + mkdir -p $@ + cp -a builddir/$(subst cursors/,,$@)/cursors $@ + cp $(subst cursors/oxy,theme,$@)/index.theme $@ + + +build-stamp: $(subst theme,cursors/oxy,$(wildcard theme-*)) + touch $@ + +build: build-stamp + +clean: unpatch + dh_testdir + dh_testroot + # Add here commands to clean up after the build process. + dh_clean + rm -rf cursors + rm -rf builddir + rm -f build-stamp build-compile-cursors-stamp + +install: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/comixcursors. + cp -a cursors/oxy-* $(CURDIR)/debian/oxygencursors/$(ICONDIR) + + chmod +x debian/wrapperthemes.sh + + debian/wrapperthemes.sh + + +binary-arch: install +# We have nothing to do here + +binary-indep: install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb -- -Zxz + +binary: binary-indep binary-arch +.PHONY: clean binary-indep binary-arch binary install --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/changelog +++ oxygencursors-0.0.2012-06-kde4.8/debian/changelog @@ -0,0 +1,52 @@ +oxygencursors (0.0.2012-06-kde4.8-2.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/rules: Use xz compression for binary packages. (Closes: #683910) + + -- Ansgar Burchardt Sun, 05 Aug 2012 12:24:25 +0200 + +oxygencursors (0.0.2012-06-kde4.8-2) unstable; urgency=low + + * Add myself to Uploaders. + * Fix UNRELEASED tag in last upload. + * Add do_not_build_big_icons.patch to avoid building 270dpi cursors, + thus reducing installation size. + * Update Standars-version to 3.9.3. No changes needed. + + -- Lisandro Damián Nicanor Pérez Meyer Wed, 27 Jun 2012 20:27:40 -0300 + +oxygencursors (0.0.2012-06-kde4.8-1) unstable; urgency=low + + * New upstream release + + -- Sune Vuorela Thu, 21 Jun 2012 00:11:11 +0200 + +oxygencursors (0.0.2010-05-10-kde4.4.3-1) unstable; urgency=low + + * New upstream release based on kde 4.4.3 cursors. + - Adds drag and drop cursor. Closes: #493038 + * Move to debian email + + -- Sune Vuorela Tue, 18 May 2010 16:23:19 +0200 + +oxygencursors (0.0.2008-07-07-svn824849-1) unstable; urgency=low + + * New upstream snapshot - as released with kde4 rc1. + - All patches dropped. Merged upstream + - More colors + + -- Sune Vuorela Thu, 10 Jul 2008 07:51:45 +0200 + +oxygencursors (0.0.2008-01-27-a7b68163e7c8ccc1376-2) unstable; urgency=low + + * Fix a couple of more icon names. + + -- Sune Vuorela Tue, 29 Jan 2008 08:47:21 +0100 + +oxygencursors (0.0.2008-01-27-a7b68163e7c8ccc1376-1) unstable; urgency=low + + * Initial release. Git snapshot. + * Add some extra names for the same cursors. Also forwarded upstream + to Ruphy. + + -- Sune Vuorela Sun, 27 Jan 2008 14:00:11 +0100 --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/control +++ oxygencursors-0.0.2012-06-kde4.8/debian/control @@ -0,0 +1,17 @@ +Source: oxygencursors +Section: x11 +Priority: optional +Maintainer: Sune Vuorela +Uploaders: Lisandro Damián Nicanor Pérez Meyer +Build-Depends: debhelper (>= 5.0.0),inkscape,x11-apps,quilt, cmake +Standards-Version: 3.9.3 + +Package: oxygencursors +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Oxygen mouse cursor theme + This package contains the Oxygen cursor theme, + originally created for KDE 4. + . + The cursors are available in numerous colors to + match the style of any desktop. --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/compat +++ oxygencursors-0.0.2012-06-kde4.8/debian/compat @@ -0,0 +1 @@ +5 --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/dirs +++ oxygencursors-0.0.2012-06-kde4.8/debian/dirs @@ -0,0 +1,3 @@ +usr/share/icons/ +usr/share/icons/default +etc/X11/cursors --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/wrapperthemes.sh +++ oxygencursors-0.0.2012-06-kde4.8/debian/wrapperthemes.sh @@ -0,0 +1,13 @@ +#!/bin/sh +ICONDIR=usr/share/icons +WRAPPERDIR=etc/X11/cursors +CURDIR=`pwd` + cd debian/oxygencursors/${ICONDIR} + for theme in oxy* + do + grep -v Inherits ${CURDIR}/debian/oxygencursors/${ICONDIR}/${theme}/index.theme > tmp || exit 1 + echo "Inherits = ${theme}" >> tmp || exit 1 + install -m 644 tmp ${CURDIR}/debian/oxygencursors/${WRAPPERDIR}/${theme}.theme || exit 1 + rm tmp || exit 1 + done +exit 0 --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/preinst +++ oxygencursors-0.0.2012-06-kde4.8/debian/preinst @@ -0,0 +1,25 @@ +#! /bin/sh + +set -e + +REMOVED_LIST="" +ICONDIR=/etc/X11/cursors + +case "$1" in + upgrade) + for theme in $REMOVED_LIST; + do + if update-alternatives --list x-cursor-theme |grep -q $theme; then + update-alternatives --remove $ICONDIR/$theme + rm -f $ICONDIR/$theme + fi + done + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/postinst +++ oxygencursors-0.0.2012-06-kde4.8/debian/postinst @@ -0,0 +1,49 @@ +#! /bin/sh +# postinst script for #PACKAGE# +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# + +PRIORITY=50 +TARGET=/usr/share/icons/default/index.theme +ICONDIR=/etc/X11/cursors + +case "$1" in + configure) + for theme in `find $ICONDIR -regex '.*oxy-.*theme$'`; + do + if ! update-alternatives --list x-cursor-theme |grep -q $theme; then + update-alternatives --install $TARGET x-cursor-theme $theme $PRIORITY + fi + done + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/copyright +++ oxygencursors-0.0.2012-06-kde4.8/debian/copyright @@ -0,0 +1,29 @@ +This package was debianized by Sune Vuorela on +Sun, 27 Jan 2007 14:28:26 +0000 + +It was downloaded from ftp.kde.org and extracted from cursors subdir in +kdebase-workspace tarball + + +Copyright (C) 2007-2008 by Riccardo Iaconelli +Copyright (C) 2007-2008 by David Miller + + This cursor theme and the associated scripts are free software: + you can redistribute them and/or modify them under the terms of + the GNU General Public License as published by the Free Software + Foundation, either version 3 of the License, or (at your option) + any later version. + + This cursor theme and the associated scripts are distributed in + the hope that they 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 program. If not, see . + +On Debian systems, you can find the full text of the GNU General Public License +in /usr/share/common-licenses/GPL-3 + +Debian packaging licensed under same terms as the icons --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/patches/do_not_build_big_icons.patch +++ oxygencursors-0.0.2012-06-kde4.8/debian/patches/do_not_build_big_icons.patch @@ -0,0 +1,191 @@ +Subject: disbales the creation of 270 dpi cursors. +Due to the large installed size of the 270dpi cursors, +we disable them. +Author: Lisandro Damián Nicanor Pérez Meyer +Forwarded: not-needed + +--- a/theme-black/CMakeLists.txt ++++ b/theme-black/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-blue/CMakeLists.txt ++++ b/theme-blue/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-bluecurve/CMakeLists.txt ++++ b/theme-bluecurve/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-brown/CMakeLists.txt ++++ b/theme-brown/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-cherry/CMakeLists.txt ++++ b/theme-cherry/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-chrome/CMakeLists.txt ++++ b/theme-chrome/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-desert/CMakeLists.txt ++++ b/theme-desert/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-emerald/CMakeLists.txt ++++ b/theme-emerald/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-green/CMakeLists.txt ++++ b/theme-green/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-grey/CMakeLists.txt ++++ b/theme-grey/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-honeycomb/CMakeLists.txt ++++ b/theme-honeycomb/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-hot_orange/CMakeLists.txt ++++ b/theme-hot_orange/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-lilac/CMakeLists.txt ++++ b/theme-lilac/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-midnight_meadow/CMakeLists.txt ++++ b/theme-midnight_meadow/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-navy/CMakeLists.txt ++++ b/theme-navy/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-norway/CMakeLists.txt ++++ b/theme-norway/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-obsidian-hc/CMakeLists.txt ++++ b/theme-obsidian-hc/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-obsidian/CMakeLists.txt ++++ b/theme-obsidian/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-olympus-inv/CMakeLists.txt ++++ b/theme-olympus-inv/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-olympus/CMakeLists.txt ++++ b/theme-olympus/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-orchid/CMakeLists.txt ++++ b/theme-orchid/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-oxygen/CMakeLists.txt ++++ b/theme-oxygen/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-peach/CMakeLists.txt ++++ b/theme-peach/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-purple/CMakeLists.txt ++++ b/theme-purple/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-red-argentina/CMakeLists.txt ++++ b/theme-red-argentina/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-red/CMakeLists.txt ++++ b/theme-red/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-sea_blue/CMakeLists.txt ++++ b/theme-sea_blue/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-steel/CMakeLists.txt ++++ b/theme-steel/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-terra/CMakeLists.txt ++++ b/theme-terra/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-terra_green/CMakeLists.txt ++++ b/theme-terra_green/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-violet/CMakeLists.txt ++++ b/theme-violet/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-viorange/CMakeLists.txt ++++ b/theme-viorange/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-white/CMakeLists.txt ++++ b/theme-white/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-whitewater/CMakeLists.txt ++++ b/theme-whitewater/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-wonton/CMakeLists.txt ++++ b/theme-wonton/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-yellow/CMakeLists.txt ++++ b/theme-yellow/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) +--- a/theme-zion/CMakeLists.txt ++++ b/theme-zion/CMakeLists.txt +@@ -1 +1 @@ +-add_theme(${color} ${color} 90 180 270) ++add_theme(${color} ${color} 90 180) --- oxygencursors-0.0.2012-06-kde4.8.orig/debian/patches/series +++ oxygencursors-0.0.2012-06-kde4.8/debian/patches/series @@ -0,0 +1 @@ +do_not_build_big_icons.patch