From owner-svn-ports-all@FreeBSD.ORG Fri Sep 27 09:10:59 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C7167F1C; Fri, 27 Sep 2013 09:10:59 +0000 (UTC) (envelope-from araujo@FreeBSD.org) 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 B49872D6F; Fri, 27 Sep 2013 09:10:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8R9AxFE062678; Fri, 27 Sep 2013 09:10:59 GMT (envelope-from araujo@svn.freebsd.org) Received: (from araujo@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8R9AxKD062677; Fri, 27 Sep 2013 09:10:59 GMT (envelope-from araujo@svn.freebsd.org) Message-Id: <201309270910.r8R9AxKD062677@svn.freebsd.org> From: Marcelo Araujo Date: Fri, 27 Sep 2013 09:10:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328444 - head/www/youtube_dl 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.14 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: Fri, 27 Sep 2013 09:10:59 -0000 Author: araujo Date: Fri Sep 27 09:10:59 2013 New Revision: 328444 URL: http://svnweb.freebsd.org/changeset/ports/328444 Log: - now it is stagify. - bump PORTREVISION. Submitted by: Jimmy Olgeni Modified: head/www/youtube_dl/Makefile Modified: head/www/youtube_dl/Makefile ============================================================================== --- head/www/youtube_dl/Makefile Fri Sep 27 08:44:25 2013 (r328443) +++ head/www/youtube_dl/Makefile Fri Sep 27 09:10:59 2013 (r328444) @@ -2,6 +2,7 @@ PORTNAME= youtube_dl PORTVERSION= 2013.09.24.2 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://youtube-dl.org/downloads/${PORTVERSION}/ \ http://ftp.de.netbsd.org/pub/unix/Linux/MIRROR.gentoo/distfiles/ @@ -26,8 +27,8 @@ OPTIONS_DEFAULT=RTMPDUMP BASH_DESC= Install programmable completions for Bash RTMPDUMP_DESC= Use RTMPDUMP to download rtmp video streams -PLIST_FILES= bin/youtube-dl -MAN1= youtube-dl.1 +PLIST_FILES= bin/youtube-dl \ + man/man1/youtube-dl.1.gz WRKSRC= ${WRKDIR}/youtube-dl @@ -55,12 +56,12 @@ post-extract: @${RM} -f ${WRKSRC}/youtube-dl do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/youtube-dl ${PREFIX}/bin/youtube-dl - @${INSTALL_DATA} ${WRKSRC}/youtube-dl.1 ${PREFIX}/man/man1 + @${INSTALL_SCRIPT} ${WRKSRC}/youtube-dl ${STAGEDIR}${PREFIX}/bin/youtube-dl + @${INSTALL_DATA} ${WRKSRC}/youtube-dl.1 ${STAGEDIR}${PREFIX}/man/man1 .if ${PORT_OPTIONS:MBASH} - ${MKDIR} ${PREFIX}/etc/bash_completion.d + ${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/youtube-dl.bash-completion \ - ${PREFIX}/etc/bash_completion.d/youtube-dl.sh + ${STAGEDIR}${PREFIX}/etc/bash_completion.d/youtube-dl.sh .endif .if ${PORT_OPTIONS:MFFMPEG}