diff options
-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> |