pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/wml While here, added support for installation to ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4ad6b2a6126a
branches:  trunk
changeset: 533784:4ad6b2a6126a
user:      heinz <heinz%pkgsrc.org@localhost>
date:      Sat Sep 29 21:23:12 2007 +0000

description:
While here, added support for installation to DESTDIR.

diffstat:

 www/wml/Makefile         |    8 +-
 www/wml/distinfo         |    5 +-
 www/wml/patches/patch-ag |  206 +++++++++++++++++++++++++++++++++++++++++++++++
 www/wml/patches/patch-ah |   22 +++++
 www/wml/patches/patch-ai |   29 ++++++
 5 files changed, 266 insertions(+), 4 deletions(-)

diffs (truncated from 318 to 300 lines):

diff -r 1c9853516f52 -r 4ad6b2a6126a www/wml/Makefile
--- a/www/wml/Makefile  Sat Sep 29 21:21:27 2007 +0000
+++ b/www/wml/Makefile  Sat Sep 29 21:23:12 2007 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2007/01/07 09:14:16 rillig Exp $
+# $NetBSD: Makefile,v 1.27 2007/09/29 21:23:12 heinz Exp $
 #
 
 DISTNAME=      wml-2.0.9
@@ -10,6 +10,8 @@
 HOMEPAGE=      http://thewml.org/
 COMMENT=       Web Meta Language
 
+PKG_DESTDIR_SUPPORT=   user-destdir
+
 DEPENDS+=      p5-Bit-Vector>=5.2:../../devel/p5-Bit-Vector
 DEPENDS+=      p5-Image-Size>=2.6:../../graphics/p5-Image-Size
 DEPENDS+=      p5-Term-ReadKey>=2.11:../../devel/p5-Term-ReadKey
@@ -44,12 +46,12 @@
        done
 
 post-install:
-       cd ${PREFIX}/${PKGMANDIR}/cat1 ; \
+       cd ${DESTDIR:Q}${PREFIX}/${PKGMANDIR}/cat1 ; \
        for i in wml_aux_tidy wml_aux_txt2html wml_p4_gm4 ; \
        do \
            ${MV} $${i}.1 $${i}.0 ; \
        done
-       cd ${PREFIX}/${PKGMANDIR}/cat7 ; \
+       cd ${DESTDIR:Q}${PREFIX}/${PKGMANDIR}/cat7 ; \
        for i in wml_barebone wml_std_css1 wml_std_css2 wml_std_csspos \
            wml_std_html20 wml_std_html32 wml_std_html40 wml_std_html401 \
            wml_std_wai10 wml_std_xhtml10 ; \
diff -r 1c9853516f52 -r 4ad6b2a6126a www/wml/distinfo
--- a/www/wml/distinfo  Sat Sep 29 21:21:27 2007 +0000
+++ b/www/wml/distinfo  Sat Sep 29 21:23:12 2007 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.7 2007/09/29 21:21:27 heinz Exp $
+$NetBSD: distinfo,v 1.8 2007/09/29 21:23:12 heinz Exp $
 
 SHA1 (wml-2.0.9.tar.gz) = ce95ad9c55fd52e2028099d391858d88cffd5d9f
 RMD160 (wml-2.0.9.tar.gz) = bf14a4c09bdd850c5bad5f48f712717a13b13412
@@ -9,3 +9,6 @@
 SHA1 (patch-ad) = 2955f349aa737f1758493897d1989a0b96220268
 SHA1 (patch-ae) = d250ebf44fa67fb247b0248476226d31a0c0c0c8
 SHA1 (patch-af) = e7dcb9287066e962d3fedafcea4302c71fbf0dce
+SHA1 (patch-ag) = 642371cb755e993118f5cc6a16abeaa62ec8d163
+SHA1 (patch-ah) = 8195a53d0a514b9ed1bd8e9460c8c3e77a1d0d8d
+SHA1 (patch-ai) = c376fe6308bd9defb66719a53a0e0da3953e2016
diff -r 1c9853516f52 -r 4ad6b2a6126a www/wml/patches/patch-ag
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/wml/patches/patch-ag  Sat Sep 29 21:23:12 2007 +0000
@@ -0,0 +1,206 @@
+$NetBSD: patch-ag,v 1.1 2007/09/29 21:23:12 heinz Exp $
+
+ DESTDIR support
+
+--- Makefile.in.orig   2002-10-18 23:15:15.000000000 +0200
++++ Makefile.in
+@@ -98,118 +98,118 @@ install: install-dirs install-core insta
+ install-dirs:
+       @[ -f .build-ok ] || $(MAKE) all
+       @echo "___ INSTALL: prepare directory structure ___"
+-      $(MKDIR) $(bindir)
+-      $(MKDIR) $(libdir)
+-      $(MKDIR) $(libdir)/data
+-      $(MKDIR) $(libdir)/exec
+-      $(MKDIR) $(libdir)/include
+-      $(MKDIR) $(libdir)/perl
+-      $(MKDIR) $(mandir)
+-      $(MKDIR) $(mandir)/man1
+-      $(MKDIR) $(mandir)/man3
+-      $(MKDIR) $(mandir)/man7
+-      $(MKDIR) $(mandir)/$(catdir)1
+-      $(MKDIR) $(mandir)/$(catdir)7
++      $(MKDIR) $(DESTDIR)$(bindir)
++      $(MKDIR) $(DESTDIR)$(libdir)
++      $(MKDIR) $(DESTDIR)$(libdir)/data
++      $(MKDIR) $(DESTDIR)$(libdir)/exec
++      $(MKDIR) $(DESTDIR)$(libdir)/include
++      $(MKDIR) $(DESTDIR)$(libdir)/perl
++      $(MKDIR) $(DESTDIR)$(mandir)
++      $(MKDIR) $(DESTDIR)$(mandir)/man1
++      $(MKDIR) $(DESTDIR)$(mandir)/man3
++      $(MKDIR) $(DESTDIR)$(mandir)/man7
++      $(MKDIR) $(DESTDIR)$(mandir)/$(catdir)1
++      $(MKDIR) $(DESTDIR)$(mandir)/$(catdir)7
+ 
+ install-core:
+       @echo ""
+       @echo "___ INSTALL: core language programs and manpages ___"
+-      $(INSTALL_SCRIPT) wml_frontend/wmk.pl $(bindir)/wmk
+-      $(INSTALL_DATA) wml_frontend/wmk.1 $(mandir)/man1/wmk.1
+-      $(INSTALL_SCRIPT) wml_frontend/wml.pl $(bindir)/wml
+-      $(INSTALL_DATA) wml_frontend/wml.1 $(mandir)/man1/wml.1
+-      $(INSTALL_SCRIPT) wml_frontend/wmd.pl $(bindir)/wmd
+-      $(INSTALL_DATA) wml_frontend/wmd.1 $(mandir)/man1/wmd.1
+-      $(INSTALL_DATA) wml_frontend/wmd.txt $(libdir)/data/wmd.txt
++      $(INSTALL_SCRIPT) wml_frontend/wmk.pl $(DESTDIR)$(bindir)/wmk
++      $(INSTALL_DATA) wml_frontend/wmk.1 $(DESTDIR)$(mandir)/man1/wmk.1
++      $(INSTALL_SCRIPT) wml_frontend/wml.pl $(DESTDIR)$(bindir)/wml
++      $(INSTALL_DATA) wml_frontend/wml.1 $(DESTDIR)$(mandir)/man1/wml.1
++      $(INSTALL_SCRIPT) wml_frontend/wmd.pl $(DESTDIR)$(bindir)/wmd
++      $(INSTALL_DATA) wml_frontend/wmd.1 $(DESTDIR)$(mandir)/man1/wmd.1
++      $(INSTALL_DATA) wml_frontend/wmd.txt $(DESTDIR)$(libdir)/data/wmd.txt
+       if [ -f wml_frontend/wmd.map ]; then \
+-                $(INSTALL_DATA) wml_frontend/wmd.map $(libdir)/data/wmd.map; \
++                $(INSTALL_DATA) wml_frontend/wmd.map $(DESTDIR)$(libdir)/data/wmd.map; \
+       else :; fi
+-      $(INSTALL_DATA) wml_frontend/wmd_missing.1 $(mandir)/man1/wmd_missing.1
+-      $(INSTALL_SCRIPT) wml_frontend/wmb.pl $(bindir)/wmb
+-      $(INSTALL_DATA) wml_frontend/wmb.1 $(mandir)/man1/wmb.1
+-      $(INSTALL_SCRIPT) wml_frontend/wmu.pl $(bindir)/wmu
+-      $(INSTALL_DATA) wml_frontend/wmu.1 $(mandir)/man1/wmu.1
+-      $(INSTALL_SCRIPT) wml_backend/p1_ipp/ipp.pl $(libdir)/exec/wml_p1_ipp
+-      $(INSTALL_DATA) wml_backend/p1_ipp/ipp.1 $(mandir)/man1/wml_p1_ipp.1
+-      $(INSTALL_PROGRAM) wml_backend/p2_mp4h/src/mp4h@EXEEXT@ $(libdir)/exec/wml_p2_mp4h@EXEEXT@
+-      $(INSTALL_DATA) wml_backend/p2_mp4h/doc/mp4h.1 $(mandir)/man1/wml_p2_mp4h.1
+-      $(INSTALL_PROGRAM) wml_backend/p3_eperl/eperl@EXEEXT@ $(libdir)/exec/wml_p3_eperl@EXEEXT@
+-      $(INSTALL_DATA) wml_backend/p3_eperl/eperl.1 $(mandir)/man1/wml_p3_eperl.1
+-      $(INSTALL_PROGRAM) wml_backend/p4_gm4/src/m4@EXEEXT@ $(libdir)/exec/wml_p4_gm4@EXEEXT@
+-      $(INSTALL_DATA) wml_backend/p4_gm4/doc/m4.txt $(mandir)/$(catdir)1/wml_p4_gm4.1
+-      $(INSTALL_SCRIPT) wml_backend/p5_divert/divert.pl $(libdir)/exec/wml_p5_divert
+-      $(INSTALL_DATA) wml_backend/p5_divert/divert.1 $(mandir)/man1/wml_p5_divert.1
+-      $(INSTALL_SCRIPT) wml_backend/p6_asubst/asubst.pl $(libdir)/exec/wml_p6_asubst
+-      $(INSTALL_DATA) wml_backend/p6_asubst/asubst.1 $(mandir)/man1/wml_p6_asubst.1
+-      $(INSTALL_SCRIPT) wml_backend/p7_htmlfix/htmlfix.pl $(libdir)/exec/wml_p7_htmlfix
+-      $(INSTALL_DATA) wml_backend/p7_htmlfix/htmlfix.1 $(mandir)/man1/wml_p7_htmlfix.1
+-      $(INSTALL_SCRIPT) wml_backend/p8_htmlstrip/htmlstrip.pl $(libdir)/exec/wml_p8_htmlstrip
+-      $(INSTALL_DATA) wml_backend/p8_htmlstrip/htmlstrip.1 $(mandir)/man1/wml_p8_htmlstrip.1
+-      $(INSTALL_SCRIPT) wml_backend/p9_slice/slice $(libdir)/exec/wml_p9_slice
+-      $(INSTALL_DATA) wml_backend/p9_slice/slice.1 $(mandir)/man1/wml_p9_slice.1
++      $(INSTALL_DATA) wml_frontend/wmd_missing.1 $(DESTDIR)$(mandir)/man1/wmd_missing.1
++      $(INSTALL_SCRIPT) wml_frontend/wmb.pl $(DESTDIR)$(bindir)/wmb
++      $(INSTALL_DATA) wml_frontend/wmb.1 $(DESTDIR)$(mandir)/man1/wmb.1
++      $(INSTALL_SCRIPT) wml_frontend/wmu.pl $(DESTDIR)$(bindir)/wmu
++      $(INSTALL_DATA) wml_frontend/wmu.1 $(DESTDIR)$(mandir)/man1/wmu.1
++      $(INSTALL_SCRIPT) wml_backend/p1_ipp/ipp.pl $(DESTDIR)$(libdir)/exec/wml_p1_ipp
++      $(INSTALL_DATA) wml_backend/p1_ipp/ipp.1 $(DESTDIR)$(mandir)/man1/wml_p1_ipp.1
++      $(INSTALL_PROGRAM) wml_backend/p2_mp4h/src/mp4h@EXEEXT@ $(DESTDIR)$(libdir)/exec/wml_p2_mp4h@EXEEXT@
++      $(INSTALL_DATA) wml_backend/p2_mp4h/doc/mp4h.1 $(DESTDIR)$(mandir)/man1/wml_p2_mp4h.1
++      $(INSTALL_PROGRAM) wml_backend/p3_eperl/eperl@EXEEXT@ $(DESTDIR)$(libdir)/exec/wml_p3_eperl@EXEEXT@
++      $(INSTALL_DATA) wml_backend/p3_eperl/eperl.1 $(DESTDIR)$(mandir)/man1/wml_p3_eperl.1
++      $(INSTALL_PROGRAM) wml_backend/p4_gm4/src/m4@EXEEXT@ $(DESTDIR)$(libdir)/exec/wml_p4_gm4@EXEEXT@
++      $(INSTALL_DATA) wml_backend/p4_gm4/doc/m4.txt $(DESTDIR)$(mandir)/$(catdir)1/wml_p4_gm4.1
++      $(INSTALL_SCRIPT) wml_backend/p5_divert/divert.pl $(DESTDIR)$(libdir)/exec/wml_p5_divert
++      $(INSTALL_DATA) wml_backend/p5_divert/divert.1 $(DESTDIR)$(mandir)/man1/wml_p5_divert.1
++      $(INSTALL_SCRIPT) wml_backend/p6_asubst/asubst.pl $(DESTDIR)$(libdir)/exec/wml_p6_asubst
++      $(INSTALL_DATA) wml_backend/p6_asubst/asubst.1 $(DESTDIR)$(mandir)/man1/wml_p6_asubst.1
++      $(INSTALL_SCRIPT) wml_backend/p7_htmlfix/htmlfix.pl $(DESTDIR)$(libdir)/exec/wml_p7_htmlfix
++      $(INSTALL_DATA) wml_backend/p7_htmlfix/htmlfix.1 $(DESTDIR)$(mandir)/man1/wml_p7_htmlfix.1
++      $(INSTALL_SCRIPT) wml_backend/p8_htmlstrip/htmlstrip.pl $(DESTDIR)$(libdir)/exec/wml_p8_htmlstrip
++      $(INSTALL_DATA) wml_backend/p8_htmlstrip/htmlstrip.1 $(DESTDIR)$(mandir)/man1/wml_p8_htmlstrip.1
++      $(INSTALL_SCRIPT) wml_backend/p9_slice/slice $(DESTDIR)$(libdir)/exec/wml_p9_slice
++      $(INSTALL_DATA) wml_backend/p9_slice/slice.1 $(DESTDIR)$(mandir)/man1/wml_p9_slice.1
+ 
+ install-perl:
+       @echo ""
+       @echo "___ INSTALL: commonly used Perl 5 modules ___"
+       -@set dummy $(MAKEFLAGS); amf=$$2; \
+-      (cd wml_common && $(MAKE) install prefix=$(prefix)) \
++      (cd wml_common && $(MAKE) install prefix=$(prefix) DESTDIR=$(DESTDIR)) \
+           || case "$$amf" in *=*) exit 1;; *k*) ;; *) exit 1;; esac
+ 
+ install-doc:
+       @echo ""
+       @echo "___ INSTALL: general documentation ___"
+-      $(INSTALL_DATA) wml_docs/wml_intro.7 $(mandir)/man7/wml_intro.7
+-      $(INSTALL_DATA) wml_docs/wml_tutorial.7 $(mandir)/man7/wml_tutorial.7
+-      $(INSTALL_DATA) wml_docs/wml_macros.7 $(mandir)/man7/wml_macros.7
+-      $(INSTALL_DATA) wml_docs/wml_faq.7 $(mandir)/man7/wml_faq.7
+-      $(INSTALL_DATA) wml_docs/wml_tags.7 $(mandir)/man7/wml_tags.7
+-      $(INSTALL_DATA) wml_docs/wml_std_html20.txt $(mandir)/$(catdir)7/wml_std_html20.7
+-      $(INSTALL_DATA) wml_docs/wml_std_html32.txt $(mandir)/$(catdir)7/wml_std_html32.7
+-      $(INSTALL_DATA) wml_docs/wml_std_html40.txt $(mandir)/$(catdir)7/wml_std_html40.7
+-      $(INSTALL_DATA) wml_docs/wml_std_html401.txt $(mandir)/$(catdir)7/wml_std_html401.7
+-      $(INSTALL_DATA) wml_docs/wml_std_xhtml10.txt $(mandir)/$(catdir)7/wml_std_xhtml10.7
+-      $(INSTALL_DATA) wml_docs/wml_std_css1.txt $(mandir)/$(catdir)7/wml_std_css1.7
+-      $(INSTALL_DATA) wml_docs/wml_std_css2.txt $(mandir)/$(catdir)7/wml_std_css2.7
+-      $(INSTALL_DATA) wml_docs/wml_std_csspos.txt $(mandir)/$(catdir)7/wml_std_csspos.7
+-      $(INSTALL_DATA) wml_docs/wml_std_wai10.txt $(mandir)/$(catdir)7/wml_std_wai10.7
+-      $(INSTALL_DATA) wml_docs/wml_barebone.txt $(mandir)/$(catdir)7/wml_barebone.7
++      $(INSTALL_DATA) wml_docs/wml_intro.7 $(DESTDIR)$(mandir)/man7/wml_intro.7
++      $(INSTALL_DATA) wml_docs/wml_tutorial.7 $(DESTDIR)$(mandir)/man7/wml_tutorial.7
++      $(INSTALL_DATA) wml_docs/wml_macros.7 $(DESTDIR)$(mandir)/man7/wml_macros.7
++      $(INSTALL_DATA) wml_docs/wml_faq.7 $(DESTDIR)$(mandir)/man7/wml_faq.7
++      $(INSTALL_DATA) wml_docs/wml_tags.7 $(DESTDIR)$(mandir)/man7/wml_tags.7
++      $(INSTALL_DATA) wml_docs/wml_std_html20.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_std_html20.7
++      $(INSTALL_DATA) wml_docs/wml_std_html32.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_std_html32.7
++      $(INSTALL_DATA) wml_docs/wml_std_html40.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_std_html40.7
++      $(INSTALL_DATA) wml_docs/wml_std_html401.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_std_html401.7
++      $(INSTALL_DATA) wml_docs/wml_std_xhtml10.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_std_xhtml10.7
++      $(INSTALL_DATA) wml_docs/wml_std_css1.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_std_css1.7
++      $(INSTALL_DATA) wml_docs/wml_std_css2.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_std_css2.7
++      $(INSTALL_DATA) wml_docs/wml_std_csspos.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_std_csspos.7
++      $(INSTALL_DATA) wml_docs/wml_std_wai10.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_std_wai10.7
++      $(INSTALL_DATA) wml_docs/wml_barebone.txt $(DESTDIR)$(mandir)/$(catdir)7/wml_barebone.7
+ 
+ install-aux:
+       @echo ""
+       @echo "___ INSTALL: auxiliary programs and manpages ___"
+-      $(INSTALL_SCRIPT) wml_aux/htmlclean/htmlclean.pl $(libdir)/exec/wml_aux_htmlclean
+-      $(INSTALL_DATA) wml_aux/htmlclean/htmlclean.1 $(mandir)/man1/wml_aux_htmlclean.1
+-      $(INSTALL_PROGRAM) wml_aux/iselect/iselect@EXEEXT@ $(libdir)/exec/wml_aux_iselect@EXEEXT@
+-      $(INSTALL_DATA) wml_aux/iselect/iselect.1 $(mandir)/man1/wml_aux_iselect.1
+-      $(INSTALL_SCRIPT) wml_aux/map2html/map2html.pl $(libdir)/exec/wml_aux_map2html
+-      $(INSTALL_DATA) wml_aux/map2html/map2html.1 $(mandir)/man1/wml_aux_map2html.1
+-      $(INSTALL_SCRIPT) wml_aux/txt2html/txt2html.pl $(libdir)/exec/wml_aux_txt2html
+-      $(INSTALL_DATA) wml_aux/txt2html/txt2html.txt $(mandir)/$(catdir)1/wml_aux_txt2html.1
+-      $(INSTALL_DATA) wml_aux/txt2html/txt2html.dict $(libdir)/data/txt2html.dict
+-      $(INSTALL_PROGRAM) wml_aux/tidy/tidy@EXEEXT@ $(libdir)/exec/wml_aux_tidy@EXEEXT@
+-      $(INSTALL_DATA) wml_aux/tidy/tidy.txt $(mandir)/$(catdir)1/wml_aux_tidy.1
+-      $(INSTALL_SCRIPT) wml_aux/htmlinfo/htmlinfo.pl $(libdir)/exec/wml_aux_htmlinfo
+-      $(INSTALL_DATA) wml_aux/htmlinfo/htmlinfo.1 $(mandir)/man1/wml_aux_htmlinfo.1
+-      $(INSTALL_SCRIPT) wml_aux/linklint/linklint.pl $(libdir)/exec/wml_aux_linklint
+-      $(INSTALL_DATA) wml_aux/linklint/linklint.1 $(mandir)/man1/wml_aux_linklint.1
+-      $(INSTALL_SCRIPT) wml_aux/weblint/weblint.pl $(libdir)/exec/wml_aux_weblint
+-      $(INSTALL_DATA) wml_aux/weblint/weblint.1 $(mandir)/man1/wml_aux_weblint.1
+-      $(INSTALL_DATA) wml_aux/weblint/weblintrc $(libdir)/data/weblintrc
+-      $(INSTALL_SCRIPT) wml_aux/freetable/freetable.pl $(libdir)/exec/wml_aux_freetable
+-      $(INSTALL_DATA) wml_aux/freetable/freetable.1 $(mandir)/man1/wml_aux_freetable.1
++      $(INSTALL_SCRIPT) wml_aux/htmlclean/htmlclean.pl $(DESTDIR)$(libdir)/exec/wml_aux_htmlclean
++      $(INSTALL_DATA) wml_aux/htmlclean/htmlclean.1 $(DESTDIR)$(mandir)/man1/wml_aux_htmlclean.1
++      $(INSTALL_PROGRAM) wml_aux/iselect/iselect@EXEEXT@ $(DESTDIR)$(libdir)/exec/wml_aux_iselect@EXEEXT@
++      $(INSTALL_DATA) wml_aux/iselect/iselect.1 $(DESTDIR)$(mandir)/man1/wml_aux_iselect.1
++      $(INSTALL_SCRIPT) wml_aux/map2html/map2html.pl $(DESTDIR)$(libdir)/exec/wml_aux_map2html
++      $(INSTALL_DATA) wml_aux/map2html/map2html.1 $(DESTDIR)$(mandir)/man1/wml_aux_map2html.1
++      $(INSTALL_SCRIPT) wml_aux/txt2html/txt2html.pl $(DESTDIR)$(libdir)/exec/wml_aux_txt2html
++      $(INSTALL_DATA) wml_aux/txt2html/txt2html.txt $(DESTDIR)$(mandir)/$(catdir)1/wml_aux_txt2html.1
++      $(INSTALL_DATA) wml_aux/txt2html/txt2html.dict $(DESTDIR)$(libdir)/data/txt2html.dict
++      $(INSTALL_PROGRAM) wml_aux/tidy/tidy@EXEEXT@ $(DESTDIR)$(libdir)/exec/wml_aux_tidy@EXEEXT@
++      $(INSTALL_DATA) wml_aux/tidy/tidy.txt $(DESTDIR)$(mandir)/$(catdir)1/wml_aux_tidy.1
++      $(INSTALL_SCRIPT) wml_aux/htmlinfo/htmlinfo.pl $(DESTDIR)$(libdir)/exec/wml_aux_htmlinfo
++      $(INSTALL_DATA) wml_aux/htmlinfo/htmlinfo.1 $(DESTDIR)$(mandir)/man1/wml_aux_htmlinfo.1
++      $(INSTALL_SCRIPT) wml_aux/linklint/linklint.pl $(DESTDIR)$(libdir)/exec/wml_aux_linklint
++      $(INSTALL_DATA) wml_aux/linklint/linklint.1 $(DESTDIR)$(mandir)/man1/wml_aux_linklint.1
++      $(INSTALL_SCRIPT) wml_aux/weblint/weblint.pl $(DESTDIR)$(libdir)/exec/wml_aux_weblint
++      $(INSTALL_DATA) wml_aux/weblint/weblint.1 $(DESTDIR)$(mandir)/man1/wml_aux_weblint.1
++      $(INSTALL_DATA) wml_aux/weblint/weblintrc $(DESTDIR)$(libdir)/data/weblintrc
++      $(INSTALL_SCRIPT) wml_aux/freetable/freetable.pl $(DESTDIR)$(libdir)/exec/wml_aux_freetable
++      $(INSTALL_DATA) wml_aux/freetable/freetable.1 $(DESTDIR)$(mandir)/man1/wml_aux_freetable.1
+ 
+ install-misc:
+       @echo ""
+       @echo "___ INSTALL: miscellaneous files ___"
+       -@set dummy $(MAKEFLAGS); amf=$$2; \
+-      (cd wml_misc && $(MAKE) install prefix=$(prefix)) \
++      (cd wml_misc && $(MAKE) install prefix=$(prefix) DESTDIR=$(DESTDIR)) \
+           || case "$$amf" in *=*) exit 1;; *k*) ;; *) exit 1;; esac
+ 
+ install-tags:
+       @echo ""
+       @echo "___ INSTALL: include files and manpages ___"
+       -@set dummy $(MAKEFLAGS); amf=$$2; \
+-      (cd wml_include && $(MAKE) install prefix=$(prefix)) \
++      (cd wml_include && $(MAKE) install prefix=$(prefix) DESTDIR=$(DESTDIR)) \
+           || case "$$amf" in *=*) exit 1;; *k*) ;; *) exit 1;; esac
+ 
+ # ------------------------------------------------
diff -r 1c9853516f52 -r 4ad6b2a6126a www/wml/patches/patch-ah
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/wml/patches/patch-ah  Sat Sep 29 21:23:12 2007 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-ah,v 1.1 2007/09/29 21:23:13 heinz Exp $
+
+ DESTDIR support
+
+--- wml_misc/Makefile.in.orig  2002-10-17 22:55:19.000000000 +0200
++++ wml_misc/Makefile.in
+@@ -33,12 +33,12 @@ mandir          = $(prefix)/man
+ all: 
+ 
+ install:
+-      $(MKDIR) $(libdir)/data/logos
++      $(MKDIR) $(DESTDIR)$(libdir)/data/logos
+       @set -e; \
+       files=`echo logo-*`; \
+       for file in $$files; do \
+-          echo "$(INSTALL_DATA) $$file $(libdir)/data/logos/$$file"; \
+-          $(INSTALL_DATA) $$file $(libdir)/data/logos/$$file; \
++          echo "$(INSTALL_DATA) $$file $(DESTDIR)$(libdir)/data/logos/$$file"; \
++          $(INSTALL_DATA) $$file $(DESTDIR)$(libdir)/data/logos/$$file; \
+       done
+ 
+ clean:
diff -r 1c9853516f52 -r 4ad6b2a6126a www/wml/patches/patch-ai
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/wml/patches/patch-ai  Sat Sep 29 21:23:12 2007 +0000
@@ -0,0 +1,29 @@
+$NetBSD: patch-ai,v 1.1 2007/09/29 21:23:13 heinz Exp $
+
+ DESTDIR support
+
+--- wml_include/Makefile.in.orig       2002-10-18 22:48:56.000000000 +0200
++++ wml_include/Makefile.in
+@@ -69,15 +69,15 @@ install:
+           base=`echo $$file | sed -e 's/\.wml$$//g'`; \
+           dir=`echo $$file | sed -e 's/[a-zA-Z0-9_]*.wml$$//g'`; \
+           name=`echo wml/$$base | sed -e 's/\//$(DCOLON)/g'`; \
+-          if [ ! -d "$(libdir)/include/$$dir" ]; then \



Home | Main Index | Thread Index | Old Index