diff options
author | lioux <lioux@FreeBSD.org> | 2001-12-31 06:08:03 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-12-31 06:08:03 +0800 |
commit | a64b6a6de35167aa0d6d910018b2cf1af886f3ac (patch) | |
tree | a66afb7a19aa41fac86ac1d1ba6ac7432aeb0b6c | |
parent | f580057c885790681524f05282f4111c87d64157 (diff) | |
download | freebsd-ports-gnome-a64b6a6de35167aa0d6d910018b2cf1af886f3ac.tar.gz freebsd-ports-gnome-a64b6a6de35167aa0d6d910018b2cf1af886f3ac.tar.zst freebsd-ports-gnome-a64b6a6de35167aa0d6d910018b2cf1af886f3ac.zip |
o Fix deinstall problem: do not use variables before defining them
o Correct RUN_DEPENDS: frontpage5 -> frontpage
PR: 33317
Submitted by: maintainer
-rw-r--r-- | www/frontpage-ar/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/www/frontpage-ar/Makefile b/www/frontpage-ar/Makefile index 95734538b0c0..f1e69a683323 100644 --- a/www/frontpage-ar/Makefile +++ b/www/frontpage-ar/Makefile @@ -14,14 +14,18 @@ PKGNAMEPREFIX?= ar- DISTFILES= EXTRACT_ONLY= +MAINTAINER= hetzels@westbend.net + +RUN_DEPENDS= ${FPSETPERM}:${PORTSDIR}/www/frontpage + +FP_LANG?= ara +FP_LANGUAGE?= Arabic +FP_LCID?= 1025 + .for _FP_LANG in ${FP_LANG} DISTFILES+= fp${PORTVERSION:S/.//:C/\..*//}_${_FP_LANG}.tar.Z .endfor -MAINTAINER= hetzels@westbend.net - -RUN_DEPENDS= ${FPSETPERM}:${PORTSDIR}/www/frontpage5 - .include <bsd.port.pre.mk> ONLY_FOR_ARCHS= i386 alpha @@ -29,10 +33,6 @@ ONLY_FOR_ARCHS= i386 alpha NO_WRKSUBDIR= yes NO_BUILD= yes -FP_LANG?= ara -FP_LANGUAGE?= Arabic -FP_LCID?= 1025 - FP_VER= 5.0 FP_DIR= ${PREFIX}/frontpage/version${FP_VER} |