diff options
author | pav <pav@FreeBSD.org> | 2009-12-19 20:28:34 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2009-12-19 20:28:34 +0800 |
commit | 28b626a997cc2884572db8ddd15c9c291bb78993 (patch) | |
tree | c1ce9efe6bb62bb3f23178d19173df2be786ad0e /lang/gjs | |
parent | ae06fd5d12ebd67de06fe6588d33c10dca35923c (diff) | |
download | freebsd-ports-gnome-28b626a997cc2884572db8ddd15c9c291bb78993.tar.gz freebsd-ports-gnome-28b626a997cc2884572db8ddd15c9c291bb78993.tar.zst freebsd-ports-gnome-28b626a997cc2884572db8ddd15c9c291bb78993.zip |
- Mark BROKEN on 6.x: does not link
Reported by: pointyhat
Diffstat (limited to 'lang/gjs')
-rw-r--r-- | lang/gjs/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/gjs/Makefile b/lang/gjs/Makefile index 606e2ec70f98..b60fd1f490d7 100644 --- a/lang/gjs/Makefile +++ b/lang/gjs/Makefile @@ -29,8 +29,14 @@ USE_LDCONFIG= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 700000 +BROKEN= does not link on 6.x +.endif + post-patch: ${REINPLACE_CMD} -e 's|/usr/bin/python|/usr/bin/env python|g' \ ${WRKSRC}/scripts/make-tests -.include <bsd.port.mk> +.include <bsd.port.post.mk> |