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
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# Created by: Koop Mast <kwm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= glib-networking
|
|
PORTVERSION= 2.44.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Network-related giomodules for glib
|
|
|
|
BUILD_DEPENDS= ca_root_nss>=0:${PORTSDIR}/security/ca_root_nss \
|
|
gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas
|
|
LIB_DEPENDS= libgnutls.so:${PORTSDIR}/security/gnutls \
|
|
libgcrypt.so:${PORTSDIR}/security/libgcrypt \
|
|
libp11-kit.so:${PORTSDIR}/security/p11-kit \
|
|
libdbus-1.so:${PORTSDIR}/devel/dbus \
|
|
libproxy.so:${PORTSDIR}/net/libproxy
|
|
RUN_DEPENDS= ca_root_nss>=0:${PORTSDIR}/security/ca_root_nss \
|
|
gsettings-desktop-schemas>=0:${PORTSDIR}/devel/gsettings-desktop-schemas
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
USES= gettext gmake libtool pathfix pkgconfig tar:xz
|
|
USE_GNOME= glib20 intltool
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-ca-certificates=${LOCALBASE}/share/certs/ca-root-nss.crt
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e' s|-Wmissing-include-dirs||g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|