From owner-svn-ports-all@FreeBSD.ORG Thu Feb 27 13:08:39 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6783C858; Thu, 27 Feb 2014 13:08:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 53507160B; Thu, 27 Feb 2014 13:08:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1RD8d3O054965; Thu, 27 Feb 2014 13:08:39 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1RD8dcl054964; Thu, 27 Feb 2014 13:08:39 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201402271308.s1RD8dcl054964@svn.freebsd.org> From: Emanuel Haupt Date: Thu, 27 Feb 2014 13:08:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346324 - head/www/decss X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Feb 2014 13:08:39 -0000 Author: ehaupt Date: Thu Feb 27 13:08:38 2014 New Revision: 346324 URL: http://svnweb.freebsd.org/changeset/ports/346324 QAT: https://qat.redports.org/buildarchive/r346324/ Log: - Support staging - Use shebangfix - Define DOCS option Deleted: head/www/decss/pkg-plist Modified: head/www/decss/Makefile Modified: head/www/decss/Makefile ============================================================================== --- head/www/decss/Makefile Thu Feb 27 13:02:27 2014 (r346323) +++ head/www/decss/Makefile Thu Feb 27 13:08:38 2014 (r346324) @@ -12,15 +12,21 @@ COMMENT= Strip cascading style sheets fr WRKSRC= ${WRKDIR}/source -NO_BUILD= YES -USES= perl5 +USES= perl5 shebangfix +NO_BUILD= yes + +PLIST_FILES= bin/decss +PORTDOCS= FAQ README decss-now.png decss_mirror.html \ + original_pigdog_article.txt +SHEBANG_FILES= DeCSS + +OPTIONS_DEFINE= DOCS -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/DeCSS ${PREFIX}/bin/decss - ${MKDIR} ${PREFIX}/share/doc/decss -.for i in FAQ README decss-now.png decss_mirror.html original_pigdog_article.txt - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/decss + ${INSTALL_SCRIPT} ${WRKSRC}/DeCSS ${STAGEDIR}${PREFIX}/bin/decss + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor .include