diff options
author | fenner <fenner@FreeBSD.org> | 2005-10-08 03:12:17 +0800 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 2005-10-08 03:12:17 +0800 |
commit | 52a2327be4a1e601fcab2b8fc409b5991e4dfc90 (patch) | |
tree | d2b53adf98f9db2be096d5ec6cc1b5d79aa1ec5f | |
parent | 90a5928e3c0130f627a996ba182e5452908ff506 (diff) | |
download | freebsd-ports-gnome-52a2327be4a1e601fcab2b8fc409b5991e4dfc90.tar.gz freebsd-ports-gnome-52a2327be4a1e601fcab2b8fc409b5991e4dfc90.tar.zst freebsd-ports-gnome-52a2327be4a1e601fcab2b8fc409b5991e4dfc90.zip |
Don't add extra quotes around DEPRECATED when BROKEN already has
them. These are probably not the only ports that do this, but
they are the only ones with bad shell metacharacters that the
extra quotes un-quote.
Approved by: linimon
-rw-r--r-- | devel/hs-uni/Makefile | 2 | ||||
-rw-r--r-- | japanese/weblint97/Makefile | 2 | ||||
-rw-r--r-- | mail/mew-mule/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/devel/hs-uni/Makefile b/devel/hs-uni/Makefile index d14f824aab35..4deb21ba2678 100644 --- a/devel/hs-uni/Makefile +++ b/devel/hs-uni/Makefile @@ -17,7 +17,7 @@ MAINTAINER= gtchask@mm.st COMMENT= A tool integration framework for Haskell, including Htk BROKEN= "Does not compile with ghc 6.4 (specifically, ghc-pkg)" -DEPRECATED= "${BROKEN}" +DEPRECATED= ${BROKEN} EXPIRATION_DATE=2005-09-22 BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc diff --git a/japanese/weblint97/Makefile b/japanese/weblint97/Makefile index d2931796fa16..b0d5d675d350 100644 --- a/japanese/weblint97/Makefile +++ b/japanese/weblint97/Makefile @@ -18,7 +18,7 @@ COMMENT= An internationalized HTML checker with japanese message(EUC-JP) RUN_DEPENDS= ${SITE_PERL}/jcode.pl:${PORTSDIR}/japanese/jcode.pl BROKEN= "Incomplete pkg-plist (port installs into nonstandard perl directory)" -DEPRECATED= "${BROKEN}" +DEPRECATED= ${BROKEN} EXPIRATION_DATE=2005-09-22 WRKSRC= ${WRKDIR}/weblint-97 diff --git a/mail/mew-mule/Makefile b/mail/mew-mule/Makefile index 2602853fe155..66ce6b11b067 100644 --- a/mail/mew-mule/Makefile +++ b/mail/mew-mule/Makefile @@ -12,7 +12,7 @@ COMMENT= Message interface to Emacs Window for mule MASTERDIR= ${.CURDIR}/../mew BROKEN= "Incorrect pkg-plist (removes directories not installed by this port)" -DEPRECATED= "${BROKEN}" +DEPRECATED= ${BROKEN} EXPIRATION_DATE=2005-09-22 # set emacs port |