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
42 lines
853 B
Makefile
42 lines
853 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= sabbu
|
|
PORTVERSION= 0.3.0
|
|
PORTREVISION= 19
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Sabbu%20${PORTVERSION}
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Program used to time subtitles
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libsndfile.so:audio/libsndfile
|
|
|
|
USES= tar:bzip2 gmake compiler:c++11-lang pkgconfig iconv
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --without-ffmpeg
|
|
|
|
USE_SDL= sdl
|
|
USE_CXXSTD= gnu++98
|
|
USE_GNOME= gtk20
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -lpthread -L${LOCALBASE}/lib
|
|
LDFLAGS+= -lgmodule-2.0
|
|
|
|
OPTIONS_DEFINE= GTKSPELL NLS
|
|
OPTIONS_DEFAULT=GTKSPELL
|
|
|
|
GTKSPELL_LIB_DEPENDS= libgtkspell.so:textproc/gtkspell
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= WITH_NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= WITH_NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|