aboutsummaryrefslogtreecommitdiffstats
path: root/multimedia/vdr/Makefile.plugins
blob: d16bf05e33a81843cc015453ecc95fb7d9c71d79 (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
# this is to be included by vdr plugin ports
#
# $FreeBSD: /tmp/pcvs/ports/multimedia/vdr/Makefile.plugins,v 1.1 2011-03-26 19:13:49 nox Exp $

BUILD_DEPENDS+=  ${LOCALBASE}/include/linux/dvb/frontend.h:${PORTSDIR}/multimedia/v4l_compat

BUILD_DEPENDS+= vdr:${PORTSDIR}/multimedia/vdr
RUN_DEPENDS+=   vdr:${PORTSDIR}/multimedia/vdr

DIST_SUBDIR=    vdr
PATCH_SUBDIR=   vdr
USE_GMAKE=  yes
USE_GETTEXT=    yes
VDRDIR=     ${LOCALBASE}/include/vdr
VDRINCDIR=  ${LOCALBASE}/include
MAKE_ARGS+= DVBDIR=${LOCALBASE}/include
MAKE_ARGS+= VDRDIR=${VDRDIR}
MAKE_ARGS+= VDR_USER=${VDR_USER}
MAKE_ARGS+= INSTALL_PROGRAM="${INSTALL_PROGRAM}"
MAKE_ARGS+= OSTYPE=FreeBSD
PLUGIN?=    ${PORTNAME:S/^vdr-plugin-//}
CONFIGURE_ENV+= LOCALBASE=${LOCALBASE}
MAKE_ENV+=  LOCALBASE=${LOCALBASE}
VDR_USER=   vdr
VDR_GROUP=  vdr
PLIST_SUB=  VDR_USER=${VDR_USER}
PLIST_SUB+= VDR_GROUP=${VDR_GROUP}

.if !defined(WITHOUT_NLS)
PLIST_SUB+= NLS=""
.else
PLIST_SUB+= NLS="@comment "
.endif

localeplist:
    @${FIND} ${WRKDIR}/locale -type f -print |${SED} 's|^.*locale/|%%NLS%%share/locale/|'

post-patch-plugin:
    @${MKDIR} ${WRKDIR}/lib ${WRKDIR}/locale
    @${REINPLACE_CMD} 's/^\(LIBDIR[[:space:]]*\)[?]*\(=[[:space:]]*\).*/\1\2..\/lib/;'\\
        's/^\(LOCALEDIR[[:space:]]*\)[?]*\(=[[:space:]]*\).*/\1\2..\/locale/;'\\
        's/^\(VDRDIR[[:space:]]*\)[?]*\(=[[:space:]]*\).*/\1\2'"${VDRDIR:S-/-\\\\/-g}/;"\\
        's/^\(VDRINCDIR[[:space:]]*\)[?]*\(=[[:space:]]*\).*/\1\2'"${VDRINCDIR:S-/-\\\\/-g}/;"\\
        's/^\(BINDIR[[:space:]]*\)[?]*\(=[[:space:]]*\).*/\1\2'"${PREFIX:S-/-\\\\/-g}\/bin/;" \
        ${WRKSRC}/Makefile ${VDR_PLUGIN_MAKEFILES}

post-install-pluginlocales:
.if !defined(WITHOUT_NLS)
    @(cd ${WRKDIR} && ${COPYTREE_SHARE} locale ${PREFIX}/share/)
.endif