buildout.cfg 1.1 KB
Newer Older
Antoine Catton's avatar
Antoine Catton committed
1 2 3 4
[buildout]
extends =
  ../zlib/buildout.cfg
  ../openssl/buildout.cfg
5
  ../patch/buildout.cfg
Antoine Catton's avatar
Antoine Catton committed
6 7 8

parts = shellinabox

9 10 11 12 13 14 15
[shellinabox-full-path-patch]
recipe = hexagonit.recipe.download
filename = 0002-Allow-to-run-entire-command-path.patch
url = ${:_profile_base_location_}/${:filename}
download-only = true


16 17 18 19 20 21
[shellinabox-ipv6-patch]
recipe = hexagonit.recipe.download
filename = 0001-Switch-to-IPv6.patch
url = ${:_profile_base_location_}/${:filename}
download-only = true

Antoine Catton's avatar
Antoine Catton committed
22 23 24 25 26 27 28 29
[shellinabox]
recipe = hexagonit.recipe.cmmi
url = http://shellinabox.googlecode.com/files/shellinabox-2.10.tar.gz
md5sum = 0e144910d85d92edc54702ab9c46f032
environment =
    CFLAGS = -I${zlib:location}/include -I${openssl:location}/include
    LDFLAGS = -L${zlib:location}/lib -Wl,-rpath=${zlib:location}/lib -L${openssl:location}/lib -Wl,-rpath=${openssl:location}/lib
    PKG_CONFIG_PATH = ${openssl:location}/lib/pkgconfig/
30 31 32 33
patch-binary = ${patch:location}/bin/patch
patch-options = -p1
patches =
    ${shellinabox-ipv6-patch:location}/${shellinabox-ipv6-patch:filename}
34
    ${shellinabox-full-path-patch:location}/${shellinabox-full-path-patch:filename}