--- Makefile.orig	Tue May 27 19:37:30 2003
+++ Makefile	Tue May 27 22:40:28 2003
@@ -7,35 +7,35 @@
 
 # Change this for local installation, 
 # e. g. /home/user or /usr/local
-prefix = /usr/local
+#prefix = /usr/local
 
 # Change this for some distributions (current setting
 # is OK for SuSE)
-docdir = /usr/share/doc/packages
+docdir = ${PREFIX}/share/doc
 
 # Change this to $(prefix)/man for older distributions
 # (current setting is correct according to LSB)
-mandir = $(prefix)/share/man
+mandir = ${PREFIX}/man
 
 #
 # Muttprint needs GNU make. If you installed GNU make
 # as `gmake', you have to change this
-MAKE = make
+#MAKE = make
 
 # Change this three directories only if you're know
 # what you do
-sharedir = $(prefix)/share
-libdir = $(prefix)/lib
-bindir = $(prefix)/bin
-sysconfdir = /etc
+sharedir = ${PREFIX}/share
+libdir = ${PREFIX}/lib
+bindir = ${PREFIX}/bin
+sysconfdir = ${PREFIX}/etc
 docdirname = muttprint
 
 #####################################################
 #####################################################
 
-install = install
-INSTALLBIN = $(install) -m 0755 
-INSTALL = $(install) -m 0644 
+#install = install
+#INSTALLBIN = $(install) -m 0755 
+#INSTALL = $(install) -m 0644 
 
 
 nothing:
@@ -44,15 +44,17 @@
 
 install: 
 	mkdir -p $(docdir)/$(docdirname) $(bindir) $(sharedir)/muttprint/translations \
-		$(mandir)/man1 $(mandir)/de/man1 $(mandir)/es/man1 \
-		$(mandir)/cs/man1 $(mandir)/it/man1 
-	$(INSTALLBIN) muttprint $(bindir)/
-	$(INSTALL) CHANGES COPYING INSTALL README* sample-muttprintrc-* \
+		$(mandir)/man1
+	${BSD_INSTALL_SCRIPT} muttprint $(bindir)/
+	${BSD_INSTALL_DATA} `find pics -type f -print` $(sharedir)/muttprint/
+	${BSD_INSTALL_DATA} `find translations -type f -print` $(sharedir)/muttprint/translations
+	$(MAKE) -C doc/manpages mandir=$(mandir) install
+
+install-with-doc: install
+	mkdir -p $(docdir)/$(docdirname)
+	${BSD_INSTALL_DATA} CHANGES COPYING INSTALL README* sample-muttprintrc-* \
 		$(docdir)/$(docdirname)
-	$(INSTALL) `find pics -type f -print` $(sharedir)/muttprint/
-	$(INSTALL) `find translations -type f -print` $(sharedir)/muttprint/translations
 	$(MAKE) -C doc/manual docdir=$(docdir) docdirname=$(docdirname) install
-	$(MAKE) -C doc/manpages mandir=$(mandir) install
 
 uninstall:
 	rm $(bindir)/muttprint
