lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# Created by: Olivier Duchateau
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= uget
|
|
PORTVERSION= 2.0.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/urlget/${PORTNAME}%20%28stable%29/${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Download manager application
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= curl-config:ftp/curl
|
|
LIB_DEPENDS= libnotify.so:devel/libnotify \
|
|
libgcrypt.so:security/libgcrypt \
|
|
libgpg-error.so:security/libgpg-error \
|
|
libgnutls.so:security/gnutls \
|
|
libcurl.so:ftp/curl
|
|
RUN_DEPENDS= aria2c:www/aria2
|
|
|
|
USES= compiler:c11 gettext-tools gmake pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= glib20 gtk30 intltool cairo
|
|
INSTALLS_ICONS= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
# Avoid warning, with redefinition of typedef (C11 feature)
|
|
CFLAGS+= -Wno-typedef-redefinition
|
|
|
|
CONFIGURE_ARGS=--enable-appindicator=no \
|
|
--disable-pwmd \
|
|
--disable-rss-notify \
|
|
--enable-unix-socket \
|
|
--with-gnutls=yes
|
|
|
|
OPTIONS_DEFINE= GSTREAMER NLS
|
|
OPTIONS_DEFAULT= GSTREAMER
|
|
GSTREAMER_USE= gstreamer1=yes
|
|
GSTREAMER_CONFIGURE_ENABLE= gstreamer
|
|
NLS_USES= gettext-runtime
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
OPTIONS_SUB= yes
|
|
|
|
.include <bsd.port.mk>
|