diff options
author | taca <taca@pkgsrc.org> | 2008-06-19 12:38:45 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2008-06-19 12:38:45 +0000 |
commit | dfaba9b34b8781cf79d4bec2874c003b67617b32 (patch) | |
tree | 3d8b28ce221fa1fccab721963759d313eab973e6 /www/geeklog | |
parent | 744dd06dcad7c2881b0fdebeefdd54bb1819cbd3 (diff) | |
download | pkgsrc-dfaba9b34b8781cf79d4bec2874c003b67617b32.tar.gz |
make GEEKLOG_BASE and GEEKLOG_PUB settable.
Diffstat (limited to 'www/geeklog')
-rw-r--r-- | www/geeklog/Makefile.common | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/www/geeklog/Makefile.common b/www/geeklog/Makefile.common index a7cc7ef6c5d..f2e02c731c6 100644 --- a/www/geeklog/Makefile.common +++ b/www/geeklog/Makefile.common @@ -1,8 +1,6 @@ -# $NetBSD: Makefile.common,v 1.4 2007/05/20 15:56:44 taca Exp $ +# $NetBSD: Makefile.common,v 1.5 2008/06/19 12:38:45 taca Exp $ # -GEEKLOG_BASE= share/geeklog -GEEKLOG_PUB= share/httpd/geeklog GEEKLOG_ADMIN= ${GEEKLOG_BASE}/admin GEEKLOG_TMPL= ${GEEKLOG_BASE}/default @@ -19,10 +17,14 @@ GEEKLOG_EXAMPLESDIR= ${PREFIX}/share/examples/geeklog .include "../../mk/bsd.prefs.mk" +# Geeklog's basic directories. +GEEKLOG_BASE?= share/geeklog +GEEKLOG_PUB?= share/httpd/geeklog + # access Geeklog as its own directory? GEEKLOG_SITEBASE?= geeklog -BUILD_DEFS+= GEEKLOG_SITEBASE +BUILD_DEFS+= GEEKLOG_BASE GEEKLOG_PUB GEEKLOG_SITEBASE .if !empty(GEEKLOG_SITEBASE) GEEKLOG_SITESUBDIR= /${GEEKLOG_SITEBASE} |