mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +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
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
# Created by: Olivier Duchateau
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= corebird
|
|
PORTVERSION= 1.7.4
|
|
PORTREVISION= 3
|
|
CATEGORIES= net-im
|
|
|
|
MAINTAINER= cpm@FreeBSD.org
|
|
COMMENT= GTK3 Twitter client written in Vala
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= valac:lang/vala
|
|
LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \
|
|
libnotify.so:devel/libnotify \
|
|
libjson-glib-1.0.so:devel/json-glib \
|
|
libgspell-1.so:textproc/gspell
|
|
|
|
USES= autoreconf compiler:c++11-lang gmake libtool pkgconfig sqlite
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= baedert
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 intltool libxml2 pango
|
|
INSTALLS_ICONS= yes
|
|
|
|
OPTIONS_DEFINE= DEBUG GSTREAMER NLS
|
|
OPTIONS_DEFAULT= GSTREAMER
|
|
OPTIONS_SUB= yes
|
|
|
|
DEBUG_CONFIGURE_ON= --enable-debug
|
|
|
|
GSTREAMER_LIB_DEPENDS= libgstbase-1.0.so:multimedia/gstreamer1 \
|
|
libgstreamer-1.0.so:multimedia/gstreamer1
|
|
GSTREAMER_USE= gstreamer1=yes,bad,good,gtk,hls,libav,soup,x,ximagesrc
|
|
GSTREAMER_CONFIGURE_OFF= --disable-video
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_OFF= --disable-nls
|
|
|
|
GLIB_SCHEMAS= org.baedert.corebird.gschema.xml
|
|
|
|
post-extract:
|
|
@${REINPLACE_CMD} -e 's|tests||' ${WRKSRC}/Makefile.am
|
|
@${REINPLACE_CMD} -e 's|org.baedert.corebird.desktop.in|corebird.desktop.in|' \
|
|
${WRKSRC}/data/Makefile.am
|
|
@cd ${WRKSRC}/data && ${MV} org.baedert.corebird.desktop.in \
|
|
corebird.desktop.in
|
|
|
|
# Replace locales files in right place
|
|
post-configure:
|
|
@${REINPLACE_CMD} -e 's|[$$][(]DATADIRNAME[)]|share|' \
|
|
${WRKSRC}/po/Makefile
|
|
|
|
.include <bsd.port.mk>
|