diff options
author | okazaki <okazaki@FreeBSD.org> | 2001-03-10 10:04:52 +0000 |
---|---|---|
committer | okazaki <okazaki@FreeBSD.org> | 2001-03-10 10:04:52 +0000 |
commit | 954d55ac208768090c68c2dcfc928105a10e4930 (patch) | |
tree | 89aeb2c0f90479c9cb26f641d8795d2609de46d1 /sysutils/mei | |
parent | 2216cb215bcfeac41caa45031e01bfb6dd608611 (diff) | |
download | FreeBSD-ports-954d55ac208768090c68c2dcfc928105a10e4930.zip FreeBSD-ports-954d55ac208768090c68c2dcfc928105a10e4930.tar.gz |
Remove obsoleted URL from MASTER_SITES.
Mark BROKEN for ${OSVERSION} >= 300000, since mei does not support CAM.
Diffstat (limited to 'sysutils/mei')
-rw-r--r-- | sysutils/mei/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sysutils/mei/Makefile b/sysutils/mei/Makefile index 952b5e3..175b162 100644 --- a/sysutils/mei/Makefile +++ b/sysutils/mei/Makefile @@ -8,9 +8,7 @@ PORTNAME= mei PORTVERSION= 1.53 CATEGORIES= sysutils -MASTER_SITES= http://www.vector.co.jp/authors/VA001240/archive/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= itojun +MASTER_SITES= http://www.vector.co.jp/authors/VA001240/archive/ DISTFILES= mei153s.tgz mei153d.tgz MAINTAINER= ports@freebsd.org @@ -26,10 +24,16 @@ MAKE_ENV+= INSTALL_PROGRAM="$(INSTALL_PROGRAM)" \ INSTALL_MAN="$(INSTALL_MAN)" INSTALL_TARGET= install install.man +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 300000 +BROKEN= not support CAM +.endif + .if !defined(NOPORTDOCS) post-install: ${MKDIR} ${PREFIX}/share/doc/mei ${INSTALL_DATA} ${WRKSRC}/*txt ${PREFIX}/share/doc/mei .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |