mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
4a4ec28d37
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
45 lines
754 B
Makefile
45 lines
754 B
Makefile
# Created by: nork@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= liveMedia
|
|
PORTVERSION= 2013.11.29
|
|
PORTEPOCH= 2
|
|
CATEGORIES= net devel
|
|
MASTER_SITES= LOCAL/wg \
|
|
http://www.live555.com/liveMedia/public/
|
|
DISTNAME= live.${PORTVERSION}
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= LIVE.COM Streaming Media
|
|
|
|
LICENSE= LGPL21
|
|
|
|
NO_CDROM= 'dated material'
|
|
|
|
WRKSRC= ${WRKDIR}/live
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
CONFIGURE_SCRIPT= genMakefiles
|
|
CONFIGURE_ARGS= fixed-${OPSYS:tl}
|
|
|
|
USES= gmake
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CFLAGS+= -fPIC
|
|
.else
|
|
CFLAGS+= -fpic
|
|
.endif
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
BROKEN= Does not compile
|
|
.endif
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/config.fixed-${OPSYS:tl} ${WRKSRC}/
|
|
|
|
.include <bsd.port.post.mk>
|