diff options
author | lioux <lioux@FreeBSD.org> | 2006-02-02 07:57:44 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2006-02-02 07:57:44 +0800 |
commit | f61fe6bd7ce7c497b5b09f45ac4d1326a2ff0eb5 (patch) | |
tree | 423a435a011b6a05fd47f363c9cd94cd99b4d73b /net-p2p/py-bittorrent-devel | |
parent | 173b4630a131634c6d11d45e44f88b3624565e1d (diff) | |
download | freebsd-ports-gnome-f61fe6bd7ce7c497b5b09f45ac4d1326a2ff0eb5.tar.gz freebsd-ports-gnome-f61fe6bd7ce7c497b5b09f45ac4d1326a2ff0eb5.tar.zst freebsd-ports-gnome-f61fe6bd7ce7c497b5b09f45ac4d1326a2ff0eb5.zip |
o Do not install icons if WITHOUT_GUI is set
o Bump PORTREVISION
Submitted by: pointyhat (kris)
Diffstat (limited to 'net-p2p/py-bittorrent-devel')
-rw-r--r-- | net-p2p/py-bittorrent-devel/Makefile | 1 | ||||
-rw-r--r-- | net-p2p/py-bittorrent-devel/files/extra-nogui-patch-setup.py | 22 |
2 files changed, 13 insertions, 10 deletions
diff --git a/net-p2p/py-bittorrent-devel/Makefile b/net-p2p/py-bittorrent-devel/Makefile index c039024e46c7..af96781bd094 100644 --- a/net-p2p/py-bittorrent-devel/Makefile +++ b/net-p2p/py-bittorrent-devel/Makefile @@ -7,6 +7,7 @@ PORTNAME= BitTorrent PORTVERSION= 4.4.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES?= net-p2p python MASTER_SITES= http://www.bittorrent.com/dl/ \ diff --git a/net-p2p/py-bittorrent-devel/files/extra-nogui-patch-setup.py b/net-p2p/py-bittorrent-devel/files/extra-nogui-patch-setup.py index edffccf24d67..85e44986d566 100644 --- a/net-p2p/py-bittorrent-devel/files/extra-nogui-patch-setup.py +++ b/net-p2p/py-bittorrent-devel/files/extra-nogui-patch-setup.py @@ -1,8 +1,8 @@ ---- setup.py.orig Tue Aug 23 22:58:45 2005 -+++ setup.py Tue Aug 23 23:09:21 2005 -@@ -25,8 +25,8 @@ - - import glob +--- setup.py.orig Tue Jan 31 18:17:23 2006 ++++ setup.py Wed Feb 1 21:41:07 2006 +@@ -38,8 +38,8 @@ + os.rmdir('FOO') + # done detecting case-insensitive filesystem -symlinks = ["bittorrent" , "bittorrent-curses", "bittorrent-console", - "maketorrent", "maketorrent-console", @@ -11,11 +11,13 @@ "launchmany-curses", "launchmany-console", "changetracker-console", "torrentinfo-console", -@@ -53,5 +53,5 @@ - translations.append (("%s/%s/LC_MESSAGES" % (locale_root, l), - ["locale/%s/LC_MESSAGES/bittorrent.mo" % l])) +@@ -68,7 +68,5 @@ + translations.append((os.path.join(locale_root, l, 'LC_MESSAGES'), + [path,])) -data_files = [ (img_root , glob.glob('images/*png')+['images/bittorrent.ico',]), -- (img_root+'/logo', glob.glob('images/logo/bittorrent_[0-9]*.png') ), +- (img_root+'/logo', glob.glob('images/logo/bittorrent_[0-9]*.png' )), +- (img_root+'/icons/default', glob.glob('images/icons/default/*.png' )), +- (img_root+'/icons/old' , glob.glob('images/icons/old/*.png' )), +data_files = [ -+ ++ |