From owner-svn-ports-head@freebsd.org Mon Feb 6 09:49:05 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CFCEDCD3BA5; Mon, 6 Feb 2017 09:49:05 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9CB7C176A; Mon, 6 Feb 2017 09:49:05 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v169n4sw090258; Mon, 6 Feb 2017 09:49:04 GMT (envelope-from decke@FreeBSD.org) Received: (from decke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v169n4B2090257; Mon, 6 Feb 2017 09:49:04 GMT (envelope-from decke@FreeBSD.org) Message-Id: <201702060949.v169n4B2090257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: decke set sender to decke@FreeBSD.org using -f From: Bernhard Froehlich Date: Mon, 6 Feb 2017 09:49:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433480 - head/multimedia/tvheadend X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Feb 2017 09:49:05 -0000 Author: decke Date: Mon Feb 6 09:49:04 2017 New Revision: 433480 URL: https://svnweb.freebsd.org/changeset/ports/433480 Log: - Fix build failure when devel/libinotify is installed because it is silently enabled but not properly linked. - Bump PORTREVISION PR: 208795 Submitted by: Vladimir Kondratyev Reported by: Daniel Becker Modified: head/multimedia/tvheadend/Makefile Modified: head/multimedia/tvheadend/Makefile ============================================================================== --- head/multimedia/tvheadend/Makefile Mon Feb 6 09:04:45 2017 (r433479) +++ head/multimedia/tvheadend/Makefile Mon Feb 6 09:49:04 2017 (r433480) @@ -4,7 +4,7 @@ PORTNAME= tvheadend PORTVERSION= 4.0.8 DISTVERSIONPREFIX= v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia MAINTAINER= decke@FreeBSD.org @@ -48,8 +48,8 @@ CONFIGURE_ARGS+=--disable-dvbscan --disa CFLAGS+= -I${LOCALBASE}/include -Wno-conversion -Wno-int-to-pointer-cast LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo -lssl -lcrypto -lz -OPTIONS_DEFINE= AVAHI DVBCSA HDHOMERUN TRANSCODING XMLTV -OPTIONS_DEFAULT=DVBCSA HDHOMERUN +OPTIONS_DEFINE= AVAHI DVBCSA HDHOMERUN INOTIFY TRANSCODING XMLTV +OPTIONS_DEFAULT=DVBCSA HDHOMERUN INOTIFY AVAHI_LIB_DEPENDS= libavahi-client.so:net/avahi-app @@ -61,6 +61,11 @@ HDHOMERUN_DESC= Native support for HDHo HDHOMERUN_LIB_DEPENDS= libhdhomerun.so:multimedia/libhdhomerun HDHOMERUN_CONFIGURE_ENABLE= hdhomerun_client +INOTIFY_DESC= File system notifications support +INOTIFY_LIB_DEPENDS= libinotify.so:devel/libinotify +INOTIFY_CONFIGURE_ENABLE= inotify +INOTIFY_LDFLAGS= -linotify + TRANSCODING_DESC= Transcoding for mobile and web clients TRANSCODING_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg TRANSCODING_CONFIGURE_ENABLE= libav