Rebuilt xman package because a problem remains for /etc/X11/app-defaults/Xman, as Windows is not uppercase aware xman.exe gets installed as etc/X11/app-defaults/Xman.exe instead of Xman-*.ad (you can verify in the xman-1.0.3-2 tarball) installed as etc/X11/app-defaults/Xman => maybe the automake appdefault_DATA rule has to be changed?
I changed Makefile.am to deal with this case (ugly but working) and created xman-1.0.3-3.src.patch --- origsrc/xman-1.0.3/Makefile.am 2007-08-10 15:14:12.000000000 +0100 +++ src/xman-1.0.3/Makefile.am 2008-11-13 15:19:58.623594400 +0000 @@ -64,14 +64,18 @@ appdefaultdir = @appdefaultdir@ if XAW_USE_XPRINT -Xman: Xman-xprint.ad - ln -s $(top_srcdir)/Xman-xprint.ad Xman +Xman.ad: Xman-xprint.ad + ln -s $(top_srcdir)/Xman-xprint.ad Xman.ad else -Xman: Xman-noxprint.ad - ln -s $(top_srcdir)/Xman-noxprint.ad Xman +Xman.ad: Xman-noxprint.ad + ln -s $(top_srcdir)/Xman-noxprint.ad Xman.ad endif -appdefault_DATA = Xman +appdefault_DATA = Xman.ad + +install-data-hook: + cd $(DESTDIR)$(appdefaultdir) && \ + mv -f Xman.ad Xman EXTRA_DIST = Xman-xprint.ad Xman-noxprint.ad BTW there is an error in src/xman-1.0.3/CYGWIN-PATCHES/README: dupplicate "version 1.0.3-1" sentence (and no version 1.0.3-2). Updated and complete cygport source package is available here: http://rpmfarm.free.fr/src/xman-1.0.3-3-src.tar.bz2 -- Eric Lassauge <[EMAIL PROTECTED]> http://lassauge.free.fr/cygwin/ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Cygwin-ports-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/cygwin-ports-general
