summaryrefslogtreecommitdiff
path: root/multimedia/dirac/Makefile
diff options
context:
space:
mode:
authorTijl Coosemans <tijl@FreeBSD.org>2013-10-18 15:31:20 +0000
committerTijl Coosemans <tijl@FreeBSD.org>2013-10-18 15:31:20 +0000
commitd6917d6a9b525f1afdace3e5a8bd7a55e00130bc (patch)
tree2f8c8961a85f3a4a0409b4bc99681f3a854a25c8 /multimedia/dirac/Makefile
parent- General cleanup (diff)
- Distinguish clang from Microsoft cl.exe [1]
- Treat g++*, c++* and clang* the same. - Remove ?= assignments because this isn't a master port. - Remove libtool dependency. - Remove pkgconfig dependency. The port only installs a .pc file. - Disable use of MMX for now. It cannot be used in i386 packages and on amd64 the compiler already uses SSE. - Support staging. - Support WITH_DEBUG. PR: ports/173741 [1] Submitted by: Jeremy Huddleston Sequoia <jeremyhu@freedesktop.org> [1]
Notes
Notes: svn path=/head/; revision=330760
Diffstat (limited to 'multimedia/dirac/Makefile')
-rw-r--r--multimedia/dirac/Makefile15
1 files changed, 9 insertions, 6 deletions
diff --git a/multimedia/dirac/Makefile b/multimedia/dirac/Makefile
index d259de782cd8..2e7003e39409 100644
--- a/multimedia/dirac/Makefile
+++ b/multimedia/dirac/Makefile
@@ -3,21 +3,24 @@
PORTNAME= dirac
PORTVERSION= 1.0.2
-PORTREVISION?= 0
+PORTREVISION= 1
CATEGORIES= multimedia
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-codec/Dirac-${PORTVERSION}
MAINTAINER= multimedia@FreeBSD.org
-COMMENT?= Open source video codec from the BBC
+COMMENT= Open source video codec from the BBC
-USE_AUTOTOOLS= libtool
GNU_CONFIGURE= yes
-USES= gmake pathfix pkgconfig
+USES= gmake pathfix
USE_LDCONFIG= yes
-CONFIGURE_ENV?= HAVE_LATEX=${FALSE} HAVE_DVIPDFM=${FALSE} \
+CONFIGURE_ARGS= --disable-mmx
+CONFIGURE_ENV= HAVE_LATEX=${FALSE} HAVE_DVIPDFM=${FALSE} \
HAVE_DOXYGEN=${FALSE} HAVE_DOT=${FALSE}
CPPFLAGS+= -I${LOCALBASE}/include
-NO_STAGE= yes
+.if defined(WITH_DEBUG)
+CONFIGURE_ARGS+=--enable-debug
+.endif
+
.include <bsd.port.mk>