diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-03-11 00:25:27 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-03-11 00:25:27 +0800 |
commit | e7a579f7a68bd65d08d191bebb55db4348fcc13d (patch) | |
tree | a400e77df0d5ed4572f7eb2f3daa14821a107f68 /devel/gobject-introspection/Makefile | |
parent | e640f35823e60364b222bcbaae23bbfa6504a474 (diff) | |
download | marcuscom-ports-e7a579f7a68bd65d08d191bebb55db4348fcc13d.tar.gz marcuscom-ports-e7a579f7a68bd65d08d191bebb55db4348fcc13d.tar.zst marcuscom-ports-e7a579f7a68bd65d08d191bebb55db4348fcc13d.zip |
Update to 0.6.8.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13787 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gobject-introspection/Makefile')
-rw-r--r-- | devel/gobject-introspection/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/devel/gobject-introspection/Makefile b/devel/gobject-introspection/Makefile new file mode 100644 index 000000000..47fa936fc --- /dev/null +++ b/devel/gobject-introspection/Makefile @@ -0,0 +1,43 @@ +# 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.8 +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 + +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 + +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> + |