mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
60 lines
1.5 KiB
Makefile
60 lines
1.5 KiB
Makefile
# New ports collection makefile for: transmission-qt4
|
|
# Date created: 23 October 2010
|
|
# Whom: Mezz <mezz@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTREVISION= 0
|
|
PKGNAMESUFFIX= -qt4
|
|
|
|
MAINTAINER= crees@FreeBSD.org
|
|
COMMENT= A fast and lightweight QT4 BitTorrent client
|
|
|
|
LIB_DEPENDS= ${GEN_LIB_DEPENDS}
|
|
RUN_DEPENDS= ${GEN_RUN_DEPENDS}
|
|
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
MASTERDIR= ${.CURDIR}/../transmission-cli
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
SLAVEPORT= qt4
|
|
|
|
USE_QT_VER= 4
|
|
QT_NONSTANDARD= yes
|
|
QT_COMPONENTS= moc_build qmake_build rcc_build uic_build gui dbus network
|
|
USE_GNOME= desktopfileutils
|
|
|
|
EXTRA_CONF_ARGS=--disable-cli \
|
|
--disable-daemon \
|
|
--disable-gtk \
|
|
--disable-libnotify \
|
|
--disable-mac \
|
|
--disable-nls
|
|
|
|
MAN1= transmission-qt.1
|
|
|
|
post-patch: general-patch
|
|
@${REINPLACE_CMD} -e 's|/share/man|/man|g ; /PKGCONFIG/s| openssl||g' \
|
|
${WRKSRC}/qt/qtr.pro
|
|
|
|
post-build:
|
|
@(cd ${WRKSRC}/qt ; ${QMAKE} ${QMAKEFLAGS} qtr.pro ; gmake)
|
|
|
|
do-install:
|
|
@(cd ${WRKSRC}/qt ; ${SETENV} INSTALL_ROOT=${PREFIX} ${MAKE} install)
|
|
|
|
post-install: general-install
|
|
.ifndef (NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/qt/README.txt ${DOCSDIR}/README-qt4
|
|
.endif
|
|
@${MKDIR} ${PREFIX}/share/applications
|
|
@${INSTALL_DATA} ${WRKSRC}/qt/transmission-qt.desktop \
|
|
${PREFIX}/share/applications/
|
|
@${MKDIR} ${PREFIX}/share/pixmaps
|
|
@${INSTALL_DATA} ${WRKSRC}/qt/icons/transmission.png \
|
|
${PREFIX}/share/pixmaps/transmission-qt.png
|
|
@-update-desktop-database
|
|
|
|
.include "${MASTERDIR}/Makefile"
|