aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/dvdbackup/Makefile
blob: 8c0915d04c1080cda6ea7fb2b0556645da7a671f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# 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>