mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-31 10:46:16 +00:00
328b6db785
one, update all appropriate references (*_DEPENDS, comments, etc): ports/graphics/libfame --> ports/multimedia/libfame ports/graphics/libquicktime --> ports/multimedia/libquicktime ports/graphics/mpeg --> ports/multimedia/mpeg ports/graphics/mpeg_encode --> ports/multimedia/mpeg_encode ports/graphics/mpeg_play --> ports/multimedia/mpeg_play ports/graphics/mtv --> ports/multimedia/mtv ports/graphics/smpeg --> ports/multimedia/smpeg ports/graphics/totem --> ports/multimedia/totem ports/graphics/transcode --> ports/multimedia/transcode ports/graphics/xanim --> ports/multimedia/xanim ports/graphics/xmps --> ports/multimedia/xmps Repo copied by: cvs (joe) Approved by: portmgr (self & no objections)
39 lines
1018 B
Makefile
39 lines
1018 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: flip
|
|
# Date created: Mar 4, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= flip
|
|
PORTVERSION= 2.2.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.reptilelabour.com/software/files/flip/
|
|
|
|
MAINTAINER= ports@freebsd.org
|
|
COMMENT= "Load a sequence of TIFF files and play them back at a target frame rate"
|
|
|
|
LIB_DEPENDS= tiff:${PORTSDIR}/graphics/tiff
|
|
RUN_DEPENDS= mpeg_encode:${PORTSDIR}/multimedia/mpeg_encode
|
|
|
|
USE_QT_VER= 3
|
|
USE_REINPLACE= yes
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:R}
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
MAKE_ENV= MOC="${MOC}" QTDIR="${X11BASE}"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s,^CC,#CC,g ; s,^CXX,#CXX,g ; \
|
|
s,-O2,${CFLAGS} ${PTHREAD_CFLAGS},g ; \
|
|
s,^MOC,#MOC,g ; s,lqt,lqt-mt ${PTHREAD_LIBS},g ; \
|
|
s,/usr/X11R6,${X11BASE},g ; \
|
|
s,%%LOCALBASE%%,${LOCALBASE},g" ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE},g" ${WRKSRC}/Config.cpp
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/flip ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|