Use MAKE_ARGS

This commit is contained in:
Volker Stolz 2005-04-22 13:40:09 +00:00
parent 4301812e6c
commit 23729bfd50
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=133936
2 changed files with 4 additions and 26 deletions

View File

@ -20,6 +20,10 @@ EXTRACT_CMD= uncompress
EXTRACT_BEFORE_ARGS= -c
EXTRACT_AFTER_ARGS= | tail -n 1759 | sh
MAKE_ARGS= BINDIR="${PREFIX}/bin" \
MANDIR="${MAN1PREFIX}/man" \
TUTORIALS="${DATADIR}"
MAN1= vilearn.1
.include <bsd.port.mk>

View File

@ -1,26 +0,0 @@
--- Makefile.orig Fri Dec 12 09:08:12 1997
+++ Makefile Fri Dec 12 09:17:12 1997
@@ -4,12 +4,12 @@
# BINDIR is where the vilearn shell script will live. It should be in the
# path of new users.
-BINDIR= /usr/local/bin
+BINDIR= ${PREFIX}/bin
# MANDIR is the man area where vilearn's man page will be installed. It
# should be somewhere that the default man command will search.
-MANDIR= /usr/local/man
+MANDIR= ${PREFIX}/man
# SEC is the section of the manual that vilearn's man page will be
# installed in.
@@ -18,7 +18,7 @@
# TUTORIALS is the directory where the master copies of the tutorials
# will live.
-TUTORIALS= /usr/local/lib/vilearn
+TUTORIALS= ${PREFIX}/share/vilearn
# Shouldn't have to edit below here.