diff --git a/net/BitTorrent/Makefile b/net/BitTorrent/Makefile index fc44e61458b..9d3c02faa51 100644 --- a/net/BitTorrent/Makefile +++ b/net/BitTorrent/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.12 2005/08/02 14:00:31 naddy Exp $ +# $OpenBSD: Makefile,v 1.13 2005/10/18 14:12:35 naddy Exp $ COMMENT= "cooperative file distribution system implemented in Python" COMMENT-gui= "graphical interface components for BitTorrent" -VERSION= 4.1.3 +VERSION= 4.1.6 DISTNAME= BitTorrent-${VERSION} PKGNAME-gui= BitTorrent-gui-${VERSION} CATEGORIES= net @@ -22,7 +22,7 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bittorrent/} MASTER_SITES0= http://grappa.unix-ag.uni-kl.de/~naddy/ DISTFILES= ${DISTNAME}.tar.gz # pre-built file because our gettext tools are too old -DISTFILES+= bt413-messages.pot:0 +DISTFILES+= bt416-messages.pot:0 MODULES= lang/python @@ -39,8 +39,7 @@ NO_REGRESS= Yes EXTRACT_CASES= *.pot) cp ${FULLDISTDIR}/$$archive ${WRKDIST}/messages.pot ;; post-configure: - @perl -pi -e 's,/usr/bin/env python,${MODPY_BIN},g' ${WRKBUILD}/bt*.py - @for file in ${WRKBUILD}/bt*.py; do mv $$file $${file%.py}; done + @perl -pi -e 's,/usr/bin/env python,${MODPY_BIN},g' ${WRKBUILD}/*.py post-install: ${INSTALL_DATA} ${FILESDIR}/README.OpenBSD \ diff --git a/net/BitTorrent/distinfo b/net/BitTorrent/distinfo index bc21b974a0c..e156fa6556a 100644 --- a/net/BitTorrent/distinfo +++ b/net/BitTorrent/distinfo @@ -1,8 +1,8 @@ -MD5 (BitTorrent-4.1.3.tar.gz) = cd4dff145b5dea3789fa384bb94a4de9 -MD5 (bt413-messages.pot) = 3ba5babe4daeb75a2cdab1cd2039b899 -RMD160 (BitTorrent-4.1.3.tar.gz) = 100e03dd445461ce28fa048df87bc3cb89c1b0dc -RMD160 (bt413-messages.pot) = 4b6716e214a3aaf6e084872f26778df40d518274 -SHA1 (BitTorrent-4.1.3.tar.gz) = b7fd6de13dfbf6be74d2621b8066e11c4d34777d -SHA1 (bt413-messages.pot) = 4260c3b8e91ea64a12ffee00e99e5e1d57fc09a0 -SIZE (BitTorrent-4.1.3.tar.gz) = 850332 -SIZE (bt413-messages.pot) = 53287 +MD5 (BitTorrent-4.1.6.tar.gz) = ba371b39ee6bce98775e6c346d5e8b58 +MD5 (bt416-messages.pot) = 898d7481f59d1a1401d401c6461319d5 +RMD160 (BitTorrent-4.1.6.tar.gz) = 622b96c85dca4f55985adca003e7e53ca5d15734 +RMD160 (bt416-messages.pot) = 0e01f87c7fe1395ba17a3f71238ad491dfc6aa6a +SHA1 (BitTorrent-4.1.6.tar.gz) = 50eb7fe8faae75faf35bb7200b159f13a2f85570 +SHA1 (bt416-messages.pot) = cf95581bd82afa02efa4f53d3135087be55e334c +SIZE (BitTorrent-4.1.6.tar.gz) = 2313097 +SIZE (bt416-messages.pot) = 55222 diff --git a/net/BitTorrent/files/README.OpenBSD b/net/BitTorrent/files/README.OpenBSD index af9bc226332..e305d2f35b1 100644 --- a/net/BitTorrent/files/README.OpenBSD +++ b/net/BitTorrent/files/README.OpenBSD @@ -1,10 +1,10 @@ -# $OpenBSD: README.OpenBSD,v 1.3 2005/06/01 16:02:31 naddy Exp $ +# $OpenBSD: README.OpenBSD,v 1.4 2005/10/18 14:12:35 naddy Exp $ To begin using BitTorrent quickly, simply fetch a torrent file and -run btdownloadgui (X11) or btdownloadcurses: +run bittorrent (X11) or bittorrent-curses: $ ftp http://www.somesite.com/some.torrent -$ btdownloadcurses some.torrent +$ bittorrent-curses some.torrent Note that for machines behind NAT, you will need to pass in the ports outlined in README.txt. An example pf.conf stub for doing this is: diff --git a/net/BitTorrent/patches/patch-BitTorrent___init___py b/net/BitTorrent/patches/patch-BitTorrent___init___py deleted file mode 100644 index 7efbf7aa156..00000000000 --- a/net/BitTorrent/patches/patch-BitTorrent___init___py +++ /dev/null @@ -1,28 +0,0 @@ -$OpenBSD: patch-BitTorrent___init___py,v 1.3 2005/08/02 14:00:31 naddy Exp $ ---- BitTorrent/__init__.py.orig Sat Jul 9 01:22:38 2005 -+++ BitTorrent/__init__.py Tue Jul 19 20:58:37 2005 -@@ -29,7 +29,7 @@ if os.name == 'posix': - gettext.install('bittorrent', 'locale') - - def calc_unix_dirs(): -- appdir = '%s-%s'%(app_name, version) -+ appdir = app_name - ip = os.path.join('share', 'pixmaps', appdir) - dp = os.path.join('share', 'doc' , appdir) - lp = os.path.join('share', 'locale') -@@ -145,10 +145,13 @@ if is_frozen_exe: - del sys - - def spawn(torrentqueue, cmd, *args): -- ext = 'py' -+ ext = '' - if is_frozen_exe: - ext = 'exe' -- path = os.path.join(app_root,cmd+'.'+ext) -+ if ext == '': -+ path = os.path.join(app_root,cmd) -+ else: -+ path = os.path.join(app_root,cmd+'.'+ext) - args = [path] + list(args) # $0 - if os.name == 'nt': - # do proper argument quoting since exec/spawn on Windows doesn't diff --git a/net/BitTorrent/patches/patch-BitTorrent_defaultargs_py b/net/BitTorrent/patches/patch-BitTorrent_defaultargs_py index 668db290a96..5481255a041 100644 --- a/net/BitTorrent/patches/patch-BitTorrent_defaultargs_py +++ b/net/BitTorrent/patches/patch-BitTorrent_defaultargs_py @@ -1,7 +1,7 @@ -$OpenBSD: patch-BitTorrent_defaultargs_py,v 1.3 2005/08/02 14:00:31 naddy Exp $ ---- BitTorrent/defaultargs.py.orig Sat Jul 9 01:22:38 2005 -+++ BitTorrent/defaultargs.py Tue Jul 19 20:58:37 2005 -@@ -112,7 +112,7 @@ rare_options = [ +$OpenBSD: patch-BitTorrent_defaultargs_py,v 1.4 2005/10/18 14:12:35 naddy Exp $ +--- BitTorrent/defaultargs.py.orig Tue Aug 16 01:06:26 2005 ++++ BitTorrent/defaultargs.py Mon Oct 3 16:30:54 2005 +@@ -114,7 +114,7 @@ rare_options = [ _("do not connect to several peers that have the same IP address")), ('peer_socket_tos', 8, _("if nonzero, set the TOS option for peer connections to this value")), diff --git a/net/BitTorrent/patches/patch-BitTorrent_platform_py b/net/BitTorrent/patches/patch-BitTorrent_platform_py new file mode 100644 index 00000000000..3ea59ae9125 --- /dev/null +++ b/net/BitTorrent/patches/patch-BitTorrent_platform_py @@ -0,0 +1,12 @@ +$OpenBSD: patch-BitTorrent_platform_py,v 1.1 2005/10/18 14:12:35 naddy Exp $ +--- BitTorrent/platform.py.orig Wed Oct 12 06:08:35 2005 ++++ BitTorrent/platform.py Sun Oct 16 23:06:10 2005 +@@ -51,7 +51,7 @@ if os_name == 'nt': + del wh, wv, wk + + def calc_unix_dirs(): +- appdir = '%s-%s'%(app_name, version) ++ appdir = app_name + ip = os.path.join('share', 'pixmaps', appdir) + dp = os.path.join('share', 'doc' , appdir) + lp = os.path.join('share', 'locale') diff --git a/net/BitTorrent/patches/patch-makei18n_sh b/net/BitTorrent/patches/patch-makei18n_sh index 6a6bbc80bd2..45fd6d7915a 100644 --- a/net/BitTorrent/patches/patch-makei18n_sh +++ b/net/BitTorrent/patches/patch-makei18n_sh @@ -1,36 +1,55 @@ -$OpenBSD: patch-makei18n_sh,v 1.1 2005/08/02 14:00:31 naddy Exp $ ---- makei18n.sh.orig Tue Jul 19 22:00:59 2005 -+++ makei18n.sh Tue Jul 19 22:01:25 2005 -@@ -2,25 +2,25 @@ APP_NAME="bittorrent" - LANGUAGES='af ar da de es fi fr he_IL hu it ja ko nl no pt_BR ro ru sk sl sq sv tr zh_CN zh_TW' +$OpenBSD: patch-makei18n_sh,v 1.2 2005/10/18 14:12:35 naddy Exp $ +--- makei18n.sh.orig Sun Oct 16 23:04:46 2005 ++++ makei18n.sh Sun Oct 16 23:05:42 2005 +@@ -2,40 +2,40 @@ APP_NAME="bittorrent" + LANGUAGES='af ar bg ca cs da de es es_MX eo et fi fr ga gr he_IL hr hu hy it ja ka ko lt ms nl nb_NO pl pt pt_BR ro ru sk sl sq sv th tr uk vi zh_CN zh_TW' MESSAGES_PO="messages.pot" -rm -f $APP_NAME.lis +-rm -f *~ +#rm -f $APP_NAME.lis ++#rm -f *~ # create .pot file with most important strings first so that people # who start but don't finish translations end up translating the most # important parts --ls bt*gui.py >> $APP_NAME.lis --ls BitTorrent/GUI.py >> $APP_NAME.lis --ls BitTorrent/TorrentQueue.py >> $APP_NAME.lis --ls BitTorrent/defaultargs.py >> $APP_NAME.lis --ls bt*.py >> $APP_NAME.lis --ls *py >> $APP_NAME.lis -+#ls bt*gui.py >> $APP_NAME.lis -+#ls BitTorrent/GUI.py >> $APP_NAME.lis -+#ls BitTorrent/TorrentQueue.py >> $APP_NAME.lis -+#ls BitTorrent/defaultargs.py >> $APP_NAME.lis -+#ls bt*.py >> $APP_NAME.lis -+#ls *py >> $APP_NAME.lis +-ls bittorrent.py maketorrent.py >> $APP_NAME.lis +-ls BitTorrent/GUI.py >> $APP_NAME.lis +-ls BitTorrent/TorrentQueue.py >> $APP_NAME.lis +-ls BitTorrent/NewVersion.py >> $APP_NAME.lis +-ls BitTorrent/defaultargs.py >> $APP_NAME.lis +-ls *py >> $APP_NAME.lis ++#ls bittorrent.py maketorrent.py >> $APP_NAME.lis ++#ls BitTorrent/GUI.py >> $APP_NAME.lis ++#ls BitTorrent/TorrentQueue.py >> $APP_NAME.lis ++#ls BitTorrent/NewVersion.py >> $APP_NAME.lis ++#ls BitTorrent/defaultargs.py >> $APP_NAME.lis ++#ls *py >> $APP_NAME.lis # find everything else -find . -name \*.py -type f | egrep -v '/(build)|(dist)|(test)/' >> $APP_NAME.lis +#find . -name \*.py -type f | egrep -v '/(build)|(dist)|(test)/' >> $APP_NAME.lis --xgettext -f $APP_NAME.lis -L Python -o - | \ -- sed -e 's/CHARSET/UTF-8/' > $MESSAGES_PO.nonunique -+#xgettext -f $APP_NAME.lis -L Python -o - | \ -+# sed -e 's/CHARSET/UTF-8/' > $MESSAGES_PO.nonunique +-xgettext -f $APP_NAME.lis -L Python -o - |\ +- sed -e 's/CHARSET/UTF-8/' |\ +- sed -e 's/SOME DESCRIPTIVE TITLE./BitTorrent/' |\ +- sed -e 's/YEAR/2005/' |\ +- sed -e "s/THE PACKAGE'S COPYRIGHT HOLDER/BitTorrent, Inc./" |\ +- sed -e 's/PACKAGE/BitTorrent/' |\ +- sed -e 's/VERSION/4.2/' |\ +- sed -e 's/FIRST AUTHOR/Matt Chisholm/' |\ +- sed -e 's/EMAIL@ADDRESS/matt (dash) translations (at) bittorrent (dot) com/' |\ +- sed -e 's/FULL NAME/Matt Chisholm/' > $MESSAGES_PO.nonunique ++#xgettext -f $APP_NAME.lis -L Python -o - |\ ++# sed -e 's/CHARSET/UTF-8/' |\ ++# sed -e 's/SOME DESCRIPTIVE TITLE./BitTorrent/' |\ ++# sed -e 's/YEAR/2005/' |\ ++# sed -e "s/THE PACKAGE'S COPYRIGHT HOLDER/BitTorrent, Inc./" |\ ++# sed -e 's/PACKAGE/BitTorrent/' |\ ++# sed -e 's/VERSION/4.2/' |\ ++# sed -e 's/FIRST AUTHOR/Matt Chisholm/' |\ ++# sed -e 's/EMAIL@ADDRESS/matt (dash) translations (at) bittorrent (dot) com/' |\ ++# sed -e 's/FULL NAME/Matt Chisholm/' > $MESSAGES_PO.nonunique + -msguniq $MESSAGES_PO.nonunique > $MESSAGES_PO -rm -f $MESSAGES_PO.nonunique @@ -39,3 +58,9 @@ $OpenBSD: patch-makei18n_sh,v 1.1 2005/08/02 14:00:31 naddy Exp $ for lang in $LANGUAGES ; do echo "making $lang" + mkdir -p locale/$lang/LC_MESSAGES +- msgmerge --no-fuzzy-matching po/$lang.po $MESSAGES_PO \ ++ msgmerge po/$lang.po $MESSAGES_PO \ + | egrep -v '^#~' \ + > locale/$lang/LC_MESSAGES/$APP_NAME.po + msgfmt -o locale/$lang/LC_MESSAGES/$APP_NAME.mo \ diff --git a/net/BitTorrent/patches/patch-setup_py b/net/BitTorrent/patches/patch-setup_py deleted file mode 100644 index bf5a920d658..00000000000 --- a/net/BitTorrent/patches/patch-setup_py +++ /dev/null @@ -1,18 +0,0 @@ -$OpenBSD: patch-setup_py,v 1.6 2005/08/02 14:00:31 naddy Exp $ ---- setup.py.orig Sat Jul 9 10:48:58 2005 -+++ setup.py Tue Jul 19 20:58:37 2005 -@@ -24,10 +24,10 @@ import BitTorrent - - import glob - --scripts = ["btdownloadgui.py", "btdownloadcurses.py", "btdownloadheadless.py", -- "btmaketorrentgui.py", "btmaketorrent.py", -- "btlaunchmany.py", "btlaunchmanycurses.py", -- "bttrack.py", "btreannounce.py", "btrename.py", "btshowmetainfo.py"] -+scripts = ["btdownloadgui", "btdownloadcurses", "btdownloadheadless", -+ "btmaketorrentgui", "btmaketorrent", -+ "btlaunchmany", "btlaunchmanycurses", -+ "bttrack", "btreannounce", "btrename", "btshowmetainfo"] - - img_root, doc_root, locale_root = BitTorrent.calc_unix_dirs() - diff --git a/net/BitTorrent/pkg/PLIST b/net/BitTorrent/pkg/PLIST index 6abe2eb3354..afd6a4e73c1 100644 --- a/net/BitTorrent/pkg/PLIST +++ b/net/BitTorrent/pkg/PLIST @@ -1,13 +1,14 @@ -@comment $OpenBSD: PLIST,v 1.8 2005/08/02 14:00:32 naddy Exp $ -bin/btdownloadcurses -bin/btdownloadheadless -bin/btlaunchmany -bin/btlaunchmanycurses -bin/btmaketorrent -bin/btreannounce -bin/btrename -bin/btshowmetainfo -bin/bttrack +@comment $OpenBSD: PLIST,v 1.9 2005/10/18 14:12:35 naddy Exp $ +bin/bittorrent-console +bin/bittorrent-curses +bin/bittorrent-tracker +bin/changetracker-console +bin/launchmany-console +bin/launchmany-curses +bin/maketorrent-console +bin/torrentinfo-console +lib/python${MODPY_VERSION}/ +lib/python${MODPY_VERSION}/site-packages/ lib/python${MODPY_VERSION}/site-packages/BitTorrent/ lib/python${MODPY_VERSION}/site-packages/BitTorrent/Choker.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/Choker.pyc @@ -25,12 +26,16 @@ lib/python${MODPY_VERSION}/site-packages/BitTorrent/DownloaderFeedback.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/DownloaderFeedback.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/Encoder.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/Encoder.pyc +lib/python${MODPY_VERSION}/site-packages/BitTorrent/GetTorrent.py +lib/python${MODPY_VERSION}/site-packages/BitTorrent/GetTorrent.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/HTTPHandler.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/HTTPHandler.pyc +lib/python${MODPY_VERSION}/site-packages/BitTorrent/LaunchPath.py +lib/python${MODPY_VERSION}/site-packages/BitTorrent/LaunchPath.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/NatCheck.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/NatCheck.pyc -lib/python${MODPY_VERSION}/site-packages/BitTorrent/OpenPath.py -lib/python${MODPY_VERSION}/site-packages/BitTorrent/OpenPath.pyc +lib/python${MODPY_VERSION}/site-packages/BitTorrent/NewVersion.py +lib/python${MODPY_VERSION}/site-packages/BitTorrent/NewVersion.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/PiecePicker.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/PiecePicker.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/RateLimiter.py @@ -39,6 +44,10 @@ lib/python${MODPY_VERSION}/site-packages/BitTorrent/RateMeasure.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/RateMeasure.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/RawServer.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/RawServer.pyc +lib/python${MODPY_VERSION}/site-packages/BitTorrent/RawServer_magic.py +lib/python${MODPY_VERSION}/site-packages/BitTorrent/RawServer_magic.pyc +lib/python${MODPY_VERSION}/site-packages/BitTorrent/RawServer_twisted.py +lib/python${MODPY_VERSION}/site-packages/BitTorrent/RawServer_twisted.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/Rerequester.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/Rerequester.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/Storage.py @@ -63,6 +72,8 @@ lib/python${MODPY_VERSION}/site-packages/BitTorrent/controlsocket.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/controlsocket.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/defaultargs.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/defaultargs.pyc +lib/python${MODPY_VERSION}/site-packages/BitTorrent/defer.py +lib/python${MODPY_VERSION}/site-packages/BitTorrent/defer.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/download.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/download.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/launchmanycore.py @@ -77,6 +88,8 @@ lib/python${MODPY_VERSION}/site-packages/BitTorrent/parsedir.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/parsedir.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/platform.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/platform.pyc +lib/python${MODPY_VERSION}/site-packages/BitTorrent/prefs.py +lib/python${MODPY_VERSION}/site-packages/BitTorrent/prefs.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/selectpoll.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/selectpoll.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/track.py @@ -94,8 +107,6 @@ lib/python${MODPY_VERSION}/site-packages/khashmir/cache.py lib/python${MODPY_VERSION}/site-packages/khashmir/cache.pyc lib/python${MODPY_VERSION}/site-packages/khashmir/const.py lib/python${MODPY_VERSION}/site-packages/khashmir/const.pyc -lib/python${MODPY_VERSION}/site-packages/khashmir/defer.py -lib/python${MODPY_VERSION}/site-packages/khashmir/defer.pyc lib/python${MODPY_VERSION}/site-packages/khashmir/hammerlock.py lib/python${MODPY_VERSION}/site-packages/khashmir/hammerlock.pyc lib/python${MODPY_VERSION}/site-packages/khashmir/inserter.py @@ -139,6 +150,7 @@ share/doc/BitTorrent/README.txt share/doc/BitTorrent/TRACKERLESS.txt share/doc/BitTorrent/credits-l10n.txt share/doc/BitTorrent/credits.txt +share/doc/BitTorrent/public.key @comment share/doc/BitTorrent/redirdonate.html share/locale/ share/locale/af/ @@ -147,42 +159,87 @@ share/locale/af/LC_MESSAGES/bittorrent.mo share/locale/ar/ share/locale/ar/LC_MESSAGES/ share/locale/ar/LC_MESSAGES/bittorrent.mo +share/locale/bg/ +share/locale/bg/LC_MESSAGES/ +share/locale/bg/LC_MESSAGES/bittorrent.mo +share/locale/ca/ +share/locale/ca/LC_MESSAGES/ +share/locale/ca/LC_MESSAGES/bittorrent.mo +share/locale/cs/ +share/locale/cs/LC_MESSAGES/ +share/locale/cs/LC_MESSAGES/bittorrent.mo share/locale/da/ share/locale/da/LC_MESSAGES/ share/locale/da/LC_MESSAGES/bittorrent.mo share/locale/de/ share/locale/de/LC_MESSAGES/ share/locale/de/LC_MESSAGES/bittorrent.mo +share/locale/eo/ +share/locale/eo/LC_MESSAGES/ +share/locale/eo/LC_MESSAGES/bittorrent.mo share/locale/es/ share/locale/es/LC_MESSAGES/ share/locale/es/LC_MESSAGES/bittorrent.mo +share/locale/es_MX/ +share/locale/es_MX/LC_MESSAGES/ +share/locale/es_MX/LC_MESSAGES/bittorrent.mo +share/locale/et/ +share/locale/et/LC_MESSAGES/ +share/locale/et/LC_MESSAGES/bittorrent.mo share/locale/fi/ share/locale/fi/LC_MESSAGES/ share/locale/fi/LC_MESSAGES/bittorrent.mo share/locale/fr/ share/locale/fr/LC_MESSAGES/ share/locale/fr/LC_MESSAGES/bittorrent.mo +share/locale/ga/ +share/locale/ga/LC_MESSAGES/ +share/locale/ga/LC_MESSAGES/bittorrent.mo +share/locale/gr/ +share/locale/gr/LC_MESSAGES/ +share/locale/gr/LC_MESSAGES/bittorrent.mo share/locale/he_IL/ share/locale/he_IL/LC_MESSAGES/ share/locale/he_IL/LC_MESSAGES/bittorrent.mo +share/locale/hr/ +share/locale/hr/LC_MESSAGES/ +share/locale/hr/LC_MESSAGES/bittorrent.mo share/locale/hu/ share/locale/hu/LC_MESSAGES/ share/locale/hu/LC_MESSAGES/bittorrent.mo +share/locale/hy/ +share/locale/hy/LC_MESSAGES/ +share/locale/hy/LC_MESSAGES/bittorrent.mo share/locale/it/ share/locale/it/LC_MESSAGES/ share/locale/it/LC_MESSAGES/bittorrent.mo share/locale/ja/ share/locale/ja/LC_MESSAGES/ share/locale/ja/LC_MESSAGES/bittorrent.mo +share/locale/ka/ +share/locale/ka/LC_MESSAGES/ +share/locale/ka/LC_MESSAGES/bittorrent.mo share/locale/ko/ share/locale/ko/LC_MESSAGES/ share/locale/ko/LC_MESSAGES/bittorrent.mo +share/locale/lt/ +share/locale/lt/LC_MESSAGES/ +share/locale/lt/LC_MESSAGES/bittorrent.mo +share/locale/ms/ +share/locale/ms/LC_MESSAGES/ +share/locale/ms/LC_MESSAGES/bittorrent.mo +share/locale/nb_NO/ +share/locale/nb_NO/LC_MESSAGES/ +share/locale/nb_NO/LC_MESSAGES/bittorrent.mo share/locale/nl/ share/locale/nl/LC_MESSAGES/ share/locale/nl/LC_MESSAGES/bittorrent.mo -share/locale/no/ -share/locale/no/LC_MESSAGES/ -share/locale/no/LC_MESSAGES/bittorrent.mo +share/locale/pl/ +share/locale/pl/LC_MESSAGES/ +share/locale/pl/LC_MESSAGES/bittorrent.mo +share/locale/pt/ +share/locale/pt/LC_MESSAGES/ +share/locale/pt/LC_MESSAGES/bittorrent.mo share/locale/pt_BR/ share/locale/pt_BR/LC_MESSAGES/ share/locale/pt_BR/LC_MESSAGES/bittorrent.mo @@ -204,9 +261,18 @@ share/locale/sq/LC_MESSAGES/bittorrent.mo share/locale/sv/ share/locale/sv/LC_MESSAGES/ share/locale/sv/LC_MESSAGES/bittorrent.mo +share/locale/th/ +share/locale/th/LC_MESSAGES/ +share/locale/th/LC_MESSAGES/bittorrent.mo share/locale/tr/ share/locale/tr/LC_MESSAGES/ share/locale/tr/LC_MESSAGES/bittorrent.mo +share/locale/uk/ +share/locale/uk/LC_MESSAGES/ +share/locale/uk/LC_MESSAGES/bittorrent.mo +share/locale/vi/ +share/locale/vi/LC_MESSAGES/ +share/locale/vi/LC_MESSAGES/bittorrent.mo share/locale/zh_CN/ share/locale/zh_CN/LC_MESSAGES/ share/locale/zh_CN/LC_MESSAGES/bittorrent.mo diff --git a/net/BitTorrent/pkg/PLIST-gui b/net/BitTorrent/pkg/PLIST-gui index a69c7b0ace1..21d4b9af8ef 100644 --- a/net/BitTorrent/pkg/PLIST-gui +++ b/net/BitTorrent/pkg/PLIST-gui @@ -1,6 +1,6 @@ -@comment $OpenBSD: PLIST-gui,v 1.1 2005/05/15 14:58:09 naddy Exp $ -bin/btdownloadgui -bin/btmaketorrentgui +@comment $OpenBSD: PLIST-gui,v 1.2 2005/10/18 14:12:35 naddy Exp $ +bin/bittorrent +bin/maketorrent lib/python${MODPY_VERSION}/site-packages/BitTorrent/Desktop.py lib/python${MODPY_VERSION}/site-packages/BitTorrent/Desktop.pyc lib/python${MODPY_VERSION}/site-packages/BitTorrent/GUI.py @@ -20,3 +20,6 @@ share/pixmaps/BitTorrent/play.png share/pixmaps/BitTorrent/queued.png share/pixmaps/BitTorrent/remove.png share/pixmaps/BitTorrent/running.png +share/pixmaps/BitTorrent/status-natted.png +share/pixmaps/BitTorrent/status-running.png +share/pixmaps/BitTorrent/status-stopped.png