summaryrefslogtreecommitdiff
blob: 69fddf67117f058041c7232f3131a2adf274ff1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import os
from os.path import join as pjoin, basename, dirname, exists
import subprocess as sp

import benchconfig as cfg

def GetFile(file, impl, roots='/'):
    if file[-3:] != '.pc':
        fname = file + '.pc'
    else:
        fname = file
    
    libdir = cfg.libdir
    while libdir[0] == '/':
        libdir = libdir[1:]
    
    # Check alternatives
    if type(roots) == type(''):
        roots = roots,
    pkgcfgpath = ':'.join([pjoin(r,'etc/env.d/alternatives', file, impl, \
      libdir, 'pkgconfig', fname) for r in roots])
     
    if os.path.exists(pkgcfgpath):
        return pkgcfgpath
    else:
        raise Exception('pkg-config fname ' + file + ' not found', pkgcfgpath)
    
def Requires(fname):
    env = {'PKG_CONFIG_PATH' : dirname(fname)}
    cmd = ['pkg-config', '--print-requires', basename(fname)[:-3]]
    proc = sp.Popen(cmd, env=env, stdout=sp.PIPE)
    return proc.communicate()[0].split()
       
    
def Run(fname, root='/', requires=True):
    if not requires:
        lines = file(fname, 'r').readlines()
        newlines = [l for l in lines if l[:10] != 'Requires: ']
        file(fname, 'w').writelines(newlines)
    
    bname = basename(fname)
    if bname[-3:] == '.pc':
        bname = bname[:-3]
        
    env = {'PKG_CONFIG_PATH' : dirname(fname), 'PKG_CONFIG_SYSROOT_DIR' : root}
    cmd = ['pkg-config', '--libs', '--cflags', bname]
    proc = sp.Popen(cmd, env=env, stdout=sp.PIPE)
    out = proc.communicate()[0].strip()
    
    if not requires:
        file(fname, 'w').writelines(lines)
        
    return out