Thanks for making a release.

It builds ok for me on NetBSD/i386 5.2_STABLE, but the install does
something odd.  I get:

$ ls -l work/.destdir/usr/pkg/share/gnome/help/viking/C/*

-rw-r--r--  1 gdt  users    3902 Feb 11 20:03 
work/.destdir/usr/pkg/share/gnome/help/viking/C/legal.xml
-rw-r--r--  1 gdt  users  102280 Feb 11 20:03 
work/.destdir/usr/pkg/share/gnome/help/viking/C/viking.xml

work/.destdir/usr/pkg/share/gnome/help/viking/C/figures:
total 0
lrwxr-xr-x  1 gdt  users  21 Feb 11 20:03 *.jpg -> ../../C/figures/*.jpg
lrwxr-xr-x  1 gdt  users  21 Feb 11 20:03 *.png -> ../../C/figures/*.png

The problem seems to be that the *.jpg and *.png in help/Makefile.am
aren't getting expanded, so the files themselves aren't installed.
But then there was symlink with name *.jpg (an actual * in the filename).

With the following patch, I created a distfile and then got installed
figures.

commit 1f2516923e1d8cf4c8d63250a2c665cdb3df3b32
Author: Greg Troxel <g...@lexort.com>
Date:   Mon Feb 11 20:17:53 2013 -0500

    help/Makefile.am: explicitly list figures.

diff --git a/help/Makefile.am b/help/Makefile.am
index 993e671..39ef073 100644
--- a/help/Makefile.am
+++ b/help/Makefile.am
@@ -14,5 +14,26 @@ dist-hook: get-icons doc-dist-hook
 DOC_MODULE = viking
 DOC_ENTITIES = legal.xml
 DOC_INCLUDES =
-DOC_FIGURES = figures/*.png figures/*.jpg
+DOC_FIGURES = \
+    figures/addtr_18.png \
+    figures/addwp_18.png \
+    figures/demdl_18.png \
+    figures/edtr_18.png \
+    figures/edwp_18.png \
+    figures/geomove_18.png \
+    figures/geozoom_18.png \
+    figures/map_tile_info_dialog.png \
+    figures/mapdl_18.png \
+    figures/mover_22.png \
+    figures/properties_degree.png \
+    figures/properties_units.png \
+    figures/route_finder_18.png \
+    figures/ruler_18.png \
+    figures/select_18.png \
+    figures/showpic_18.png \
+    figures/trw_statusbar.png \
+    figures/vik_new_route_18.png \
+    figures/zoom_18.png \
+    figures/zoom_status_popup.png \
+    figures/Viking-OSM-CycleMap-ManyTracks.jpg
 DOC_LINGUAS =

Attachment: pgpDGJAH3RtlM.pgp
Description: PGP signature

------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
_______________________________________________
Viking-devel mailing list
Viking-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/viking-devel
Viking home page: http://viking.sf.net/

Reply via email to