51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# New ports collection makefile for: smplayer
|
|
# Date created: 13 Jun, 2007
|
|
# Whom: Diego Depaoli <trebestie@gmail.com> and Yinghong Liu <relaxbsd@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= smplayer
|
|
DISTVERSION= 0.6.8
|
|
CATEGORIES= multimedia audio kde
|
|
MASTER_SITES= SF/${PORTNAME}/SMPlayer/${PORTVERSION}
|
|
|
|
MAINTAINER= dhn@FreeBSD.org
|
|
COMMENT= A complete front-end based on QT4 for mplayer
|
|
|
|
RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer \
|
|
${LOCALBASE}/share/smplayer/themes:${PORTSDIR}/multimedia/smplayer-themes
|
|
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= gui network xml qmake_build moc_build rcc_build uic_build \
|
|
uic3_build porting_build linguist_build
|
|
|
|
ALL_TARGET= src/smplayer
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
MAN1= smplayer.1
|
|
MANCOMPRESSED= yes
|
|
|
|
PORTDOCS= Changelog Copying.txt Install.txt Not_so_obvious_things.txt \
|
|
Readme.txt Release_notes.txt
|
|
|
|
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' \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|