e7a6eaebb0
Reported by: pointyhat Approved by: portmgr (self)
60 lines
1.4 KiB
Makefile
60 lines
1.4 KiB
Makefile
# New ports collection makefile for: openquicktime
|
|
# Date created: Mon Sep 24 16:26:33 BRT 2001
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= openquicktime
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= openquicktime
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Portable library for handling Apple's QuickTime(TM) files
|
|
|
|
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gtk12
|
|
USE_GMAKE= yes
|
|
USE_LDCONFIG= yes
|
|
PKGDEINSTALL= ${PKGINSTALL}
|
|
|
|
OPTIONS= DEBUG "Turn on debugging" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+= --enable-debug=no
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 700000
|
|
BROKEN= Does not install
|
|
.endif
|
|
|
|
.if ${ARCH} != "i386"
|
|
BROKEN= Does not build on !i386
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|xCC|xc| ; s|-O2||' \
|
|
-e 's|ftello64|ftello| ; s|fseeko64|fseeko|' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
@${REINPLACE_CMD} -e 's|"m"|"g"|' \
|
|
${WRKSRC}/audioplugin/MP3/audioencoder/lame3.70/quantize-pvt.c
|
|
.if ${OSVERSION} >= 502126
|
|
@${REINPLACE_CMD} \
|
|
-e 's|-fpic||' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
.endif
|
|
|
|
post-install:
|
|
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} \
|
|
${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.post.mk>
|