blob: 86a17259d5e80f496b79c1e842d61da31344f677 (
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
|
# New ports collection makefile for: umplayer
# Date created: 2 May, 2011
# Whom: Zhihao Yuan <lichray@gmail.com>
#
# $FreeBSD$
#
PORTNAME= umplayer
DISTVERSION= 0.97
PORTREVISION= 1
CATEGORIES= multimedia audio kde
MASTER_SITES= LOCAL/wen
MAINTAINER= lichray@gmail.com
COMMENT= A modern front-end for mplayer (forked from smplayer)
RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer
USE_QT_VER= 4
QT_COMPONENTS= gui network xml qmake_build moc_build rcc_build uic_build \
linguist_build
ALL_TARGET= src/umplayer
USE_XZ= yes
USE_GMAKE= yes
INSTALLS_ICONS= yes
MAKE_ARGS+= QMAKE_OPTS="DEFINES+=NO_DEBUG_ON_CONSOLE"
MAN1= umplayer.1
MANCOMPRESSED= yes
post-patch:
@${REINPLACE_CMD} -e 's|qmake|${QMAKE}|g' \
-e 's|lrelease|${QT_PREFIX}/bin/lrelease-qt4|g' \
-e 's|PREFIX=/usr/local|PREFIX=${PREFIX}|g' \
-e 's,/share/man,/man,g' \
-e 's|/doc/packages|/doc|' \
-e 's|^.*/get_svn_revision.sh$$||' \
${WRKSRC}/Makefile
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -E -e '/(install|tar).*DOC_PATH/d' \
${WRKSRC}/Makefile
.endif
.include <bsd.port.mk>
|