1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00

-Wno-unused-value is needed to build with base GCC.

While here, add USES=gnome.

PR:		232608
Submitted by:	Piotr Kubaj
This commit is contained in:
Mark Linimon 2018-12-06 23:40:15 +00:00
parent aacb1c29a6
commit ba33f37833
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=486809

View File

@ -22,7 +22,8 @@ BUILD_DEPENDS= vapigen:lang/vala \
LIB_DEPENDS= libjson-glib-1.0.so:devel/json-glib
GNU_CONFIGURE= yes
USES= gmake libtool pathfix pkgconfig python:run shebangfix
USES= compiler gmake gnome libtool pathfix pkgconfig python:run \
shebangfix
USE_GNOME= gnomedocutils:build glib20 intltool intlhack libxslt \
introspection:build gtk30
USE_XORG= x11
@ -43,4 +44,10 @@ CONFIGURE_ARGS= --disable-static \
--enable-vala \
--with-gtk=3
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${CHOSEN_COMPILER_TYPE} == gcc
CFLAGS+= -Wno-unused-value
.endif
.include <bsd.port.post.mk>