diff options
author | edwin <edwin@FreeBSD.org> | 2005-12-26 08:04:55 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-12-26 08:04:55 +0800 |
commit | 6c262bfdd8cdb124f1a9308c152d530973c9e91c (patch) | |
tree | 3ea10b6b53b378a330dd7d71996626b6732a6d7c /devel | |
parent | 9970632aa7b7022128a0f9767d5953f0479d713b (diff) | |
download | freebsd-ports-gnome-6c262bfdd8cdb124f1a9308c152d530973c9e91c.tar.gz freebsd-ports-gnome-6c262bfdd8cdb124f1a9308c152d530973c9e91c.tar.zst freebsd-ports-gnome-6c262bfdd8cdb124f1a9308c152d530973c9e91c.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>
Diffstat (limited to 'devel')
-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 |