From owner-svn-ports-head@FreeBSD.ORG Thu Jan 23 19:57:32 2014 Return-Path: Delivered-To: svn-ports-head@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 ESMTPS id A4CEB949; Thu, 23 Jan 2014 19:57:32 +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 913DB143B; Thu, 23 Jan 2014 19:57:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0NJvWMX000539; Thu, 23 Jan 2014 19:57:32 GMT (envelope-from mva@svn.freebsd.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0NJvWGf000538; Thu, 23 Jan 2014 19:57:32 GMT (envelope-from mva@svn.freebsd.org) Message-Id: <201401231957.s0NJvWGf000538@svn.freebsd.org> From: Marcus von Appen Date: Thu, 23 Jan 2014 19:57:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340852 - head/audio/py-shout 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.17 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, 23 Jan 2014 19:57:32 -0000 Author: mva Date: Thu Jan 23 19:57:32 2014 New Revision: 340852 URL: http://svnweb.freebsd.org/changeset/ports/340852 QAT: https://qat.redports.org/buildarchive/r340852/ Log: - Enable stagedir support - Add LICENSE - Convert to PYDISTUTILS_AUTOPLIST - Restrict the supported python versions Deleted: head/audio/py-shout/pkg-plist Modified: head/audio/py-shout/Makefile Modified: head/audio/py-shout/Makefile ============================================================================== --- head/audio/py-shout/Makefile Thu Jan 23 19:55:14 2014 (r340851) +++ head/audio/py-shout/Makefile Thu Jan 23 19:57:32 2014 (r340852) @@ -11,20 +11,21 @@ DISTNAME= ${PORTNAME}-python-${PORTVERSI MAINTAINER= python@FreeBSD.org COMMENT= Python bindings for libshout2 +LICENSE= LGPL20 + LIB_DEPENDS= libshout.so:${PORTSDIR}/audio/libshout2 EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} USES= pkgconfig -NO_STAGE= yes -USE_PYTHON= yes +USE_PYTHON= 2 USE_PYDISTUTILS= yes -PYDISTUTILS_PKGNAME= ${PORTNAME}-python +PYDISTUTILS_AUTOPLIST= yes + +PORTEXAMPLES= example.py -.if !defined(NOPORTEXAMPLES) post-install: - @${MKDIR} ${EXAMPLESDIR} - ${CP} ${WRKSRC}/example.py ${EXAMPLESDIR} -.endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${CP} ${WRKSRC}/example.py ${STAGEDIR}${EXAMPLESDIR} .include