mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
8337fc6d5f
Details: - Missing symbol sf_version_string, not auto-resolved by pkg + rebuild. - Bump PORTREVISION for consumers.
43 lines
863 B
Makefile
43 lines
863 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= sabbu
|
|
PORTVERSION= 0.3.0
|
|
PORTREVISION= 20
|
|
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 compiler:c++11-lang gmake pkgconfig iconv sdl gnome
|
|
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>
|