mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
d6917d6a9b
- 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]
27 lines
597 B
Makefile
27 lines
597 B
Makefile
# Created by: Bruce M Simpson <bms@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dirac
|
|
PORTVERSION= 1.0.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-codec/Dirac-${PORTVERSION}
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= Open source video codec from the BBC
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake pathfix
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_ARGS= --disable-mmx
|
|
CONFIGURE_ENV= HAVE_LATEX=${FALSE} HAVE_DVIPDFM=${FALSE} \
|
|
HAVE_DOXYGEN=${FALSE} HAVE_DOT=${FALSE}
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+=--enable-debug
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|