d129587b5d
The offical GNOME 3.16 release notes can be found at https://help.gnome.org/misc/release-notes/3.16/ Upgrade instructions for port users: Delete the old tracker package with: # pkg delete -f tracker And user port upgrade tool of choice to upgrade. Thanks to Antoine Brodin for running the exp-runs. This release was made possible by the following people: Gustau Perez Ting-Wei_Lan PR: 201980
36 lines
929 B
Makefile
36 lines
929 B
Makefile
# Created by: Alexander Logvinov <avl@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gobject-introspection
|
|
PORTVERSION= 1.44.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome3
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Generate interface introspection data for GObject libraries
|
|
|
|
# we need cairo otherwise the generated Cairo gir is broken
|
|
BUILD_DEPENDS= cairo-trace:${PORTSDIR}/graphics/cairo
|
|
LIB_DEPENDS= libffi.so:${PORTSDIR}/devel/libffi
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
USES= bison gettext gmake libtool pathfix pkgconfig \
|
|
python:2 tar:xz
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= glib20
|
|
USE_LDCONFIG= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --disable-doctool
|
|
INSTALL_TARGET= install-strip
|
|
|
|
# Force it to put the .cache in ${WRKSRC} instead of ~/.cache. ports/143260
|
|
MAKE_ENV= HOME=${WRKDIR}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|'gcc'|'cc'|g' \
|
|
${WRKSRC}/giscanner/dumper.py
|
|
|
|
.include <bsd.port.mk>
|