8a2ad389da
=== Transmission 2.61 (2012/07/23) === [http://trac.transmissionbt.com/query?milestone=2.61&group=component&order=severity All tickets closed by this release] ==== All Platforms ==== ==== Mac ==== * Fix crash when creating a torrent file on Lion or newer ==== GTK+ ==== * Support startup notification * Require GTK+ 3 ==== Qt ==== * Fix bug when opening the web client via the Preferences dialog * Better opening of magnet links * The Torrent File list now handles very long lists faster * Fix i18n problem introduced in 2.60 ==== Web Client ==== * Close potential cross-scripting vulnerability from malicious torrent files ==== Utils ==== * Add magnet link generation to the transmission-show command line tool
31 lines
1 KiB
Makefile
31 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.5 2012/07/28 15:13:42 wiz Exp $
|
|
|
|
PKGNAME= ${DISTNAME:C:t:T:C:-:-gui-:}
|
|
|
|
USE_LANGUAGES+= c c++
|
|
MAKE_ENV+= QTDIR=${QTDIR}
|
|
INSTALL_ENV+= INSTALL_ROOT=${DESTDIR}${PREFIX}
|
|
|
|
CONFIGURE_ARGS+= --disable-cli --disable-daemon --with-gtk
|
|
|
|
.include "../../net/Transmission/Makefile.common"
|
|
|
|
post-build:
|
|
cd ${WRKSRC}/qt && ${SETENV} ${MAKE_ENV} ${QTDIR}/bin/qmake qtr.pro
|
|
cd ${WRKSRC}/gtk && ${SETENV} ${MAKE_ENV} make
|
|
cd ${WRKSRC}/qt && ${SETENV} ${MAKE_ENV} make
|
|
cd ${WRKSRC}/po && ${SETENV} ${MAKE_ENV} make
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/qt && ${SETENV} ${INSTALL_ENV} make install
|
|
cd ${WRKSRC}/gtk && ${SETENV} ${INSTALL_ENV} make install
|
|
cd ${WRKSRC}/po && ${SETENV} ${INSTALL_ENV} make install
|
|
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../sysutils/libnotify/buildlink3.mk"
|
|
.include "../../x11/gtk3/buildlink3.mk"
|
|
.include "../../x11/qt4-qdbus/buildlink3.mk"
|
|
.include "../../x11/qt4-tools/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|