From owner-svn-ports-all@FreeBSD.ORG Sun Jun 22 15:06:44 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 E33E1CAE; Sun, 22 Jun 2014 15:06:43 +0000 (UTC) Received: from mail-we0-x22e.google.com (mail-we0-x22e.google.com [IPv6:2a00:1450:400c:c03::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 085292CD0; Sun, 22 Jun 2014 15:06:42 +0000 (UTC) Received: by mail-we0-f174.google.com with SMTP id u57so5824865wes.33 for ; Sun, 22 Jun 2014 08:06:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=12yoFcP4+6HH7q64SkWQVyb0R+O7fYEL8biaDRR78+w=; b=as+ME5lBx+hkk6qG3mnMS4t54Ox86ZXYBPVWlxjw2pJt88aQRcO/+t72MJBwWJ2FQ2 5yU2zWnPifZ4iqaTaLD8u4QF5v7EWc1bP5ZVJQnlhsfdir5Ks6j5X8e4qtef5A/lzTvw +S7q6kORikpr5Q62Fa0VIpU8/c0p7nE42qmQKmCIWGJsNNKZgNvc60LHY0XKedH4ZkvG y2I1FiZf+msnN68Hl65wPxGx18IWbORZQFbug6yR3PGjuoQzYXzldmQqVHmZkkWRcMfC buFjum086HYS3pkT7HCDtQrmpKeUJxbyy9yb32KhW3gIdLPdKgJjekjK8bT4WVdhhK6W fy8Q== MIME-Version: 1.0 X-Received: by 10.180.38.10 with SMTP id c10mr9049536wik.59.1403449600515; Sun, 22 Jun 2014 08:06:40 -0700 (PDT) Received: by 10.217.9.134 with HTTP; Sun, 22 Jun 2014 08:06:40 -0700 (PDT) Reply-To: araujo@FreeBSD.org In-Reply-To: References: <201406221443.s5MEhoCY088404@svn.freebsd.org> Date: Sun, 22 Jun 2014 23:06:40 +0800 Message-ID: Subject: Re: svn commit: r358810 - head/sysutils/py-stdiff From: Marcelo Araujo To: William Grzybowski Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , ports-committers X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 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: Sun, 22 Jun 2014 15:06:44 -0000 Hello William, Thanks, will fix it tomorrow!!! 2014-06-22 22:51 GMT+08:00 William Grzybowski : > On Sun, Jun 22, 2014 at 11:43 AM, Marcelo Araujo > wrote: > > Author: araujo > > Date: Sun Jun 22 14:43:50 2014 > > New Revision: 358810 > > URL: http://svnweb.freebsd.org/changeset/ports/358810 > > QAT: https://qat.redports.org/buildarchive/r358810/ > > > > Log: > > - Stageify. > > > > Modified: > > head/sysutils/py-stdiff/Makefile > > > > Modified: head/sysutils/py-stdiff/Makefile > > > ============================================================================== > > --- head/sysutils/py-stdiff/Makefile Sun Jun 22 14:42:27 2014 > (r358809) > > +++ head/sysutils/py-stdiff/Makefile Sun Jun 22 14:43:50 2014 > (r358810) > > @@ -15,15 +15,14 @@ USE_PYDISTUTILS= yes > > PORTDOCS= * > > .endif > > > > -NO_STAGE= yes > > post-install: > > .if !defined(NOPORTDOCS) > > - ${MKDIR} ${DOCSDIR} > > - $(INSTALL_MAN) ${WRKSRC}/INSTALL.txt ${DOCSDIR}/ > > - $(INSTALL_MAN) ${WRKSRC}/LICENSE.txt ${DOCSDIR}/ > > - (cd ${WRKSRC}/ && ${COPYTREE_SHARE} docs ${DOCSDIR}/) > > + ${MKDIR} ${STAGEDIR}${DOCSDIR} > > + $(INSTALL_MAN) ${WRKSRC}/INSTALL.txt ${STAGEDIR}/${DOCSDIR}/ > > + $(INSTALL_MAN) ${WRKSRC}/LICENSE.txt ${STAGEDIR}/${DOCSDIR}/ > > + (cd ${WRKSRC}/ && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}/) > > .endif > > @if [ ! -f ${PREFIX}/etc/stdiff.conf ]; then \ > > - ${CP} -p ${PREFIX}/etc/stdiff.conf.sample \ > > + ${CP} -p ${STAGEDIR}${PREFIX}/etc/stdiff.conf.sample \ > > ${PREFIX}/etc/stdiff.conf; fi > > .include > > Hi, > > NOPORTDOCS can be dropped, its deprecated plus stage handles docs > automatically. > The copy of .sample configure file is done only in pkg-plist, also > there is a @sample helper now. > > > Cheers > -- Marcelo Araujo araujo@FreeBSD.org