diff options
author | pav <pav@FreeBSD.org> | 2005-09-05 07:08:16 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-09-05 07:08:16 +0800 |
commit | f64d9c26e65500676731c1132bcb22894c1fd737 (patch) | |
tree | 5f526956f009c5a7ffda2f6494d4c9e3bb814120 /www | |
parent | 03a9c0b3c543e9adbf2e3aa927a41fd59727dc8d (diff) | |
download | freebsd-ports-graphics-f64d9c26e65500676731c1132bcb22894c1fd737.tar.gz freebsd-ports-graphics-f64d9c26e65500676731c1132bcb22894c1fd737.tar.zst freebsd-ports-graphics-f64d9c26e65500676731c1132bcb22894c1fd737.zip |
- Add dependency on compat4x for i386 on 5.X and newer
- Fix small oversight in startup script
PR: ports/85290
Submitted by: Scot W. Hetzel <swhetzel@gmail.com> (maintainer)
Diffstat (limited to 'www')
-rw-r--r-- | www/frontpage/Makefile | 6 | ||||
-rw-r--r-- | www/frontpage/files/frontpage.sh.in | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/www/frontpage/Makefile b/www/frontpage/Makefile index 295a4fc6ed7..1d90efc6d0a 100644 --- a/www/frontpage/Makefile +++ b/www/frontpage/Makefile @@ -7,7 +7,7 @@ PORTNAME= frontpage PORTVERSION= 5.0.2.2635 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= # Needs to be manually fetched from http://www.rtr.com @@ -51,6 +51,10 @@ EXTRA_PATCHES= fp_install.alpha EXTRA_PATCHES= fp_install.sparc .elif defined(WANT_BSDI_EXTENSIONS) EXTRA_PATCHES= fp_install.bsdi +.elif ${ARCH} == i386 +.if ${OSVERSION} >= 500000 +LIB_DEPENDS+= c.4:${PORTSDIR}/misc/compat4x +.endif .endif do-extract: diff --git a/www/frontpage/files/frontpage.sh.in b/www/frontpage/files/frontpage.sh.in index 70d4eb3cbe8..7568d83e0a5 100644 --- a/www/frontpage/files/frontpage.sh.in +++ b/www/frontpage/files/frontpage.sh.in @@ -22,7 +22,7 @@ frontpage_key() { CUR_UMASK=`umask` - skdir=${prefix}/frontpage/version%%FP_VER%%/apache-fp + skdir=%%PREFIX%%/frontpage/version%%FP_VER%%/apache-fp PERL=%%PERL5%% # Alternate way of generating the suidkey file with out PERL |