diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-23 04:33:38 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-23 04:33:38 +0000 |
commit | 98e446c34903e0dd79f5c535dcccf4265ba5c37f (patch) | |
tree | 827a8fdce91f05778c65a22db7c5b808cf246f4b /textproc/latte | |
parent | Unbreak on 5.x. Define PIC when compiling with -fpic, some codecs (diff) |
BROKEN on 5.x: configure fails
Notes
Notes:
svn path=/head/; revision=101810
Diffstat (limited to 'textproc/latte')
-rw-r--r-- | textproc/latte/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/latte/Makefile b/textproc/latte/Makefile index 5f8713eef642..2d02a275ea1f 100644 --- a/textproc/latte/Makefile +++ b/textproc/latte/Makefile @@ -18,9 +18,15 @@ USE_LIBTOOL= yes MAKE_FLAGS= CONF_ARGS="--prefix=${PREFIX}" CONFIGURE_ARGS+= --enable-shared +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502102 +BROKEN= "Configure fails" +.endif + post-install: ${LN} -sf ${PREFIX}/bin/latte-html ${PREFIX}/bin/latte ${CP} -Rp ${WRKSRC}/tests ${PREFIX}/share/latte/ ${INSTALL_DATA} ${WRKSRC}/latte.el ${PREFIX}/share/emacs/site-lisp -.include <bsd.port.mk> +.include <bsd.port.post.mk> |