blob: 52082492e75f6d6153ba7a66d5faa89965b18752 (
plain)
1
2
3
4
5
6
7
8
9
|
def gtkbinver_find(d):
import bb
try:
for line in file( "%s/gtk+-2.0.pc" % bb.data.getVar('PKG_CONFIG_DIR', d, 1) ).readlines():
if line.startswith( "gtk_binary_version" ):
# bb.note( "gtk_binary_version = '%s'" % line.split("=")[1].strip() )
return line.split("=")[1].strip()
except OSError:
return "0.0.0"
|