mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 03:16:28 -04:00
cc1: warnings being treated as errors jbsrc/lib/jb-main.c: In function 'jb_main': jbsrc/lib/jb-main.c:164: warning: 'g_type_init' is deprecated (declared at +/usr/local/include/glib-2.0/gobject/gtype.h:669) cc1: warnings being treated as errors jbsrc/lib/jb-util.c: In function 'print_warning_or_error': jbsrc/lib/jb-util.c:242: warning: function might be possible candidate for 'printf' format attribute ERROR: cannot build jb *** [do-configure] Error code 1 Reported by: pkg-fallout
41 lines
943 B
Makefile
41 lines
943 B
Makefile
# Created by: Jean-Yves Lefort <jylefort@brutele.be>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= link-monitor-applet
|
|
PORTVERSION= 3.0
|
|
CATEGORIES= net ipv6
|
|
MASTER_SITES= SAVANNAH/${PORTNAME:S/-applet//}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A GNOME applet displaying the round-trip time to one or more hosts
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BROKEN= Does not build
|
|
|
|
BUILD_DEPENDS= gob2:${PORTSDIR}/devel/gob2
|
|
LIB_DEPENDS= GeoIP:${PORTSDIR}/net/GeoIP
|
|
|
|
USE_BZIP2= yes
|
|
USE_GNOME= gnomepanel gnomeprefix libgnomeui librsvg2
|
|
USES= gettext
|
|
INSTALLS_OMF= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
GCONF_SCHEMAS= link-monitor-applet.schemas
|
|
|
|
NO_STAGE= yes
|
|
do-configure:
|
|
@(cd ${WRKSRC} && ${SH} jb configure cc="${CC}" cflags="${CFLAGS}" \
|
|
cppflags="${CPPFLAGS}" ldflags="${LDFLAGS}" \
|
|
libdir="${PREFIX}/libdata" prefix="${PREFIX}")
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC} && ${SH} jb build)
|
|
|
|
do-install:
|
|
@(cd ${WRKSRC} && ${SH} jb install)
|
|
|
|
.include <bsd.port.mk>
|