.gitignore | 17 +++++++++++++++++ COPYING | 27 +++++++++++++++++++-------- ChangeLog | 34 ---------------------------------- Makefile.am | 11 ++++++++++- README | 27 +++++++++++++++++++++++++++ configure.ac | 18 ++++++++++-------- genmakefile.sh | 3 +-- handhelds/Makefile.am | 4 ++-- redglass/Makefile.am | 4 ++-- redglass/Makefile.cfg | 2 +- redglass/Makefile.cursors | 9 ++++++--- whiteglass/Makefile.am | 2 +- 12 files changed, 96 insertions(+), 62 deletions(-)
New commits: commit a0209fb0eb221bc72af78f238ad69372d3b2a8d2 Author: Alan Coopersmith <[email protected]> Date: Thu Sep 24 17:12:31 2009 -0700 xcursor-themes 1.0.2 Signed-off-by: Alan Coopersmith <[email protected]> diff --git a/configure.ac b/configure.ac index a999297..1c5e382 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.57]) -AC_INIT(xcursor-themes, [1.0.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xcursor-themes) +AC_INIT(xcursor-themes, [1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xcursor-themes) AM_INIT_AUTOMAKE([dist-bzip2]) AM_MAINTAINER_MODE commit f682dfcb3c5ef0051c96f4116d85fd54999b8fbc Author: Alan Coopersmith <[email protected]> Date: Thu Sep 24 17:16:00 2009 -0700 Fill in COPYING and README Signed-off-by: Alan Coopersmith <[email protected]> diff --git a/COPYING b/COPYING index 7f33cbf..c513618 100644 --- a/COPYING +++ b/COPYING @@ -1,12 +1,23 @@ -This is a stub file. This package has not yet had its complete licensing -information compiled. Please see the individual source files for details on -your rights to use and modify this software. +Copyright (C) 1994-2003 The XFree86 Project, Inc. All Rights Reserved. -Please submit updated COPYING files to the Xorg bugzilla: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is fur- +nished to do so, subject to the following conditions: -https://bugs.freedesktop.org/enter_bug.cgi?product=xorg +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -All licensing questions regarding this software should be directed at the -Xorg mailing list: +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- +NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- +NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -http://lists.freedesktop.org/mailman/listinfo/xorg +Except as contained in this notice, the name of the XFree86 Project shall not +be used in advertising or otherwise to promote the sale, use or other deal- +ings in this Software without prior written authorization from the XFree86 +Project. diff --git a/README b/README new file mode 100644 index 0000000..1ea70b2 --- /dev/null +++ b/README @@ -0,0 +1,27 @@ +This is a default set of cursor themes for use with libXcursor, +originally created for the XFree86 Project, and now shipped as part +of the X.Org software distribution. + +All questions regarding this software should be directed at the +Xorg mailing list: + + http://lists.freedesktop.org/mailman/listinfo/xorg + +Please submit bug reports to the Xorg bugzilla: + + https://bugs.freedesktop.org/enter_bug.cgi?product=xorg + +The master development code repository can be found at: + + git://anongit.freedesktop.org/git/xorg/data/cursors + + http://cgit.freedesktop.org/xorg/data/cursors + +For patch submission instructions, see: + + http://www.x.org/wiki/Development/Documentation/SubmittingPatches + +For more information on the git code manager, see: + + http://wiki.x.org/wiki/GitPage + commit 5bc5c8c768c80cf7ca8c09f6a1a0f2f4f5dfa0ae Author: Alan Coopersmith <[email protected]> Date: Thu Sep 24 17:10:10 2009 -0700 Remove unnecessary configure steps, since no C code is compiled here Signed-off-by: Alan Coopersmith <[email protected]> diff --git a/configure.ac b/configure.ac index 0d9caa6..a999297 100644 --- a/configure.ac +++ b/configure.ac @@ -7,13 +7,8 @@ AM_MAINTAINER_MODE m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) XORG_MACROS_VERSION(1.2) -AM_CONFIG_HEADER(config.h) - -AC_PROG_CC AC_PROG_INSTALL -AC_TYPE_SIGNAL - AC_PATH_PROG(XCURSORGEN, xcursorgen, no) if test "x$XCURSORGEN" = xno; then AC_MSG_ERROR([xcursorgen is required to build these cursors.]) commit c734aa47795aa1bdbcbd01872a8b0d1a99cd4dd4 Author: Paulo Cesar Pereira de Andrade <[email protected]> Date: Tue Jan 27 15:37:07 2009 -0200 Correct make distcheck. diff --git a/.gitignore b/.gitignore index c7e3950..15586ec 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,17 @@ *~ +ChangeLog +Makefile Makefile.in aclocal.m4 autom4te.cache +config.h +config.h.in +config.log +config.cursor +config.status configure install-sh missing +stamp-h1 +tags +xcursor-themes-*.tar.* diff --git a/Makefile.am b/Makefile.am index c9c3c90..7ef35b1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,5 @@ +DISTCHECK_CONFIGURE_FLAGS = --with-cursordir=\$${datadir}/icons + SUBDIRS = handhelds redglass whiteglass EXTRA_DIST = genmakefile.sh ChangeLog @@ -9,7 +11,4 @@ dist-hook: ChangeLog .PHONY: ChangeLog ChangeLog: - (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) - - - + $(CHANGELOG_CMD) diff --git a/configure.ac b/configure.ac index 7b6bed5..0d9caa6 100644 --- a/configure.ac +++ b/configure.ac @@ -1,10 +1,12 @@ -# $XdotOrg: $ - AC_PREREQ([2.57]) AC_INIT(xcursor-themes, [1.0.1], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xcursor-themes) AM_INIT_AUTOMAKE([dist-bzip2]) AM_MAINTAINER_MODE +# Require xorg-macros: XORG_CWARNFLAGS, XORG_CHANGELOG +m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.2 or later before running autoconf/autogen])]) +XORG_MACROS_VERSION(1.2) + AM_CONFIG_HEADER(config.h) AC_PROG_CC @@ -19,7 +21,11 @@ fi AC_SUBST([XCURSORGEN]) PKG_CHECK_MODULES(ICONDEFS, xcursor) -cursordir=$(pkg-config --variable=icondir xcursor) +pkg_cursordir=$(pkg-config --variable=icondir xcursor) +AC_ARG_WITH(cursordir, + AC_HELP_STRING([--with-cursordir=<pathname>], + [specify directory for cursor files (default is autodetected)]), + [cursordir="$withval"], [cursordir="${pkg_cursordir}"]) AC_SUBST([cursordir]) AM_CONDITIONAL(WHITEGLASS, true) @@ -27,6 +33,7 @@ AM_CONDITIONAL(REDGLASS, true) AM_CONDITIONAL(HANDHELDS, true) XORG_RELEASE_VERSION +XORG_CHANGELOG AC_OUTPUT([ Makefile commit 423873fb23e4a12a9745d13d8967956db7e5b28e Author: James Cloos <[email protected]> Date: Thu Dec 6 15:51:12 2007 -0500 Add missing PHONY line for automatic ChangeLog generation diff --git a/Makefile.am b/Makefile.am index bc4ce7c..c9c3c90 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,6 +6,8 @@ AUTOMAKE_OPTIONS = foreign dist-hook: ChangeLog +.PHONY: ChangeLog + ChangeLog: (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) commit 3d4f1cbe3f54f0acbecef5c45d8082b631b67ae4 Author: Alan Coopersmith <[email protected]> Date: Tue Apr 10 19:22:15 2007 -0700 Add a .gitignore file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c7e3950 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*~ +Makefile.in +aclocal.m4 +autom4te.cache +configure +install-sh +missing commit 31f21b77706a614cf1f47ee25f42848cfa5198cb Author: Alan Coopersmith <[email protected]> Date: Tue Apr 10 19:14:13 2007 -0700 Replace static ChangeLog with dist-hook to generate from git log diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 836a23b..0000000 --- a/ChangeLog +++ /dev/null @@ -1,34 +0,0 @@ -2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version for X11R7 release. - -2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for final X11R7 release candidate. - -2005-12-09 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Get the cursor install dir from xcursor.pc. - -2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * configure.ac: - Update package version number for RC1 release. - -2005-10-07 Kevin E. Martin <kem-at-freedesktop-dot-org> - - * genmakefile.sh: - Add .xcf files to dist - - * redglass/Makefile.cfg: - * whiteglass/Makefile.cfg: - * redglass/Makefile.cursors: - * whiteglass/Makefile.cursors: - Add missing files to DIST and regenerate */Makefile.cursors - -2005-07-11 Daniel Stone <[email protected]> - - * Initial autotooling. diff --git a/Makefile.am b/Makefile.am index a4d0cdd..bc4ce7c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,13 @@ SUBDIRS = handhelds redglass whiteglass -EXTRA_DIST = genmakefile.sh +EXTRA_DIST = genmakefile.sh ChangeLog AUTOMAKE_OPTIONS = foreign + +dist-hook: ChangeLog + +ChangeLog: + (GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) + + + commit 45a939aa4c555133dc11780be1ea66887e8667ae Author: Marcin 'Qrczak' Kowalczyk <[email protected]> Date: Tue Apr 10 19:06:38 2007 -0700 Bug #10492: Redglass xcursor theme doesn't package the "watch" cursor X.Org Bugzilla #10492 <http://bugs.freedesktop.org/show_bug.cgi?id=10492> Patch #9402 <http://bugs.freedesktop.org/attachment.cgi?id=9402> diff --git a/genmakefile.sh b/genmakefile.sh index 9bc5f71..34d0b8b 100755 --- a/genmakefile.sh +++ b/genmakefile.sh @@ -13,8 +13,7 @@ echo for i in $CURSORS; do echo -n "${i}:" - for j in 16 24 32 48 64; do - png="${i}-${j}.png" + for png in $(cut -d" " -f4 ${i}.cfg); do EXTRA_DIST="${EXTRA_DIST} ${png}" echo -n " \$(srcdir)/${png}" done diff --git a/handhelds/Makefile.am b/handhelds/Makefile.am index 4f78540..8cf7de1 100644 --- a/handhelds/Makefile.am +++ b/handhelds/Makefile.am @@ -2,8 +2,8 @@ cursordir = @cursordir@/handhelds/cursors all: Makefile.cursors -Makefile.cursors: - $(top_srcdir)/genmakefile.sh $(srcdir)/Makefile.cfg +Makefile.cursors: $(srcdir)/Makefile.cfg + $(top_srcdir)/genmakefile.sh $(srcdir)/Makefile.cfg > $@ if HANDHELDS include Makefile.cursors diff --git a/redglass/Makefile.am b/redglass/Makefile.am index 3f2b471..6c44681 100644 --- a/redglass/Makefile.am +++ b/redglass/Makefile.am @@ -2,8 +2,8 @@ cursordir = @cursordir@/redglass/cursors all: Makefile.cursors -Makefile.cursors: - $(top_srcdir)/genmakefile.sh $(srcdir)/Makefile.cfg +Makefile.cursors: $(srcdir)/Makefile.cfg + $(top_srcdir)/genmakefile.sh $(srcdir)/Makefile.cfg > $@ if REDGLASS include Makefile.cursors diff --git a/redglass/Makefile.cfg b/redglass/Makefile.cfg index 95c9515..8021b5f 100644 --- a/redglass/Makefile.cfg +++ b/redglass/Makefile.cfg @@ -1,6 +1,6 @@ # this is not a makefile, but a shell fragment; quote accordingly. -CURSORS="X_cursor based_arrow_down based_arrow_up bottom_left_corner bottom_right_corner bottom_side bottom_tee center_ptr circle cross dot dotbox double_arrow draped_box fleur gumby hand2 left_ptr left_ptr_watch left_side left_tee ll_angle pencil right_ptr right_side right_tee sb_h_double_arrow sb_right_arrow sb_up_arrow sb_v_double_arrow shuttle top_left_corner top_right_corner top_side top_tee xterm" +CURSORS="X_cursor based_arrow_down based_arrow_up bottom_left_corner bottom_right_corner bottom_side bottom_tee center_ptr circle cross dot dotbox double_arrow draped_box fleur gumby hand2 left_ptr left_ptr_watch left_side left_tee ll_angle pencil right_ptr right_side right_tee sb_h_double_arrow sb_right_arrow sb_up_arrow sb_v_double_arrow shuttle top_left_corner top_right_corner top_side top_tee watch xterm" #CursorLinkTarget(arrow,right_ptr) diff --git a/redglass/Makefile.cursors b/redglass/Makefile.cursors index 08e71fb..7e9a85c 100644 --- a/redglass/Makefile.cursors +++ b/redglass/Makefile.cursors @@ -1,6 +1,6 @@ # this is a generated file -- do not edit. -CURSORFILES = X_cursor based_arrow_down based_arrow_up bottom_left_corner bottom_right_corner bottom_side bottom_tee center_ptr circle cross dot dotbox double_arrow draped_box fleur gumby hand2 left_ptr left_ptr_watch left_side left_tee ll_angle pencil right_ptr right_side right_tee sb_h_double_arrow sb_right_arrow sb_up_arrow sb_v_double_arrow shuttle top_left_corner top_right_corner top_side top_tee xterm +CURSORFILES = X_cursor based_arrow_down based_arrow_up bottom_left_corner bottom_right_corner bottom_side bottom_tee center_ptr circle cross dot dotbox double_arrow draped_box fleur gumby hand2 left_ptr left_ptr_watch left_side left_tee ll_angle pencil right_ptr right_side right_tee sb_h_double_arrow sb_right_arrow sb_up_arrow sb_v_double_arrow shuttle top_left_corner top_right_corner top_side top_tee watch xterm CLEANFILES = $(CURSORFILES) cursor_DATA = $(CURSORFILES) @@ -58,7 +58,7 @@ hand2: $(srcdir)/hand2-16.png $(srcdir)/hand2-24.png $(srcdir)/hand2-32.png $(sr left_ptr: $(srcdir)/left_ptr-16.png $(srcdir)/left_ptr-24.png $(srcdir)/left_ptr-32.png $(srcdir)/left_ptr-48.png $(srcdir)/left_ptr-64.png $(XCURSORGEN) -p $(srcdir) $(srcdir)/left_ptr.cfg left_ptr -left_ptr_watch: $(srcdir)/left_ptr_watch-16.png $(srcdir)/left_ptr_watch-24.png $(srcdir)/left_ptr_watch-32.png $(srcdir)/left_ptr_watch-48.png $(srcdir)/left_ptr_watch-64.png +left_ptr_watch: $(srcdir)/left_ptr_watch-16.png $(srcdir)/left_ptr-16.png $(srcdir)/left_ptr_watch-24.png $(srcdir)/left_ptr-24.png $(srcdir)/left_ptr_watch-32.png $(srcdir)/left_ptr-32.png $(srcdir)/left_ptr_watch-48.png $(srcdir)/left_ptr-48.png $(srcdir)/left_ptr_watch-64.png $(srcdir)/left_ptr-64.png $(XCURSORGEN) -p $(srcdir) $(srcdir)/left_ptr_watch.cfg left_ptr_watch left_side: $(srcdir)/left_side-16.png $(srcdir)/left_side-24.png $(srcdir)/left_side-32.png $(srcdir)/left_side-48.png $(srcdir)/left_side-64.png @@ -109,7 +109,10 @@ top_side: $(srcdir)/top_side-16.png $(srcdir)/top_side-24.png $(srcdir)/top_side top_tee: $(srcdir)/top_tee-16.png $(srcdir)/top_tee-24.png $(srcdir)/top_tee-32.png $(srcdir)/top_tee-48.png $(srcdir)/top_tee-64.png $(XCURSORGEN) -p $(srcdir) $(srcdir)/top_tee.cfg top_tee +watch: $(srcdir)/hourglass-full-16.png $(srcdir)/hourglass-75-16.png $(srcdir)/hourglass-50-16.png $(srcdir)/hourglass-25-16.png $(srcdir)/hourglass-empty-16.png $(srcdir)/hourglass-45-16.png $(srcdir)/hourglass-90-16.png $(srcdir)/hourglass-135-16.png $(srcdir)/hourglass-full-24.png $(srcdir)/hourglass-75-24.png $(srcdir)/hourglass-50-24.png $(srcdir)/hourglass-25-24.png $(srcdir)/hourglass-empty-24.png $(srcdir)/hourglass-45-24.png $(srcdir)/hourglass-90-24.png $(srcdir)/hourglass-135-24.png $(srcdir)/hourglass-full-32.png $(srcdir)/hourglass-75-32.png $(srcdir)/hourglass-50-32.png $(srcdir)/hourglass-25-32.png $(srcdir)/hourglass-empty-32.png $(srcdir)/hourglass-45-32.png $(srcdir)/hourglass-90-32.png $(srcdir)/hourglass-135-32.png $(srcdir)/hourglass-full-48.png $(srcdir)/hourglass-75-48.png $(srcdir)/hourglass-50-48.png $(srcdir)/hourglass-25-48.png $(srcdir)/hourglass-empty-48.png $(srcdir)/hourglass-45-48.png $(srcdir)/hourglass-90-48.png $(srcdir)/hourglass-135-48.pn g $(srcdir)/hourglass-full-64.png $(srcdir)/hourglass-75-64.png $(srcdir)/hourglass-50-64.png $(srcdir)/hourglass-25-64.png $(srcdir)/hourglass-empty-64.png $(srcdir)/hourglass-45-64.png $(srcdir)/hourglass-90-64.png $(srcdir)/hourglass-135-64.png + $(XCURSORGEN) -p $(srcdir) $(srcdir)/watch.cfg watch + xterm: $(srcdir)/xterm-16.png $(srcdir)/xterm-24.png $(srcdir)/xterm-32.png $(srcdir)/xterm-48.png $(srcdir)/xterm-64.png $(XCURSORGEN) -p $(srcdir) $(srcdir)/xterm.cfg xterm -EXTRA_DIST = X_cursor-16.png X_cursor-24.png X_cursor-32.png X_cursor-48.png X_cursor-64.png X_cursor.cfg X_cursor.xcf based_arrow_down-16.png based_arrow_down-24.png based_arrow_down-32.png based_arrow_down-48.png based_arrow_down-64.png based_arrow_down.cfg based_arrow_down.xcf based_arrow_up-16.png based_arrow_up-24.png based_arrow_up-32.png based_arrow_up-48.png based_arrow_up-64.png based_arrow_up.cfg based_arrow_up.xcf bottom_left_corner-16.png bottom_left_corner-24.png bottom_left_corner-32.png bottom_left_corner-48.png bottom_left_corner-64.png bottom_left_corner.cfg bottom_left_corner.xcf bottom_right_corner-16.png bottom_right_corner-24.png bottom_right_corner-32.png bottom_right_corner-48.png bottom_right_corner-64.png bottom_right_corner.cfg bottom_right_corner.xcf bottom_side-16.png bottom_side-24.png bottom_side-32.png bottom_side-48.png bottom_side-64.png bottom_side.cfg bottom_side.xcf bottom_tee-16.png bottom_tee-24.png bottom_tee-32.png bottom_tee-48.png bo ttom_tee-64.png bottom_tee.cfg bottom_tee.xcf center_ptr-16.png center_ptr-24.png center_ptr-32.png center_ptr-48.png center_ptr-64.png center_ptr.cfg center_ptr.xcf circle-16.png circle-24.png circle-32.png circle-48.png circle-64.png circle.cfg circle.xcf cross-16.png cross-24.png cross-32.png cross-48.png cross-64.png cross.cfg cross.xcf dot-16.png dot-24.png dot-32.png dot-48.png dot-64.png dot.cfg dot.xcf dotbox-16.png dotbox-24.png dotbox-32.png dotbox-48.png dotbox-64.png dotbox.cfg dotbox.xcf double_arrow-16.png double_arrow-24.png double_arrow-32.png double_arrow-48.png double_arrow-64.png double_arrow.cfg double_arrow.xcf draped_box-16.png draped_box-24.png draped_box-32.png draped_box-48.png draped_box-64.png draped_box.cfg draped_box.xcf fleur-16.png fleur-24.png fleur-32.png fleur-48.png fleur-64.png fleur.cfg fleur.xcf gumby-16.png gumby-24.png gumby-32.png gumby-48.png gumby-64.png gumby.cfg gumby.xcf hand2-16.png hand2-24.png hand2-32.png hand2-48.png hand2-6 4.png hand2.cfg hand2.xcf left_ptr-16.png left_ptr-24.png left_ptr-32.png left_ptr-48.png left_ptr-64.png left_ptr.cfg left_ptr.xcf left_ptr_watch-16.png left_ptr_watch-24.png left_ptr_watch-32.png left_ptr_watch-48.png left_ptr_watch-64.png left_ptr_watch.cfg left_ptr_watch.xcf left_side-16.png left_side-24.png left_side-32.png left_side-48.png left_side-64.png left_side.cfg left_side.xcf left_tee-16.png left_tee-24.png left_tee-32.png left_tee-48.png left_tee-64.png left_tee.cfg left_tee.xcf ll_angle-16.png ll_angle-24.png ll_angle-32.png ll_angle-48.png ll_angle-64.png ll_angle.cfg ll_angle.xcf pencil-16.png pencil-24.png pencil-32.png pencil-48.png pencil-64.png pencil.cfg pencil.xcf right_ptr-16.png right_ptr-24.png right_ptr-32.png right_ptr-48.png right_ptr-64.png right_ptr.cfg right_ptr.xcf right_side-16.png right_side-24.png right_side-32.png right_side-48.png right_side-64.png right_side.cfg right_side.xcf right_tee-16.png right_tee-24.png right_tee-32.png right_te e-48.png right_tee-64.png right_tee.cfg right_tee.xcf sb_h_double_arrow-16.png sb_h_double_arrow-24.png sb_h_double_arrow-32.png sb_h_double_arrow-48.png sb_h_double_arrow-64.png sb_h_double_arrow.cfg sb_h_double_arrow.xcf sb_right_arrow-16.png sb_right_arrow-24.png sb_right_arrow-32.png sb_right_arrow-48.png sb_right_arrow-64.png sb_right_arrow.cfg sb_right_arrow.xcf sb_up_arrow-16.png sb_up_arrow-24.png sb_up_arrow-32.png sb_up_arrow-48.png sb_up_arrow-64.png sb_up_arrow.cfg sb_up_arrow.xcf sb_v_double_arrow-16.png sb_v_double_arrow-24.png sb_v_double_arrow-32.png sb_v_double_arrow-48.png sb_v_double_arrow-64.png sb_v_double_arrow.cfg sb_v_double_arrow.xcf shuttle-16.png shuttle-24.png shuttle-32.png shuttle-48.png shuttle-64.png shuttle.cfg shuttle.xcf top_left_corner-16.png top_left_corner-24.png top_left_corner-32.png top_left_corner-48.png top_left_corner-64.png top_left_corner.cfg top_left_corner.xcf top_right_corner-16.png top_right_corner-24.png top_right_corner-32. png top_right_corner-48.png top_right_corner-64.png top_right_corner.cfg top_right_corner.xcf top_side-16.png top_side-24.png top_side-32.png top_side-48.png top_side-64.png top_side.cfg top_side.xcf top_tee-16.png top_tee-24.png top_tee-32.png top_tee-48.png top_tee-64.png top_tee.cfg top_tee.xcf xterm-16.png xterm-24.png xterm-32.png xterm-48.png xterm-64.png xterm.cfg xterm.xcf Makefile.cfg Makefile.cursors basic_arrow.xcf gumby-128.png gumby.svg watch-16.png watch-24.png watch-32.png watch-48.png watch-64.png watch.cfg watch.xcf hourglass-135-16.png hourglass-135-24.png hourglass-135-32.png hourglass-135-48.png hourglass-135-64.png hourglass-25-16.png hourglass-25-24.png hourglass-25-32.png hourglass-25-48.png hourglass-25-64.png hourglass-45-16.png hourglass-45-24.png hourglass-45-32.png hourglass-45-48.png hourglass-45-64.png hourglass-50-16.png hourglass-50-24.png hourglass-50-32.png hourglass-50-48.png hourglass-50-64.png hourglass-75-16.png hourglass-75-24.png hourg lass-75-32.png hourglass-75-48.png hourglass-75-64.png hourglass-90-16.png hourglass-90-24.png hourglass-90-32.png hourglass-90-48.png hourglass-90-64.png hourglass-empty-16.png hourglass-empty-24.png hourglass-empty-32.png hourglass-empty-48.png hourglass-empty-64.png hourglass-full-16.png hourglass-full-24.png hourglass-full-32.png hourglass-full-48.png hourglass-full-64.png hourglass-135.xcf hourglass-25.xcf hourglass-45.xcf hourglass-50.xcf hourglass-75.xcf hourglass-90.xcf hourglass-empty.xcf hourglass-full.xcf hourglass-plain.xcf +EXTRA_DIST = X_cursor-16.png X_cursor-24.png X_cursor-32.png X_cursor-48.png X_cursor-64.png X_cursor.cfg X_cursor.xcf based_arrow_down-16.png based_arrow_down-24.png based_arrow_down-32.png based_arrow_down-48.png based_arrow_down-64.png based_arrow_down.cfg based_arrow_down.xcf based_arrow_up-16.png based_arrow_up-24.png based_arrow_up-32.png based_arrow_up-48.png based_arrow_up-64.png based_arrow_up.cfg based_arrow_up.xcf bottom_left_corner-16.png bottom_left_corner-24.png bottom_left_corner-32.png bottom_left_corner-48.png bottom_left_corner-64.png bottom_left_corner.cfg bottom_left_corner.xcf bottom_right_corner-16.png bottom_right_corner-24.png bottom_right_corner-32.png bottom_right_corner-48.png bottom_right_corner-64.png bottom_right_corner.cfg bottom_right_corner.xcf bottom_side-16.png bottom_side-24.png bottom_side-32.png bottom_side-48.png bottom_side-64.png bottom_side.cfg bottom_side.xcf bottom_tee-16.png bottom_tee-24.png bottom_tee-32.png bottom_tee-48.png bo ttom_tee-64.png bottom_tee.cfg bottom_tee.xcf center_ptr-16.png center_ptr-24.png center_ptr-32.png center_ptr-48.png center_ptr-64.png center_ptr.cfg center_ptr.xcf circle-16.png circle-24.png circle-32.png circle-48.png circle-64.png circle.cfg circle.xcf cross-16.png cross-24.png cross-32.png cross-48.png cross-64.png cross.cfg cross.xcf dot-16.png dot-24.png dot-32.png dot-48.png dot-64.png dot.cfg dot.xcf dotbox-16.png dotbox-24.png dotbox-32.png dotbox-48.png dotbox-64.png dotbox.cfg dotbox.xcf double_arrow-16.png double_arrow-24.png double_arrow-32.png double_arrow-48.png double_arrow-64.png double_arrow.cfg double_arrow.xcf draped_box-16.png draped_box-24.png draped_box-32.png draped_box-48.png draped_box-64.png draped_box.cfg draped_box.xcf fleur-16.png fleur-24.png fleur-32.png fleur-48.png fleur-64.png fleur.cfg fleur.xcf gumby-16.png gumby-24.png gumby-32.png gumby-48.png gumby-64.png gumby.cfg gumby.xcf hand2-16.png hand2-24.png hand2-32.png hand2-48.png hand2-6 4.png hand2.cfg hand2.xcf left_ptr-16.png left_ptr-24.png left_ptr-32.png left_ptr-48.png left_ptr-64.png left_ptr.cfg left_ptr.xcf left_ptr_watch-16.png left_ptr-16.png left_ptr_watch-24.png left_ptr-24.png left_ptr_watch-32.png left_ptr-32.png left_ptr_watch-48.png left_ptr-48.png left_ptr_watch-64.png left_ptr-64.png left_ptr_watch.cfg left_ptr_watch.xcf left_side-16.png left_side-24.png left_side-32.png left_side-48.png left_side-64.png left_side.cfg left_side.xcf left_tee-16.png left_tee-24.png left_tee-32.png left_tee-48.png left_tee-64.png left_tee.cfg left_tee.xcf ll_angle-16.png ll_angle-24.png ll_angle-32.png ll_angle-48.png ll_angle-64.png ll_angle.cfg ll_angle.xcf pencil-16.png pencil-24.png pencil-32.png pencil-48.png pencil-64.png pencil.cfg pencil.xcf right_ptr-16.png right_ptr-24.png right_ptr-32.png right_ptr-48.png right_ptr-64.png right_ptr.cfg right_ptr.xcf right_side-16.png right_side-24.png right_side-32.png right_side-48.png right_side-64.png right_sid e.cfg right_side.xcf right_tee-16.png right_tee-24.png right_tee-32.png right_tee-48.png right_tee-64.png right_tee.cfg right_tee.xcf sb_h_double_arrow-16.png sb_h_double_arrow-24.png sb_h_double_arrow-32.png sb_h_double_arrow-48.png sb_h_double_arrow-64.png sb_h_double_arrow.cfg sb_h_double_arrow.xcf sb_right_arrow-16.png sb_right_arrow-24.png sb_right_arrow-32.png sb_right_arrow-48.png sb_right_arrow-64.png sb_right_arrow.cfg sb_right_arrow.xcf sb_up_arrow-16.png sb_up_arrow-24.png sb_up_arrow-32.png sb_up_arrow-48.png sb_up_arrow-64.png sb_up_arrow.cfg sb_up_arrow.xcf sb_v_double_arrow-16.png sb_v_double_arrow-24.png sb_v_double_arrow-32.png sb_v_double_arrow-48.png sb_v_double_arrow-64.png sb_v_double_arrow.cfg sb_v_double_arrow.xcf shuttle-16.png shuttle-24.png shuttle-32.png shuttle-48.png shuttle-64.png shuttle.cfg shuttle.xcf top_left_corner-16.png top_left_corner-24.png top_left_corner-32.png top_left_corner-48.png top_left_corner-64.png top_left_corner.cfg top_left _corner.xcf top_right_corner-16.png top_right_corner-24.png top_right_corner-32.png top_right_corner-48.png top_right_corner-64.png top_right_corner.cfg top_right_corner.xcf top_side-16.png top_side-24.png top_side-32.png top_side-48.png top_side-64.png top_side.cfg top_side.xcf top_tee-16.png top_tee-24.png top_tee-32.png top_tee-48.png top_tee-64.png top_tee.cfg top_tee.xcf hourglass-full-16.png hourglass-75-16.png hourglass-50-16.png hourglass-25-16.png hourglass-empty-16.png hourglass-45-16.png hourglass-90-16.png hourglass-135-16.png hourglass-full-24.png hourglass-75-24.png hourglass-50-24.png hourglass-25-24.png hourglass-empty-24.png hourglass-45-24.png hourglass-90-24.png hourglass-135-24.png hourglass-full-32.png hourglass-75-32.png hourglass-50-32.png hourglass-25-32.png hourglass-empty-32.png hourglass-45-32.png hourglass-90-32.png hourglass-135-32.png hourglass-full-48.png hourglass-75-48.png hourglass-50-48.png hourglass-25-48.png hourglass-empty-48.png hourgla ss-45-48.png hourglass-90-48.png hourglass-135-48.png hourglass-full-64.png hourglass-75-64.png hourglass-50-64.png hourglass-25-64.png hourglass-empty-64.png hourglass-45-64.png hourglass-90-64.png hourglass-135-64.png watch.cfg watch.xcf xterm-16.png xterm-24.png xterm-32.png xterm-48.png xterm-64.png xterm.cfg xterm.xcf Makefile.cfg Makefile.cursors basic_arrow.xcf gumby-128.png gumby.svg watch-16.png watch-24.png watch-32.png watch-48.png watch-64.png watch.cfg watch.xcf hourglass-135-16.png hourglass-135-24.png hourglass-135-32.png hourglass-135-48.png hourglass-135-64.png hourglass-25-16.png hourglass-25-24.png hourglass-25-32.png hourglass-25-48.png hourglass-25-64.png hourglass-45-16.png hourglass-45-24.png hourglass-45-32.png hourglass-45-48.png hourglass-45-64.png hourglass-50-16.png hourglass-50-24.png hourglass-50-32.png hourglass-50-48.png hourglass-50-64.png hourglass-75-16.png hourglass-75-24.png hourglass-75-32.png hourglass-75-48.png hourglass-75-64.png hour glass-90-16.png hourglass-90-24.png hourglass-90-32.png hourglass-90-48.png hourglass-90-64.png hourglass-empty-16.png hourglass-empty-24.png hourglass-empty-32.png hourglass-empty-48.png hourglass-empty-64.png hourglass-full-16.png hourglass-full-24.png hourglass-full-32.png hourglass-full-48.png hourglass-full-64.png hourglass-135.xcf hourglass-25.xcf hourglass-45.xcf hourglass-50.xcf hourglass-75.xcf hourglass-90.xcf hourglass-empty.xcf hourglass-full.xcf hourglass-plain.xcf diff --git a/whiteglass/Makefile.am b/whiteglass/Makefile.am index 86b7a88..ecd819f 100644 --- a/whiteglass/Makefile.am +++ b/whiteglass/Makefile.am @@ -2,7 +2,7 @@ cursordir = @cursordir@/whiteglass/cursors all: Makefile.cursors -Makefile.cursors: +Makefile.cursors: $(srcdir)/Makefile.cfg $(top_srcdir)/genmakefile.sh $(srcdir)/Makefile.cfg > $@ if WHITEGLASS -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

