From owner-svn-ports-head@FreeBSD.ORG Mon Jul 29 22:08:48 2013 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 ESMTP id A232859B; Mon, 29 Jul 2013 22:08:48 +0000 (UTC) (envelope-from antoine@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 8FB3823A8; Mon, 29 Jul 2013 22:08:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6TM8m4a053019; Mon, 29 Jul 2013 22:08:48 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6TM8mCV053018; Mon, 29 Jul 2013 22:08:48 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201307292208.r6TM8mCV053018@svn.freebsd.org> From: Antoine Brodin Date: Mon, 29 Jul 2013 22:08:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323928 - head/devel/libpff 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.14 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: Mon, 29 Jul 2013 22:08:48 -0000 Author: antoine Date: Mon Jul 29 22:08:48 2013 New Revision: 323928 URL: http://svnweb.freebsd.org/changeset/ports/323928 Log: Make libpff fetchable again While here, mark that it is not ready for python 3 yet Modified: head/devel/libpff/Makefile Modified: head/devel/libpff/Makefile ============================================================================== --- head/devel/libpff/Makefile Mon Jul 29 22:06:54 2013 (r323927) +++ head/devel/libpff/Makefile Mon Jul 29 22:08:48 2013 (r323928) @@ -4,7 +4,8 @@ PORTNAME= libpff DISTVERSION= alpha-20120802 CATEGORIES= devel -MASTER_SITES= GOOGLE_CODE +MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiScU9qcG5ScEZKZE0/ \ + LOCAL/antoine MAINTAINER= antoine@FreeBSD.org COMMENT= Library and tools to access the PFF and the OFF formats @@ -13,8 +14,8 @@ LICENSE= LGPL3 GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-python -USES= pathfix gettext iconv -USE_PYTHON= yes +USES= gettext iconv pathfix +USE_PYTHON= -2.7 USE_LDCONFIG= yes LDFLAGS+= -L${LOCALBASE}/lib @@ -32,11 +33,11 @@ PORTEXAMPLES= * post-install: .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} .endif .if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/${PORTNAME}/* \ ${WRKSRC}/examples/${PORTNAME:S,lib,py,}/* ${EXAMPLESDIR} .endif