mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
b50a4186ce
PR: 218658 Submitted by: riggs
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# Created by: michael johnson <ahze@ahze.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= acidrip
|
|
PORTVERSION= 0.14
|
|
PORTREVISION= 11
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}%20-%20Your%20two-wheeled%20knife
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GTK2::Perl wrapper for MPlayer and MEncoder for ripping DVDs
|
|
|
|
BUILD_DEPENDS= lsdvd:multimedia/lsdvd \
|
|
mencoder:multimedia/mencoder \
|
|
p5-Gtk2>=0:x11-toolkits/p5-Gtk2
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
.if defined(WITH_DVD_DEVICE)
|
|
DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE}
|
|
.else
|
|
DEFAULT_DVD_DEVICE=/dev/acd0
|
|
.endif
|
|
|
|
pre-everything::
|
|
.if !defined(WITH_DVD_DEVICE)
|
|
@${ECHO_MSG} "===> The default DVD device is ${DEFAULT_DVD_DEVICE}"
|
|
@${ECHO_MSG} "===> Define WITH_DVD_DEVICE if you want to change the default"
|
|
@${ECHO_MSG} "===> For example, 'make WITH_DVD_DEVICE=\"/dev/somedevice\"'"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/dev/dvd|${DEFAULT_DVD_DEVICE}|' ${WRKSRC}/AcidRip/acidrip.pm
|
|
@${RM} ${WRKSRC}/AcidRip/*.bak
|
|
@${RM} ${WRKSRC}/AcidRip/*.orig
|
|
|
|
.include <bsd.port.mk>
|