diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-06-06 18:17:25 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-06-06 18:17:25 +0800 |
commit | 890b986b068b2563ba75ad43b81cb122ad7d0ec3 (patch) | |
tree | fc64343221855c458f63821abf5be7834458c0c2 /devel/gobject-introspection/Makefile | |
parent | 7b4c86f2b5a7f3e637aa96dee6441077d56818aa (diff) | |
download | marcuscom-ports-890b986b068b2563ba75ad43b81cb122ad7d0ec3.tar.gz marcuscom-ports-890b986b068b2563ba75ad43b81cb122ad7d0ec3.tar.zst marcuscom-ports-890b986b068b2563ba75ad43b81cb122ad7d0ec3.zip |
Update to 0.6.14.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14188 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gobject-introspection/Makefile')
-rw-r--r-- | devel/gobject-introspection/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/devel/gobject-introspection/Makefile b/devel/gobject-introspection/Makefile new file mode 100644 index 000000000..347289e76 --- /dev/null +++ b/devel/gobject-introspection/Makefile @@ -0,0 +1,45 @@ +# New ports collection makefile for: gobject-introspection +# Date created: 19 July 2009 +# Whom: Alexander Logvinov <avl@FreeBSD.org> +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= gobject-introspection +PORTVERSION= 0.6.14 +CATEGORIES= devel +MASTER_SITES= GNOME +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Generate interface introspection data for GObject libraries + +BUILD_DEPENDS= flex:${PORTSDIR}/textproc/flex +LIB_DEPENDS= ffi.5:${PORTSDIR}/devel/libffi \ + cairo.2:${PORTSDIR}/graphics/cairo + +USE_BZIP2= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_GNOME= gnomehack glib20 +USE_PYTHON= yes +USE_BISON= both +USE_GETTEXT= yes +USE_AUTOTOOLS= libtool:22 +USE_LDCONFIG= yes +MAKE_JOBS_UNSAFE=yes + +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +MAN1= g-ir-compiler.1 g-ir-generate.1 g-ir-scanner.1 + +.include <bsd.port.pre.mk> + +post-patch: + @${REINPLACE_CMD} -e 's|'cc'|'${CC:Q}'|g' \ + ${WRKSRC}/giscanner/sourcescanner.py + +.include <bsd.port.post.mk> + |