1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/multimedia/lsdvd/Makefile
Pav Lucistnik 3db0cc7544 - Fix runtime crash in machine readable output
PR:		ports/105847
Submitted by:	Ulrich Spoerlein <uspoerlein@gmail.com>
2006-12-02 13:06:55 +00:00

46 lines
1.1 KiB
Makefile

# New ports collection makefile for: lsdvd
# Date created: 2004-03-30
# Whom: michael johnson <ahze@ahze.net>
#
# $FreeBSD$
#
PORTNAME= lsdvd
PORTVERSION= 0.16
PORTREVISION= 1
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
MASTER_SITE_SUBDIR= acidrip
MAINTAINER= pav@FreeBSD.org
COMMENT= Print information about the contents and structure of a DVD
LIB_DEPENDS= dvdread.3:${PORTSDIR}/multimedia/libdvdread
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
MAN1= lsdvd.1
PLIST_FILES= bin/lsdvd
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
WITH_DVD_DEVICE?=/dev/acd0c
BROKEN= does not configure
.else
WITH_DVD_DEVICE?=/dev/acd0
.endif
pre-everything::
@${ECHO_MSG} "===> The default DVD device is ${WITH_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\"'"
@${ECHO_MSG} "===>"
post-patch:
@${REINPLACE_CMD} -e 's|/dev/dvd|${WITH_DVD_DEVICE}|' \
${WRKSRC}/lsdvd.c
.include <bsd.port.post.mk>