mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
8ed8aafc20
devel/sdl --> devel/sdl10 devel/sdl-devel --> devel/sdl12 Repo-copy by: asami
98 lines
2.7 KiB
Makefile
98 lines
2.7 KiB
Makefile
# New ports collection makefile for: avifile
|
|
# Date created: 16 September 2000
|
|
# Whom: Holger Lamm
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= avifile
|
|
PORTVERSION= 0.53.5
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://ernie.eit.uni-kl.de/avifile/ \
|
|
http://divx.euro.ru/ \
|
|
http://www.toon.eu.org/divx/
|
|
DISTFILES= avifile-${PORTVERSION}.tar.gz \
|
|
|
|
MAINTAINER= holger@eit.uni-kl.de
|
|
|
|
LIB_DEPENDS= SDL-1.1.3:${PORTSDIR}/devel/sdl12
|
|
RUN_DEPENDS= ${CODEC_DETECTION_FILE}:${CODEC_PORT}
|
|
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_QT_VER= 2
|
|
USE_XLIB= yes
|
|
USE_GMAKE= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
USE_AUTOCONF= yes
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" \
|
|
CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include -L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --with-win32-path=${LOCALBASE}/lib/win32 \
|
|
--enable-release
|
|
PLIST_SUB= LIB_VERSION="${LIB_VERSION}"
|
|
|
|
FMT= /usr/bin/fmt
|
|
|
|
#CODEC_PORT= ${PORTSDIR}/graphics/win32-codecs
|
|
CODEC_PORT= ${.CURDIR}/../win32-codecs
|
|
CODEC_DETECTION_FILE!= ${MAKE} -f ${CODEC_PORT}/Makefile -V CODEC_DETECTION_FILE
|
|
|
|
LIB_VERSION= 0
|
|
# Adhoc fix. First part.
|
|
# qt is there but configure is not finding it
|
|
# Therefore, it is avoiding this directories
|
|
# At least, on lioux's homesystem with qt 2.2.3
|
|
EXTRA_BUILD_DIR= player samples/benchmark samples/qtrecompress
|
|
|
|
SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config
|
|
DIFF?= /usr/bin/diff
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Libtool fix code kindly provided by Mr. Maxim Sobolev <sobomax@FreeBSD.org>
|
|
post-configure:
|
|
@${PERL} -pi -e \
|
|
's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \
|
|
${WRKSRC}/libtool
|
|
|
|
post-build:
|
|
.for dir in ${EXTRA_BUILD_DIR}
|
|
(cd ${WRKSRC}/${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE})
|
|
.endfor
|
|
|
|
post-install:
|
|
@${FMT} < ${PKGMESSAGE}
|
|
@${INSTALL_DATA} ${WRKSRC}/lib/libaviplay.la ${PREFIX}/lib
|
|
@${LN} -sf libaviplay.so.${LIB_VERSION} ${PREFIX}/lib/libaviplay.so
|
|
# Adhoc fix. Second part.
|
|
# Install the missed applications.
|
|
.if exists(${PREFIX}/bin/aviplay)
|
|
${DIFF} ${WRKSRC}/player/.libs/aviplay ${PREFIX}/bin > /dev/null || \
|
|
${INSTALL_PROGRAM} ${WRKSRC}/player/.libs/aviplay \
|
|
${PREFIX}/bin
|
|
.else
|
|
${INSTALL_PROGRAM} ${WRKSRC}/player/.libs/aviplay ${PREFIX}/bin
|
|
.endif
|
|
.if exists(${PREFIX}/bin/benchmark)
|
|
${DIFF} ${WRKSRC}/samples/benchmark/.libs/benchmark \
|
|
${PREFIX}/bin > /dev/null || \
|
|
${INSTALL_PROGRAM} \
|
|
${WRKSRC}/samples/benchmark/.libs/benchmark \
|
|
${PREFIX}/bin
|
|
.else
|
|
${INSTALL_PROGRAM} ${WRKSRC}/samples/benchmark/.libs/benchmark \
|
|
${PREFIX}/bin
|
|
.endif
|
|
.if exists(${PREFIX}/bin/qtrecompress)
|
|
${DIFF} ${WRKSRC}/samples/qtrecompress/.libs/qtrecompress \
|
|
${PREFIX}/bin > /dev/null || \
|
|
${INSTALL_PROGRAM} ${WRKSRC}/samples/qtrecompress/.libs/qtrecompress ${PREFIX}/bin
|
|
.else
|
|
${INSTALL_PROGRAM} ${WRKSRC}/samples/qtrecompress/.libs/qtrecompress \
|
|
${PREFIX}/bin
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|