From owner-svn-ports-head@FreeBSD.ORG Tue Oct 16 09:28:21 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 87DD724D; Tue, 16 Oct 2012 09:28:21 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 6FA3C8FC14; Tue, 16 Oct 2012 09:28:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9G9SLUe004599; Tue, 16 Oct 2012 09:28:21 GMT (envelope-from jhale@svn.freebsd.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9G9SLZw004596; Tue, 16 Oct 2012 09:28:21 GMT (envelope-from jhale@svn.freebsd.org) Message-Id: <201210160928.q9G9SLZw004596@svn.freebsd.org> From: "Jason E. Hale" Date: Tue, 16 Oct 2012 09:28:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305959 - head/multimedia/schroedinger 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: Tue, 16 Oct 2012 09:28:21 -0000 Author: jhale Date: Tue Oct 16 09:28:20 2012 New Revision: 305959 URL: http://svn.freebsd.org/changeset/ports/305959 Log: - Prevent linking to -lpthread directly - Remove LICENSE_FILE_GPLv2 and LICENSE_FILE_LGPL20 since these licenses are in Templates/Licenses - Bump PORTREVISION since installed files will be affected - Trim Makefile header PR: ports/170509 Submitted by: myself Approved by: maintainer timeout (5 weeks) makc, avilla (mentors, implicit) Feature safe: yes Modified: head/multimedia/schroedinger/Makefile (contents, props changed) Modified: head/multimedia/schroedinger/Makefile ============================================================================== --- head/multimedia/schroedinger/Makefile Tue Oct 16 09:14:11 2012 (r305958) +++ head/multimedia/schroedinger/Makefile Tue Oct 16 09:28:20 2012 (r305959) @@ -1,12 +1,9 @@ -# New ports collection makefile for: schroedinger -# Date created: 2008-06-14 -# Whom: Gea-Suan Lin -# +# Created by: Gea-Suan Lin # $FreeBSD$ -# PORTNAME= schroedinger PORTVERSION= 1.0.11 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://diracvideo.org/download/schroedinger/ MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,8 +13,6 @@ COMMENT= High-speed Dirac codec LICENSE= GPLv2 LGPL20 MIT MPL LICENSE_COMB= dual -LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING.GPL -LICENSE_FILE_LGPL20= ${WRKSRC}/COPYING.LGPL LICENSE_FILE_MIT= ${WRKSRC}/COPYING.MIT LICENSE_FILE_MPL= ${WRKSRC}/COPYING.MPL @@ -28,9 +23,8 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes MAKE_JOBS_SAFE= yes -.include - post-patch: - @${REINPLACE_CMD} -e 's|^pkgconfigdir=.*|pkgconfigdir="\\$$(prefix)/libdata/pkgconfig"|' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|^pkgconfigdir=.*|pkgconfigdir="\\$${prefix}/libdata/pkgconfig"|' \ + -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure -.include +.include