blob: 9a7e186caa0a1d2fa02a4b1dd736b1f38302045d (
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
|
# New ports collection makefile for: smtube
# Date created: 2012-05-17
# Whom: Pawel Pekala <pawel@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= smtube
PORTVERSION= 1.1
CATEGORIES= multimedia
MASTER_SITES= SF/smplayer/SMTube/${PORTVERSION}/
MAINTAINER= pawel@FreeBSD.org
COMMENT= SMPlayer YouTube browser
RUN_DEPENDS= ${LOCALBASE}/bin/smplayer:${PORTSDIR}/multimedia/smplayer
USE_BZIP2= yes
USE_GMAKE= yes
USE_QT4= linguist_build moc_build qmake_build rcc_build uic_build \
corelib gui network xml
INSTALLS_ICONS= 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|$$(PREFIX)/share/smtube|${DATADIR}|g' \
${WRKSRC}/Makefile
.if !defined(NOPORTDOCS)
@${REINPLACE_CMD} -e 's|$$(PREFIX)/share/doc/smtube|${DOCSDIR}|' \
${WRKSRC}/Makefile
PORTDOCS= *
.else
@${REINPLACE_CMD} -e '/DOC_PATH/d' ${WRKSRC}/Makefile
.endif
do-build:
cd ${WRKSRC} && ${MAKE}
.include <bsd.port.mk>
|