mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gtksourceview
|
|
PORTVERSION= 3.24.8
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11-toolkits gnome
|
|
MASTER_SITES= GNOME
|
|
PKGNAMESUFFIX= 3
|
|
DIST_SUBDIR= gnome3
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Text widget that adds syntax highlighting to the GtkTextView widget
|
|
|
|
USES= compiler:c11 tar:xz
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
BUILD_DEPENDS= vala:lang/vala
|
|
LIB_DEPENDS= libfribidi.so:converters/fribidi
|
|
|
|
USES+= gettext gmake gnome libtool pathfix pkgconfig
|
|
USE_CSTD= c11
|
|
USE_GNOME= cairo gdkpixbuf2 gnomeprefix gtk30 intlhack \
|
|
introspection:build libxml2 referencehack
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS= --enable-compile-warnings=no \
|
|
--enable-glade-catalog=no \
|
|
--with-pkgconfigdir=${PREFIX}/libdata/pkgconfig \
|
|
--enable-introspection
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|tests testsuite||g' \
|
|
${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|--warn-all||g' \
|
|
${WRKSRC}/gtksourceview/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
.endif
|