openbsd-ports/www/wml/patches/patch-wml_misc_Makefile_in
bernd 7d776e30ff Initial import of wml-2.0.9.
WML is a free and extensible Webdesigner's off-line HTML generation
toolkit. It consists of a control frontend driving up to nine backends
in a sequential pass-oriented filtering scheme.  Each backend provides
one particular core language.  For maximum power WML additionally ships
with a well-suited set of include files which provide higher-level
features built on top of the backend core languages.  While not trivial
and idiot proof WML provides most of the core features real hackers
always wanted for HTML generation.

Lots of testing and feedback from steven@. Thanks!
2006-07-14 16:12:12 +00:00

28 lines
931 B
Plaintext

$OpenBSD: patch-wml_misc_Makefile_in,v 1.1.1.1 2006/07/14 16:12:14 bernd Exp $
--- wml_misc/Makefile.in.orig Thu Jun 15 14:24:33 2006
+++ wml_misc/Makefile.in Thu Jun 15 14:26:27 2006
@@ -25,6 +25,7 @@ bindir = $(prefix)/bin
libsubdir = @libsubdir@
libdir = $(prefix)/lib$(libsubdir)
mandir = $(prefix)/man
+datadir = @datadir@/wml
# ------------------------------------------------
# TARGETS
@@ -33,12 +34,12 @@ mandir = $(prefix)/man
all:
install:
- $(MKDIR) $(libdir)/data/logos
+ $(MKDIR) $(datadir)/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 $(datadir)/data/logos/$$file"; \
+ $(INSTALL_DATA) $$file $(datadir)/data/logos/$$file; \
done
clean: