[banshee] [build] include the tango icon theme in the deps



commit bca096ec931754d66b82c658e8c377bc44b30dd6
Author: Aaron Bockover <abockover novell com>
Date:   Mon Dec 28 16:36:29 2009 -0500

    [build] include the tango icon theme in the deps

 build/bundle/packages/icon-naming-utils.py |    7 +++++++
 build/bundle/packages/librsvg.py           |    9 +++++++++
 build/bundle/packages/tango-icon-theme.py  |   11 +++++++++++
 build/bundle/profile.osx.py                |   14 +++++++-------
 4 files changed, 34 insertions(+), 7 deletions(-)
---
diff --git a/build/bundle/packages/icon-naming-utils.py b/build/bundle/packages/icon-naming-utils.py
new file mode 100644
index 0000000..13787ef
--- /dev/null
+++ b/build/bundle/packages/icon-naming-utils.py
@@ -0,0 +1,7 @@
+package = {
+	'name':    'icon-naming-utils',
+	'version': '0.8.90',
+	'sources': [
+		'http://tango.freedesktop.org/releases/%{name}-%{version}.tar.gz'
+	]
+}
diff --git a/build/bundle/packages/librsvg.py b/build/bundle/packages/librsvg.py
new file mode 100644
index 0000000..056d3b7
--- /dev/null
+++ b/build/bundle/packages/librsvg.py
@@ -0,0 +1,9 @@
+package = {
+	'name':          'librsvg',
+	'version_major': '2.26',
+	'version_minor': '0',
+	'version':       '%{version_major}.%{version_minor}',
+	'sources': [
+		'http://ftp.gnome.org/pub/gnome/sources/%{name}/%{version_major}/%{name}-%{version}.tar.gz',
+	]
+}
diff --git a/build/bundle/packages/tango-icon-theme.py b/build/bundle/packages/tango-icon-theme.py
new file mode 100644
index 0000000..9ec4f87
--- /dev/null
+++ b/build/bundle/packages/tango-icon-theme.py
@@ -0,0 +1,11 @@
+package = {
+	'name':    'tango-icon-theme',
+	'version': '0.8.90',
+	'sources': [
+		'http://tango.freedesktop.org/releases/%{name}-%{version}.tar.gz'
+	],
+	'build': [
+		'%{__configure} --enable-png-creation --disable-icon-framing',
+		'%{__make}'
+	]
+}
diff --git a/build/bundle/profile.osx.py b/build/bundle/profile.osx.py
index 8ae5b89..9765b85 100644
--- a/build/bundle/profile.osx.py
+++ b/build/bundle/profile.osx.py
@@ -3,10 +3,9 @@ profile = {
 	'build_root': os.path.join (os.getcwd (), 'build-root'),
 	'prefix': '%{build_root}/_install',
 	'mac_sdk_path': '/Developer/SDKs/MacOSX10.5.sdk',
-	'mono_sdk_path': '/Library/Frameworks/Mono.framework/Versions/Current',
 }
 
-search_paths = ['%{prefix}'] #, '%{mono_sdk_path}']
+search_paths = ['%{prefix}']
 bin_paths = [os.path.join (p, 'bin') for p in search_paths]
 bin_paths.extend (['/usr/bin', '/bin'])
 lib_paths = [os.path.join (p, 'lib') for p in search_paths]
@@ -68,7 +67,12 @@ profile['packages'] = [
 	'packages/sqlite.py',
 	'packages/ige-mac-integration.py',
 	'packages/mono.py',
-	
+
+	# Icons
+	'packages/librsvg.py',
+	'packages/icon-naming-utils.py',
+	'packages/tango-icon-theme.py',
+
 	# Xiph codecs/formats
 	'packages/libogg.py',
 	'packages/libvorbis.py',
@@ -101,7 +105,3 @@ profile['packages'] = [
 
 if not os.path.isdir (profile['mac_sdk_path']):
 	sys.exit ('Mac OS X SDK does not exist: %s' % profile['mac_sdk_path'])
-
-if not os.path.isdir (profile['mono_sdk_path']):
-	sys.exit ('Mono SDK does not exist: %s' % profile['mono_sdk_path'])
-



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]