ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/pack/freebsd/security/py-keyring/files/patch-extensions.py
Revision: 117
Committed: 2009-09-03T15:49:06-07:00 (15 years, 9 months ago) by douglas
Content type: text/x-diff
File size: 599 byte(s)
Log Message:
The conclusion of the KDE tests is that we needed to patch for KDE4 and KDE3 most likely doesn't work.

File Contents

# Content
1 --- extensions.py.orig 2009-08-21 09:34:01.000000000 -0700
2 +++ extensions.py 2009-09-03 15:43:41.224189815 -0700
3 @@ -42,9 +42,9 @@
4
5 keywords.setdefault('libraries', []).append('kdeui')
6 libs = commands.getoutput("kde4-config --path lib").split(':')
7 - if len(libs) == 0:
8 - libs = commands.getoutput("kde-config --path lib").split(':')
9 keywords.setdefault('library_dirs', []).extend(libs)
10 + includes = commands.getoutput("kde4-config --install include").split(':')
11 + keywords.setdefault('include_dirs', []).extend(includes)
12 return keywords
13
14 def get_extensions():

Properties

Name Value
svn:mime-type text/x-diff