diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-07-10 07:50:17 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-07-10 07:50:17 +0000 |
commit | 28429a3cbd87d338eb397401db773c5fd6a53fed (patch) | |
tree | 0ed57fbc367e9bc5ed1d1c57a9206d126aea6cb4 /Mk | |
parent | 81844a53cdd1e4da220f1384375679e216f59a99 (diff) | |
download | ports-28429a3cbd87d338eb397401db773c5fd6a53fed.tar.gz ports-28429a3cbd87d338eb397401db773c5fd6a53fed.zip |
Notes
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index b13d199e0c73..aa3e80a7b5d8 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -436,7 +436,10 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # apply here. It is recommended that you use # %%PREFIX%% for ${PREFIX}, %%LOCALBASE%% for # ${LOCALBASE} and %%X11BASE%% for ${X11BASE}. -# DOCSDIR - Name of the directory to install the packages docs in. +# DOCSDIR - Name of the directory to install the packages docs in +# (default: ${PREFIX}/share/doc/${PORTNAME}). +# DATADIR - Name of the directory to install the packages shared data +# in (default: ${PREFIX}/share/${PORTNAME}). # # Note that the install target will automatically add manpages (see # above) and also substitute special sequences of characters (delimited @@ -1374,6 +1377,7 @@ LDCONFIG_RUNLIST!= ${ECHO} ${LDCONFIG_PLIST} | ${SED} -e "s!%D!${PREFIX}!" .endif DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME} +DATADIR?= ${PREFIX}/share/${PORTNAME} .MAIN: all |