aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/schroedinger
diff options
context:
space:
mode:
authorjhale <jhale@FreeBSD.org>2012-10-16 17:28:20 +0800
committerjhale <jhale@FreeBSD.org>2012-10-16 17:28:20 +0800
commit6a0bcaf16a455fc7037d20fad8aaf9b87c0a70ce (patch)
tree0d6db87769f63a5fa4b2b8c19b0530e18e578415 /multimedia/schroedinger
parentd519552881b08b7b5328fc958d6075cde16d1335 (diff)
downloadfreebsd-ports-gnome-6a0bcaf16a455fc7037d20fad8aaf9b87c0a70ce.tar.gz
freebsd-ports-gnome-6a0bcaf16a455fc7037d20fad8aaf9b87c0a70ce.tar.zst
freebsd-ports-gnome-6a0bcaf16a455fc7037d20fad8aaf9b87c0a70ce.zip
- 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
Diffstat (limited to 'multimedia/schroedinger')
-rw-r--r--multimedia/schroedinger/Makefile16
1 files changed, 5 insertions, 11 deletions
diff --git a/multimedia/schroedinger/Makefile b/multimedia/schroedinger/Makefile
index 2b7627b7c67f..4c6fae398700 100644
--- a/multimedia/schroedinger/Makefile
+++ b/multimedia/schroedinger/Makefile
@@ -1,12 +1,9 @@
-# New ports collection makefile for: schroedinger
-# Date created: 2008-06-14
-# Whom: Gea-Suan Lin <gslin@gslin.org>
-#
+# Created by: Gea-Suan Lin <gslin@gslin.org>
# $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 <bsd.port.pre.mk>
-
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 <bsd.port.post.mk>
+.include <bsd.port.mk>