mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
223bc2a99d
The archivers/rar port is a FreeBSD BLOB which DragonFly can't use. In fact, only i386 and 32-bit enabled amd64 platforms on FreeBSD can use it. Rather than have dvdrip break by default on all the platforms that don't support RAR, change to an non-default option. While here: * use shebangfix to adjust perl * Don't define RUN_DEPENDS based on BUILD_DEPENDS (bad practice) * Use modern OPTIONS configuration
61 lines
2.1 KiB
Makefile
61 lines
2.1 KiB
Makefile
# Created by: Michael Nottebrock <michaelnottebrock@gmx.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dvdrip
|
|
PORTVERSION= 0.98.11
|
|
PORTREVISION= 6
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= CPAN http://www.exit1.org/dvdrip/dist/
|
|
MASTER_SITE_SUBDIR= CPAN:JRED
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Perl Gtk+ based dvd-ripper
|
|
|
|
BUILD_DEPENDS= p5-Gtk2>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2 \
|
|
p5-AnyEvent>=0:${PORTSDIR}/devel/p5-AnyEvent \
|
|
p5-Event-ExecFlow>=0:${PORTSDIR}/devel/p5-Event-ExecFlow \
|
|
p5-Gtk2-Ex-FormFactory>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2-Ex-FormFactory \
|
|
p5-Event-RPC>=0:${PORTSDIR}/devel/p5-Event-RPC \
|
|
p5-Locale-libintl>=0:${PORTSDIR}/devel/p5-Locale-libintl
|
|
RUN_DEPENDS= p5-Gtk2>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2 \
|
|
p5-AnyEvent>=0:${PORTSDIR}/devel/p5-AnyEvent \
|
|
p5-Event-ExecFlow>=0:${PORTSDIR}/devel/p5-Event-ExecFlow \
|
|
p5-Gtk2-Ex-FormFactory>=0:${PORTSDIR}/x11-toolkits/p5-Gtk2-Ex-FormFactory \
|
|
p5-Event-RPC>=0:${PORTSDIR}/devel/p5-Event-RPC \
|
|
p5-Locale-libintl>=0:${PORTSDIR}/devel/p5-Locale-libintl \
|
|
cdrdao:${PORTSDIR}/sysutils/cdrdao \
|
|
convert:${PORTSDIR}/graphics/ImageMagick \
|
|
mplayer:${PORTSDIR}/multimedia/mplayer \
|
|
pstree:${PORTSDIR}/sysutils/pstree \
|
|
transcode:${PORTSDIR}/multimedia/transcode \
|
|
vcdimager:${PORTSDIR}/multimedia/vcdimager \
|
|
${LOCALBASE}/sbin/fping:${PORTSDIR}/net/fping \
|
|
cdrecord:${PORTSDIR}/sysutils/cdrtools
|
|
|
|
OPTIONS_DEFINE= VORBIS SUBTITLE RAR
|
|
OPTIONS_DEFAULT= VORBIS SUBTITLE
|
|
RAR_DESC= Support RAR-compressed vobsub subtitles
|
|
SUBTITLE_DESC= Enable support for getting subtitles
|
|
|
|
RAR_RUN_DEPENDS= rar:${PORTSDIR}/archivers/rar
|
|
SUBTITLE_RUN_DEPENDS= subtitle2pgm:${PORTSDIR}/multimedia/subtitleripper
|
|
VORBIS_RUN_DEPENDS= oggenc:${PORTSDIR}/audio/vorbis-tools \
|
|
ogmmerge:${PORTSDIR}/multimedia/ogmtools
|
|
|
|
CONFIGURE_ENV= SKIP_UNPACK_REQUIRED_MODULES=1
|
|
USES= gettext perl5 shebangfix
|
|
USE_PERL5= configure patch
|
|
SHEBANG_FILES= bin/dvdrip*
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e 's#/usr/sbin/fping#${LOCALBASE}/sbin/fping#' \
|
|
${WRKSRC}/lib/Video/DVDRip/Cluster/Master.pm \
|
|
${WRKSRC}/lib/Video/DVDRip/Depend.pm
|
|
@${FIND} ${WRKSRC} -name \*.orig -delete
|
|
|
|
.include <bsd.port.mk>
|