From owner-svn-ports-head@freebsd.org Thu Jul 21 23:35:47 2016 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 846E5B9F89E; Thu, 21 Jul 2016 23:35:47 +0000 (UTC) (envelope-from madpilot@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 5704F1DB0; Thu, 21 Jul 2016 23:35:47 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6LNZkaP095013; Thu, 21 Jul 2016 23:35:46 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6LNZkeT095012; Thu, 21 Jul 2016 23:35:46 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201607212335.u6LNZkeT095012@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 21 Jul 2016 23:35:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418898 - head/www/lighttpd-mod_h264_streaming 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.22 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: Thu, 21 Jul 2016 23:35:47 -0000 Author: madpilot Date: Thu Jul 21 23:35:46 2016 New Revision: 418898 URL: https://svnweb.freebsd.org/changeset/ports/418898 Log: - Silence portlint warnings by reordering some directives - Unsilence INSTALL_* commands PR: 211272 Submitted by: Piotr Kubaj (maintainer) MFH: 2016Q3 Modified: head/www/lighttpd-mod_h264_streaming/Makefile Modified: head/www/lighttpd-mod_h264_streaming/Makefile ============================================================================== --- head/www/lighttpd-mod_h264_streaming/Makefile Thu Jul 21 22:28:56 2016 (r418897) +++ head/www/lighttpd-mod_h264_streaming/Makefile Thu Jul 21 23:35:46 2016 (r418898) @@ -8,15 +8,15 @@ DISTNAME= lighttpd-${PORTVERSION} COMMENT= H264 streaming module for lighttpd -BUILD_DEPENDS= ${LOCALBASE}/sbin/lighttpd:www/lighttpd -RUN_DEPENDS= ${LOCALBASE}/sbin/lighttpd:www/lighttpd - LICENSE= CCPL.BY-NC-SA.30 LICENSE_NAME= Creative Commons Attribution-NonCommercial-ShareAlike 3.0 \ Unported License LICENSE_FILE= ${FILESDIR}/COPYING.mod_h264_streaming -LICENSE_DISTFILES= ${PATCHFILES} LICENSE_PERMS= dist-mirror pkg-mirror +LICENSE_DISTFILES= ${PATCHFILES} + +BUILD_DEPENDS= ${LOCALBASE}/sbin/lighttpd:www/lighttpd +RUN_DEPENDS= ${LOCALBASE}/sbin/lighttpd:www/lighttpd MASTERDIR= ${.CURDIR}/../lighttpd DESCR= ${.CURDIR}/pkg-descr @@ -34,10 +34,10 @@ _BUILDING_LIGHTTPD_MODULE= yes do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/lib/lighttpd - @${INSTALL_LIB} ${WRKSRC}/src/.libs/${PORTNAME}.so \ + ${INSTALL_LIB} ${WRKSRC}/src/.libs/${PORTNAME}.so \ ${STAGEDIR}${PREFIX}/lib/lighttpd @${MKDIR} ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d - @${INSTALL_DATA} ${FILESDIR}/h264_streaming.conf \ + ${INSTALL_DATA} ${FILESDIR}/h264_streaming.conf \ ${STAGEDIR}${PREFIX}/etc/lighttpd/conf.d/h264_streaming.conf.sample .include "${MASTERDIR}/Makefile"