mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
52e8b487f6
- use CONFLICTS_INSTALL - other minor changes
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# New ports collection makefile for: minitube
|
|
# Date created: 2009-08-15
|
|
# Whom: Max Brazhnikov <makc@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= minitube
|
|
PORTVERSION= 1.8
|
|
CATEGORIES= multimedia www
|
|
MASTER_SITES= http://flavio.tordini.org/files/minitube/
|
|
|
|
MAINTAINER= makc@FreeBSD.org
|
|
COMMENT= A native YouTube client
|
|
|
|
USE_QT4= gui network xml dbus phonon phonon-gst \
|
|
qmake_build moc_build rcc_build imageformats_run
|
|
USE_GSTREAMER= ffmpeg
|
|
HAS_CONFIGURE= yes
|
|
INSTALLS_ICONS= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
QMAKE_ARGS= -recursive PREFIX=${PREFIX} QMAKE_LRELEASE=${LRELEASE} ${QMAKE_PRO}
|
|
QMAKE_PRO= ${WRKSRC}/${PORTNAME}.pro
|
|
LRELEASE= ${LOCALBASE}/bin/lrelease-qt4
|
|
|
|
STRIP_FILES= bin/minitube
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USE_QT4+= linguist_build
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
pre-configure:
|
|
${REINPLACE_CMD} -e 's,$$$$PKGDATADIR,${DATADIR},g' ${QMAKE_PRO}
|
|
.if !${PORT_OPTIONS:MNLS}
|
|
${REINPLACE_CMD} -e '/include(locale\/locale.pri)/d' ${QMAKE_PRO}
|
|
.endif
|
|
|
|
do-configure:
|
|
cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${QMAKE} ${QMAKEFLAGS} ${QMAKE_ARGS}
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STRIP_FILES:S,^,${PREFIX}/,}
|
|
|
|
.include <bsd.port.mk>
|