freebsd-ports/sysutils/dvdbackup/Makefile
Emanuel Haupt ab95dca6d1 - Update to 0.4.2
- Now that we have svn rename patch with ancient naming schema

PR:		170212
Submitted by:	Fabian Keil <fk@fabiankeil.de>
2012-07-28 12:29:36 +00:00

51 lines
1.1 KiB
Makefile

# New ports collection makefile for: dvdbackup
# Date created: 2004-09-24
# Whom: Michael Johnson <ahze@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= dvdbackup
PORTVERSION= 0.4.2
CATEGORIES= sysutils multimedia
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Backup content from DVD to hard disk
LICENSE= GPLv3
LIB_DEPENDS= dvdread:${PORTSDIR}/multimedia/libdvdread
GNU_CONFIGURE= yes
USE_GMAKE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
MAN1= dvdbackup.1
PORTDOCS= NEWS README
DEFAULT_DVD_DEVICE?= /dev/cd0
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
CONFIGURE_ARGS+= --enable-nls
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.endif
post-patch:
@${REINPLACE_CMD} "s|/dev/dvd|${DEFAULT_DVD_DEVICE}|g" \
${WRKSRC}/src/main.c ${WRKSRC}/po/*.po ${WRKSRC}/po/*.pot \
${WRKSRC}/README ${WRKSRC}/man/dvdbackup.1
pre-configure:
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} 's|^install-data-am: .*|install-data-am: |' \
${WRKSRC}/Makefile.in
.endif
.include <bsd.port.mk>