blob: 9a69774e9e29f5448ffff09932522e247b9c3335 (
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
|
# Created by: 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= Modern front-end for MPlayer (fork of SMPlayer)
RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer
USES= gmake
USE_XZ= yes
USE_QT4= gui network xml qmake_build moc_build rcc_build uic_build \
linguist_build
INSTALLS_ICONS= yes
MAKE_ARGS+= ${PREFIX}
QMAKE_ARGS+= "DEFINES+=NO_DEBUG_ON_CONSOLE"
ALL_TARGET= src/umplayer
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-patch:
@${REINPLACE_CMD} -e 's| make| $$(MAKE)|' \
-e 's|cd src|(&| ; /cd src/s|$$|)|' \
-e 's|qmake|${QMAKE} ${QMAKE_ARGS}|' \
-e 's|lrelease|${LRELEASE}|' \
-e 's|/share/man|/man|' \
-e 's|/doc/packages|/doc|' \
-e 's|^.*/get_svn_revision.sh$$||' \
${WRKSRC}/Makefile
.if ! ${PORT_OPTIONS:MDOCS}
@${REINPLACE_CMD} -E -e '/(install|tar).*DOC_PATH/d' \
${WRKSRC}/Makefile
.endif
.include <bsd.port.mk>
|