blob: 16caef49cf4d0908e325f4d8bac5b2e86912afe9 (
plain)
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
|
# $NetBSD: Makefile,v 1.28 2006/10/31 22:33:29 wiz Exp $
PKGNAME= mencoder-${MPLAYER_PKG_VERSION}
COMMENT= Simple movie encoder for MPlayer-playable movies
.include "../../multimedia/mplayer-share/Makefile.common"
CONFIGURE_ARGS+= --confdir=${PREFIX}/share/mplayer
BUILD_TARGET= mencoder
MANCOMPRESSED_IF_MANZ= 1
INSTALLATION_DIRS= bin man/man1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/mencoder ${PREFIX}/bin
if [ X"${MANZ}" = X"" ]; then \
${LN} -s -f ${PREFIX}/man/man1/mplayer.1 \
${PREFIX}/man/man1/mencoder.1; \
else \
${LN} -s -f ${PREFIX}/man/man1/mplayer.1.gz \
${PREFIX}/man/man1/mencoder.1.gz; \
fi
.include "../../multimedia/mplayer-share/Makefile.depends"
.include "../../mk/bsd.pkg.mk"
.include "../../multimedia/mplayer-share/Makefile.cflags"
|