ports/net/straw/files/patch-setup.py
Adam Weinberger b31b5c61b0 Update to 0.22.1. The code is no longer optimized upon install, as it was
causing the install to bork out on -CURRENT. Hopefully this can be
fixed later on.

PR:		ports/63156
Submitted by:	mezz (maintainer)
2004-02-21 21:10:27 +00:00

15 lines
601 B
Python

--- setup.py.orig Fri Feb 20 17:53:55 2004
+++ setup.py Fri Feb 20 17:54:20 2004
@@ -79,9 +79,9 @@
'''Build list of data files to be installed'''
images = glob.glob('images/*.png')
files = [
- ('share/pixmaps', ['images/straw.png']),
- ('share/applications', ['straw.desktop']),
- ('share/straw', images +
+ ('share/gnome/pixmaps', ['images/straw.png']),
+ ('share/gnome/applications', ['straw.desktop']),
+ ('share/gnome/straw', images +
['data/default_subscriptions.opml', 'glade/straw.glade'])]
return files