diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2005-11-28 11:39:36 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2005-11-28 11:39:36 +0000 |
commit | b22fe00c60bb1be289b70b7e47cde42088852c90 (patch) | |
tree | 679815173aeb4e92cb0454b69c28d6f9459ba3a3 /editors/rospell | |
parent | 481161fce95a404c549f51079b8800bfd78bd26a (diff) | |
download | freebsd-ports-b22fe00c60bb1be289b70b7e47cde42088852c90.zip |
mark port unbuildable on 4.x series.
Noticed by: YAPHR
Diffstat (limited to 'editors/rospell')
-rw-r--r-- | editors/rospell/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/editors/rospell/Makefile b/editors/rospell/Makefile index 9c546d5cd4dc..c48050fff736 100644 --- a/editors/rospell/Makefile +++ b/editors/rospell/Makefile @@ -18,13 +18,22 @@ COMMENT= QT-based editor with support for romanian charsets and spell checking USE_XLIB= yes USE_QT_VER= 3 MAKE_ENV+= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} PTHREAD_LIBS=${PTHREAD_LIBS} +CONFIGURE_ENV= QTDIR=${X11BASE} LDFLAGS="${LDFLAGS} ${PTHREAD_LIBS}" + +HAS_CONFIGURE= yes MAN1= rospell.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +IGNORE= doesn't compile properly on 4.x systems +.endif + do-build: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} do-install: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} install -.include <bsd.port.mk> +.include <bsd.port.post.mk> |