diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-12-26 00:04:55 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-12-26 00:04:55 +0000 |
commit | 9c52b396dc822e227af535a8dd8bc26737fac379 (patch) | |
tree | d7ff63d398a731eb626e8dbc9ef13a6e0d3c3b09 /devel/cvsweb3 | |
parent | 3644468ddd95cb4f7278375da5c81f43f082f315 (diff) | |
download | ports-9c52b396dc822e227af535a8dd8bc26737fac379.tar.gz ports-9c52b396dc822e227af535a8dd8bc26737fac379.zip |
devel/cvsweb3: Wrong install location with www/apache22
www/apache22 installs its data files to ${PREFIX}/www/apache22
though, devel/cvsweb3 fails to find this directory.
PR: ports/90418
Submitted by: Tetsuya Uemura <t_uemura@macome.co.jp>
Notes
Notes:
svn path=/head/; revision=152041
Diffstat (limited to 'devel/cvsweb3')
-rw-r--r-- | devel/cvsweb3/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/devel/cvsweb3/Makefile b/devel/cvsweb3/Makefile index 9b75dde85456..045388802df3 100644 --- a/devel/cvsweb3/Makefile +++ b/devel/cvsweb3/Makefile @@ -60,6 +60,10 @@ TITLE?= My CVS Repository CGIDIR?= www/cgi-bin ICONSDIR?= www/icons CSSDIR?= www/data/css +.elif exists(${PREFIX}/www/apache22/cgi-bin) +CGIDIR?= www/apache22/cgi-bin +ICONSDIR?= www/apache22/icons +CSSDIR?= www/apache22/data/css .elif exists(${PREFIX}/apache/cgi-bin) CGIDIR?= apache/cgi-bin ICONSDIR?= apache/icons |