Subversion Repositories crystalcursors

Compare Revisions

Regard whitespace Rev 3 → Rev 19

/tags/1.1.1-14/debian/changelog
1,3 → 1,35
crystalcursors (1.1.1-14) unstable; urgency=low
 
* grey_watch.patch: Replace bad clock animation frame in gray theme
(Closes: #705782). Thanks to Maximiliano Curia <maxy@debian.org>.
* Remove broken superfluous symlinks (Closes: #702857).
* Upgrade to Standards-Version 3.9.7, adding an empty build-arch target.
 
-- Magnus Holmgren <holmgren@debian.org> Fri, 25 Mar 2016 16:35:00 +0100
 
crystalcursors (1.1.1-13) unstable; urgency=low
 
* New maintainer (Closes: #529434).
* Do not remove alternatives on upgrade.
* Delete unused and unnecessary stuff from debian/rules.
* Add build-indep target.
* Drop 01-correct-upstreams-makefile.patch:
- Pass PREFIX instead of DESTDIR from debian/rules
- The "all" target should not have "clean" as a prerequisite; the
problem in bug #368468 was just that patch-stamp wasn't created
and we don't need that with source format 3.0.
* Add CREDITS to debian/docs.
* Add additional symlinks that Qt look for, as well as the missing
ul_angle and ur_angle (Closes: #430827, #499344; works around:
#548804).
* Improve package description.
* Give a suitable theme higher priority than the rest like; crystalblue
(the blue, right-handed, animated theme) is what the upstream author
intends as the default (Closes: #500881).
* Bump Standards-Version to 3.9.1.
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 22 Aug 2010 01:15:06 +0200
 
crystalcursors (1.1.1-12) unstable; urgency=medium
 
[ Jari Aalto ]
/tags/1.1.1-14/debian/control
1,10 → 1,10
Source: crystalcursors
Section: x11
Priority: optional
Maintainer: Debian QA Group <packages@qa.debian.org>
Maintainer: Magnus Holmgren <holmgren@debian.org>
Build-Depends: debhelper (>= 7.1)
Build-Depends-Indep: imagemagick, x11-apps
Standards-Version: 3.8.4
Standards-Version: 3.9.7
Homepage: http://www.kde-look.org/content/show.php?content=6240
 
Package: crystalcursors
11,15 → 11,15
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: X11 mouse theme with the crystal look&feel
This package comes with 20 different mouse themes:
* crystalblue, crystalblue_classic, crystalblue_nonanim
* crystalblueleft, crystalblueleft_classic, crystalblueleft_nonanim
* crystalgray, crystalgray_nonanim
* crystalgrayleft, crystalgrayleft_nonanim
* crystalgreen, crystalgreen_classic, crystalgreen_nonanim
* crystalgreenleft, crystalgreenleft_classic, crystalgreenleft_nonanim
* crystalwhite, crystalwhite_nonanim
* crystalwhiteleft, crystalwhiteleft_nonanim
This package contains "Crystal" style mouse cursor themes in four
colours (blue, green, white, and grey) as well as green and blue
"classic", wherein certain cursors (e.g. the "hand" cursor) are white
instead of coloured.
.
For Each of the above colours there are both right and left handed
versions as well as animated and non-animated ones (except for the
"classic" themes, which are all animated), for a total of 20
combinations.
.
Note: Please read /usr/share/doc/crystalcursors/README.Debian to learn how to
change the default cursor theme system-wide.
/tags/1.1.1-14/debian/docs
1,0 → 0,0
README
CREDITS
/tags/1.1.1-14/debian/extra_symlinks
0,0 → 1,15
center_ptr up_arrow
watch wait
xterm ibeam
fleur size_all
hand pointing_hand
v_double_arrow size_ver
h_double_arrow size_hor
fd_double_arrow size_bdiag
bd_double_arrow size_fdiag
question_arrow whats_this
sb_h_double_arrow split_h
sb_v_double_arrow split_v
crossed_circle forbidden
fd_double_arrow ur_angle
bd_double_arrow ul_angle
/tags/1.1.1-14/debian/patches/01-correct-upstreams-makefile.patch
File deleted
/tags/1.1.1-14/debian/patches/grey_watch.patch
0,0 → 1,11
--- a/gray_src/watch/watch.conf
+++ b/gray_src/watch/watch.conf
@@ -9,7 +9,7 @@
32 13 13 watch/watch9.png 60
32 13 13 watch/watch10.png 60
32 13 13 watch/watch11.png 60
-32 13 13 watch/watch12.png 60
+32 13 13 ../debian/watch12.png 60
32 13 13 watch/watch13.png 60
32 13 13 watch/watch14.png 60
32 13 13 watch/watch15.png 60
/tags/1.1.1-14/debian/patches/series
1,2 → 1,2
01-correct-upstreams-makefile.patch
03-bashism.patch
grey_watch.patch
/tags/1.1.1-14/debian/postinst
1,5 → 1,5
#! /bin/sh
# postinst script for #PACKAGE#
# postinst script for crystalcursors
#
# see: dh_installdeb(1)
 
17,21 → 17,24
# the debian-policy package
#
 
PRIORITY=50
PRIORITY1=50
PRIORITY2=49
TARGET=/usr/share/icons/default/index.theme
ICONDIR=/etc/X11/cursors
DEFAULT=crystalblue.theme
 
case "$1" in
configure)
configure|abort-remove|abort-deconfigure|abort-upgrade)
for theme in `find $ICONDIR -regex '.*crystal\(blue\|gray\|green\|white\).*theme$'`; do
if [ "$theme" = "$ICONDIR/$DEFAULT" ]; then
PRIORITY=$PRIORITY1
else
PRIORITY=$PRIORITY2
fi
update-alternatives --install $TARGET x-cursor-theme $theme $PRIORITY
done
;;
 
abort-upgrade|abort-remove|abort-deconfigure)
 
;;
 
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
44,5 → 47,3
#DEBHELPER#
 
exit 0
 
 
/tags/1.1.1-14/debian/prerm
19,12 → 19,12
ICONDIR=/etc/X11/cursors
 
case "$1" in
remove|upgrade|deconfigure)
remove|deconfigure)
for theme in `find $ICONDIR -regex '.*crystal\(blue\|gray\|green\|white\).*theme$'`; do
update-alternatives --remove x-cursor-theme $theme
done
;;
failed-upgrade)
upgrade|failed-upgrade)
;;
*)
echo "prerm called with unknown argument \`$1'" >&2
/tags/1.1.1-14/debian/rules
9,30 → 9,14
SHAREDIR=usr/share/crystalcursors
WRAPPERDIR=etc/X11/cursors
 
CFLAGS = -Wall -g
build: build-indep
 
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif
 
configure: configure-stamp
configure-stamp:
build-arch:
build-indep: build-stamp
build-stamp:
dh_testdir
# Add here commands to configure the package.
 
touch configure-stamp
 
 
build: build-stamp
 
build-stamp: configure-stamp
dh_testdir
 
# Add here commands to compile the package.
$(MAKE)
#docbook-to-man debian/crystalcursors.sgml > crystalcursors.1
 
touch build-stamp
 
41,12 → 25,11
dh_testroot
rm -f build-stamp configure-stamp
 
# Add here commands to clean up after the build process.
[ ! Makefile ] || $(MAKE) clean
$(MAKE) clean
 
dh_clean
 
install: build
install: build-indep
dh_testdir
dh_testroot
dh_prep
53,7 → 36,7
dh_installdirs
 
# Add here commands to install the package into debian/crystalcursors.
$(MAKE) install DESTDIR=$(CURDIR)/debian/crystalcursors/$(ICONDIR)
$(MAKE) install PREFIX=$(CURDIR)/debian/crystalcursors/$(ICONDIR)
find $(CURDIR)/debian/crystalcursors/$(ICONDIR) -type f -exec chmod 644 {} \;
find $(CURDIR)/debian/crystalcursors/$(ICONDIR) -type d -exec chmod 755 {} \;
 
60,6 → 43,9
# Don't overwrite system's default xcursor, just provide the directory
rm -r $(CURDIR)/debian/crystalcursors/$(ICONDIR)/default/*
 
# There are no left-hand "cross" cursors, so don't symlink to them:
rm $(CURDIR)/debian/crystalcursors/$(ICONDIR)/crystal*left/cursors/plus
 
# Find *.theme and copy 'em to wrapper-location (see #365072)
# We have to change the Inherits line in (only) in the wrapper *.themes:
# 1) find .themes
67,7 → 53,8
# 3) write new Inherits-line with name of the directory in /usr/share/icons
# -- I know this is tricky, but I have not yet found a more elegant way to make
# crystalcursors work with debian's update-alternative
OLDDIR=`pwd` ;\
# In addition, add new symlinks that Qt 4 looks for
 
cd $(CURDIR)/debian/crystalcursors/$(ICONDIR); \
for theme in crystal*; do \
grep -v Inherits $(CURDIR)/debian/crystalcursors/$(ICONDIR)/$${theme}/index.theme > tmp ; \
74,34 → 61,19
echo "Inherits = $${theme}" >> tmp ; \
install -m 644 tmp $(CURDIR)/debian/crystalcursors/$(WRAPPERDIR)/$${theme}.theme; \
rm tmp; \
done ; \
cd $${OLDDIR}
while read target link; do \
if [ -e $$theme/cursors/$$target ]; then ln -sf $$target $$theme/cursors/$$link; fi; \
done < $(CURDIR)/debian/extra_symlinks;\
done
 
# Build architecture-independent files here.
binary-indep: build install
binary-indep: build-indep 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_installinit
# dh_installcron
# dh_installinfo
# dh_installman
# dh_link
# dh_strip
dh_compress
dh_fixperms
# dh_perl
# dh_python
# dh_makeshlibs
dh_installdeb
dh_shlibdeps
dh_gencontrol
108,8 → 80,8
dh_md5sums
dh_builddeb
 
# Build architecture-dependent files here.
binary-arch: build install
binary-arch:
# No arch-dependent packages
 
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
binary: binary-indep
.PHONY: build-indep build clean binary-indep binary-arch binary install configure
/tags/1.1.1-14/debian/source/include-binaries
0,0 → 1,0
debian/watch12.png
/tags/1.1.1-14/debian/watch12.png
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property