Commit Graph

8 Commits

Author SHA1 Message Date
Tony Theodore 3647c00624 libftdi: fix typo 2014-12-07 04:30:09 +11:00
Uwe Hermann b95792ee07 libftdi: Explicitly disable bindings and docs.
Building the libftdi C++/Python bindings requires the (pretty large)
dependencies on boost/Python, so disable them for now.

Also disable unneeded documentation.

This fixes issue #572.
2014-12-05 18:20:56 +01:00
Tony Theodore 8de0584a23 many packages: explicitly disable shared builds
closes #369
2014-04-06 23:18:24 +10:00
Volker Grabsch e412eb642d Move package versions from index.html back into the src/*.mk files
Most of the automatic conversion was done using the following Python script:

import os
import re
pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk'))
with open('index.html', 'rb') as f:
    index = f.read()
pkgs_index = re.findall('<td class="package">([^<]*)</td>', index)
assert pkgs_index == pkgs
versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index))
assert sorted(versions.keys()) == pkgs
for pkg in pkgs:
    version = versions[pkg]
    with open('src/' + pkg + '.mk', 'rb') as f:
        mk = f.read()
    checksumpos = mk.index('\n$(PKG)_CHECKSUM ')
    versionline = '\n$(PKG)_VERSION  := %(version)s' % {'version': version}
    newmk = mk[:checksumpos] + versionline + mk[checksumpos:]
    with open('src/' + pkg + '.mk', 'wb') as f:
        f.write(newmk)
2013-07-22 01:41:31 +02:00
Tony Theodore 1262c92938 package libftdi: fix usb detection override 2013-01-08 21:14:10 +11:00
Mark Brand e2dbfbafae package libftdi: override libusb detection
Otherwise libusb will be detected on the build system and fail if
it isn't there.
2013-01-08 10:30:15 +01:00
Mark Brand cb1bc48342 package libftdi: use config.guess 2013-01-08 10:09:12 +01:00
Uwe Hermann 604dbdf69f Add libftdi package. 2013-01-08 01:11:37 +01:00