freebsd-ports/multimedia/handbrake/Makefile
Jeremy Messenger 711efaaa38 - Update the MASTER_SITES to fix the fetch.
- Fix the build if multimedia/x264 is installed in system. [1]
- Add --exclude in extract to not extract beos, macosx, liba52, libavcodec,
  libdvdcss and other un-need directories to make sure they do build with the
  system (use external dependencies) libraries. Only keep libx264.
- Remove a few missing leftover of ffmpeg in post-patch and in one of patch.
- Add '-dx' in jam by default to give the verbose of build. Easier for me to
  collect the bug report or/and read in log from tinderboxes.
- Clean distinfo, remove a leftover of ffmpeg and add SHA256.
- Clean pkg-descr to make it looks nicer.
- Make portlint a bit happier.

Before anyone ask/request me to update it to 7.x. I don't know yet, I haven't
dig in what 7.x has. I think, this port needs to have a good last clean up
before update it to 7.x.

PR:		ports/88838 [1]
Reported by:	Zach Dykstra <md@anduin.org> [1], bite on me too
2006-05-07 17:33:05 +00:00

87 lines
2.5 KiB
Makefile

# New ports collection makefile for: handbrake
# Date created: 19 November 2004
# Whom: Andrew Thompson <andy@fud.org.nz>
#
# $FreeBSD$
#
PORTNAME= handbrake
PORTVERSION= 0.6.2
PORTREVISION= 3
CATEGORIES= multimedia
MASTER_SITES= http://download.m0k.org/${PORTNAME}/
DISTNAME= HandBrake-${PORTVERSION}-src
MAINTAINER= ports@FreeBSD.org
COMMENT= A DVD to MPEG-4 ripper and encoder
BUILD_DEPENDS= jam:${PORTSDIR}/devel/jam \
nasm:${PORTSDIR}/devel/nasm
LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \
avcodec.1:${PORTSDIR}/multimedia/ffmpeg \
dvdcss.2:${PORTSDIR}/multimedia/libdvdcss \
dvdread.3:${PORTSDIR}/multimedia/libdvdread \
faac.0:${PORTSDIR}/audio/faac \
mp3lame.0:${PORTSDIR}/audio/lame \
mp4v2.0:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2 \
mpeg2.0:${PORTSDIR}/multimedia/libmpeg2 \
ogg.5:${PORTSDIR}/audio/libogg \
samplerate.1:${PORTSDIR}/audio/libsamplerate \
vorbis.3:${PORTSDIR}/audio/libvorbis \
xvidcore.4:${PORTSDIR}/multimedia/xvid
PLIST_FILES= bin/handbrake
WRKSRC= ${WRKDIR}/HandBrake-${PORTVERSION}
USE_GNOME= gtk20
USE_X_PREFIX= yes
SYSCTL_CMD?= /sbin/sysctl
EXTRACT_AFTER_ARGS= | ${TAR} -xf - --exclude beos \
--exclude macosx \
--exclude packageOSX.sh \
--exclude contrib/liba52 \
--exclude contrib/libavcodec \
--exclude contrib/libdvdcss \
--exclude contrib/libdvdread \
--exclude contrib/libfaac \
--exclude contrib/libmp3lame \
--exclude contrib/libmp4v2 \
--exclude contrib/libmpeg2 \
--exclude contrib/libogg \
--exclude contrib/libsamplerate \
--exclude contrib/libvorbis \
--exclude contrib/libxvidcore
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
USE_GETOPT_LONG= yes
MAKE_ENV= EXTRA_LIBS="-lcipher -lgnugetopt"
WITH_DVD_DEVICE?= acd0c
.else
WITH_DVD_DEVICE?= acd0
.endif
# jam -dx, it will giving a verbose of build.
do-build:
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} jam -dx)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/gtk2HB ${PREFIX}/bin/handbrake
post-patch:
@${REINPLACE_CMD} -e 's:%%PREFIX%%:${LOCALBASE}:g' \
-e 's:%%PTHREAD_LIBS%%:${PTHREAD_LIBS}:g' \
-e 's:%%CC%%:${CC}:g' -e 's:%%CXX%%:${CXX}:g' \
-e 's:-g ::g' -e 's:%%CFLAGS%%:${CFLAGS}:g' \
${BUILD_WRKSRC}/Jamfile ${BUILD_WRKSRC}/core/Jamfile \
${BUILD_WRKSRC}/Jamrules
@${REINPLACE_CMD} -e 's:%%DVD_DEVICE%%:${WITH_DVD_DEVICE}:g' \
${BUILD_WRKSRC}/gtk2/main.c
# sysctl
@${REINPLACE_CMD} -e 's|/usr/sbin/sysctl|${SYSCTL_CMD}|' \
${BUILD_WRKSRC}/core/HandBrake.c
.include <bsd.port.post.mk>