diff options
author | edwin <edwin@FreeBSD.org> | 2005-11-28 19:39:36 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-11-28 19:39:36 +0800 |
commit | 7216feb3a4ebbffa297e6164f1def99faddf20e4 (patch) | |
tree | f60f94472e7017c6e9d545fa444e873cea8e4ba0 /editors | |
parent | ad52bbac2171fad4638bbdf6415c62915eac9889 (diff) | |
download | freebsd-ports-gnome-7216feb3a4ebbffa297e6164f1def99faddf20e4.tar.gz freebsd-ports-gnome-7216feb3a4ebbffa297e6164f1def99faddf20e4.tar.zst freebsd-ports-gnome-7216feb3a4ebbffa297e6164f1def99faddf20e4.zip |
mark port unbuildable on 4.x series.
Noticed by: YAPHR
Diffstat (limited to 'editors')
-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> |