Index: head/net-p2p/Makefile =================================================================== --- head/net-p2p/Makefile (revision 442259) +++ head/net-p2p/Makefile (revision 442260) @@ -1,110 +1,111 @@ # $FreeBSD$ # COMMENT = Peer-to-peer network applications SUBDIR += amule SUBDIR += amule-devel SUBDIR += bitcoin SUBDIR += bitcoin-daemon SUBDIR += bitcoin-utils SUBDIR += bitflu SUBDIR += bitmessage SUBDIR += bnbt SUBDIR += btpd SUBDIR += btsync SUBDIR += couchpotato SUBDIR += cpuminer SUBDIR += createtorrent SUBDIR += ctcs SUBDIR += ctorrent SUBDIR += dclib SUBDIR += deluge SUBDIR += deluge-cli SUBDIR += dogecoin SUBDIR += ed2k SUBDIR += edonkey-tool-hash SUBDIR += eiskaltdcpp-cli SUBDIR += eiskaltdcpp-daemon SUBDIR += eiskaltdcpp-data SUBDIR += eiskaltdcpp-gtk SUBDIR += eiskaltdcpp-lib SUBDIR += eiskaltdcpp-qt SUBDIR += frost SUBDIR += gkremldk SUBDIR += gnewtellium SUBDIR += go-ethereum SUBDIR += gtk-gnutella SUBDIR += gtorrentviewer SUBDIR += hs-torrent SUBDIR += jigdo SUBDIR += ktorrent SUBDIR += libbt SUBDIR += liberator SUBDIR += libktorrent SUBDIR += libpdtp SUBDIR += libswift SUBDIR += libtorrent SUBDIR += libtorrent-rasterbar SUBDIR += libtorrent-rasterbar-python SUBDIR += linuxdcpp SUBDIR += litecoin SUBDIR += litecoin-daemon SUBDIR += litecoin-utils SUBDIR += lopster SUBDIR += microdc2 SUBDIR += minder SUBDIR += mktorrent SUBDIR += mldonkey SUBDIR += mldonkey-core SUBDIR += mldonkey-gui SUBDIR += namecoin SUBDIR += namecoin-daemon SUBDIR += napshare SUBDIR += ncdc SUBDIR += opendchub SUBDIR += p5-Net-BitTorrent SUBDIR += p5-Net-BitTorrent-File SUBDIR += p5-Net-BitTorrent-PeerPacket SUBDIR += p5-Net-DirectConnect SUBDIR += p5-WWW-BitTorrent SUBDIR += phex SUBDIR += py-py2play SUBDIR += py-transmissionrpc SUBDIR += py-vertex SUBDIR += qbittorrent SUBDIR += qbittorrent-nox11 SUBDIR += radarr SUBDIR += retroshare SUBDIR += rtorrent SUBDIR += shx SUBDIR += sonarr SUBDIR += squall + SUBDIR += torrent-file-editor SUBDIR += torrentcheck SUBDIR += torrentsniff SUBDIR += transmission SUBDIR += transmission-cli SUBDIR += transmission-daemon SUBDIR += transmission-gtk SUBDIR += transmission-qt4 SUBDIR += transmission-remote-gui SUBDIR += tribler SUBDIR += twister SUBDIR += uhub SUBDIR += valknut SUBDIR += verlihub SUBDIR += verlihub-plugins SUBDIR += verlihub-plugins-chatroom SUBDIR += verlihub-plugins-floodprotect SUBDIR += verlihub-plugins-forbid SUBDIR += verlihub-plugins-iplog SUBDIR += verlihub-plugins-isp SUBDIR += verlihub-plugins-luascript SUBDIR += verlihub-plugins-messanger SUBDIR += verlihub-plugins-stats SUBDIR += vuze SUBDIR += xnap SUBDIR += zetacoin SUBDIR += zetacoin-nox11 .include Index: head/net-p2p/torrent-file-editor/Makefile =================================================================== --- head/net-p2p/torrent-file-editor/Makefile (nonexistent) +++ head/net-p2p/torrent-file-editor/Makefile (revision 442260) @@ -0,0 +1,29 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= torrent-file-editor +PORTVERSION= 0.3.4 +CATEGORIES= net-p2p +MASTER_SITES= SF/${PORTNAME}/v${PORTVERSION} + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Qt-based GUI tool for creating and editing .torrent files + +LICENSE= GPLv3 + +USES= cmake + +_QT4_DEPS= linguisttools_build moc_build qmake_build rcc_build \ + uic_build corelib gui +_QT5_DEPS= buildtools_build linguisttools_build qmake_build \ + core gui widgets + +OPTIONS_DEFINE= QT5 +QT5_DESC= Build against Qt 5 instead of Qt 4 + +QT5_USE= QT5=${_QT5_DEPS:ts,} +QT5_USE_OFF= QT4=${_QT4_DEPS:ts,} +QT5_LIB_DEPENDS_OFF= libqjson.so:devel/qjson +QT5_CMAKE_ON= -DQT5_BUILD:BOOL=ON + +.include Property changes on: head/net-p2p/torrent-file-editor/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/torrent-file-editor/distinfo =================================================================== --- head/net-p2p/torrent-file-editor/distinfo (nonexistent) +++ head/net-p2p/torrent-file-editor/distinfo (revision 442260) @@ -0,0 +1,3 @@ +TIMESTAMP = 1492441821 +SHA256 (torrent-file-editor-0.3.4.tar.gz) = 6f3dda0fe0dee76bd1e15f62af4d29b11e6f4149d05ed520e5a7c2baa269a08c +SIZE (torrent-file-editor-0.3.4.tar.gz) = 302621 Property changes on: head/net-p2p/torrent-file-editor/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/torrent-file-editor/files/patch-CMakeLists.txt =================================================================== --- head/net-p2p/torrent-file-editor/files/patch-CMakeLists.txt (nonexistent) +++ head/net-p2p/torrent-file-editor/files/patch-CMakeLists.txt (revision 442260) @@ -0,0 +1,10 @@ +--- CMakeLists.txt.orig 2017-04-17 14:19:04 UTC ++++ CMakeLists.txt +@@ -73,6 +73,7 @@ if(QT5_BUILD) + else() + find_package(Qt4 REQUIRED) + find_package(QJSON 0.8.0 REQUIRED) ++ include_directories(${QJSON_INCLUDE_DIR}) + include(${QT_USE_FILE}) + endif() + Property changes on: head/net-p2p/torrent-file-editor/files/patch-CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/torrent-file-editor/pkg-descr =================================================================== --- head/net-p2p/torrent-file-editor/pkg-descr (nonexistent) +++ head/net-p2p/torrent-file-editor/pkg-descr (revision 442260) @@ -0,0 +1,10 @@ +This is a Qt-based GUI tool designed to create and edit .torrent files. +Some of its features: + + - Create .torrent file from scratch + - Edit .torrent file in user-friendly way + - Edit .torrent file in JSON format + - Add, remove, and interchange files in .torrent file + - Support for different encodings + +WWW: https://sourceforge.net/projects/torrent-file-editor/ Property changes on: head/net-p2p/torrent-file-editor/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-p2p/torrent-file-editor/pkg-plist =================================================================== --- head/net-p2p/torrent-file-editor/pkg-plist (nonexistent) +++ head/net-p2p/torrent-file-editor/pkg-plist (revision 442260) @@ -0,0 +1,9 @@ +bin/torrent-file-editor +share/appdata/torrent-file-editor.appdata.xml +share/applications/torrent-file-editor.desktop +share/icons/hicolor/16x16/apps/torrent-file-editor.png +share/icons/hicolor/32x32/apps/torrent-file-editor.png +share/icons/hicolor/48x48/apps/torrent-file-editor.png +share/icons/hicolor/64x64/apps/torrent-file-editor.png +share/icons/hicolor/128x128/apps/torrent-file-editor.png +share/icons/hicolor/256x256/apps/torrent-file-editor.png Property changes on: head/net-p2p/torrent-file-editor/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property