Commit ef0b3736 authored by Kirill Smelkov's avatar Kirill Smelkov

old work-in-progress on building gitlab

parent 2e7578b4
...@@ -3,6 +3,12 @@ extends = ...@@ -3,6 +3,12 @@ extends =
slapos/stack/slapos.cfg slapos/stack/slapos.cfg
slapos/component/ruby/buildout.cfg slapos/component/ruby/buildout.cfg
slapos/component/postgresql/buildout.cfg slapos/component/postgresql/buildout.cfg
slapos/component/cmake/buildout.cfg
slapos/component/icu/buildout.cfg
slapos/component/pkgconfig/buildout.cfg
# NOTE kerberos can be --without'ed in 7.11
slapos/component/kerberos/buildout.cfg
parts = parts =
...@@ -11,6 +17,10 @@ parts = ...@@ -11,6 +17,10 @@ parts =
# ruby # ruby
git git
postgresql postgresql
cmake
icu
kerberos
pkgconfig
ktestbin ktestbin
...@@ -63,9 +73,9 @@ bundle = ${buildout:bin-directory}/bundle ...@@ -63,9 +73,9 @@ bundle = ${buildout:bin-directory}/bundle
# ( reason: rubygemsrecipe hardcodes PATH inside generated bin/* and it is # ( reason: rubygemsrecipe hardcodes PATH inside generated bin/* and it is
# impossible to adjust it later ) # impossible to adjust it later )
environment = environment =
PATH = ${postgresql:location}/bin:%(PATH)s PATH = ${postgresql:location}/bin:${cmake:location}/bin:${pkgconfig:location}/bin:%(PATH)s
CPPFLAGS= -I${postgresql:location}/include CPPFLAGS= -I${postgresql:location}/include -I${icu:location}/include -I${kerberos:location}/include
LDFLAGS = -L${postgresql:location}/lib -Wl,-rpath=${postgresql:location}/lib LDFLAGS = -L${postgresql:location}/lib -Wl,-rpath=${postgresql:location}/lib -L${icu:location}/lib -Wl,-rpath=${icu:location}/lib -L${kerberos:location}/lib -Wl,-rpath=${kerberos:location}/lib
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment