Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
isaak yansane-sisk
slapos
Commits
fe7a0738
Commit
fe7a0738
authored
Aug 29, 2011
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libreoffice depends on libICE and libSM too.
parent
90c5fe0f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
33 additions
and
4 deletions
+33
-4
component/xorg/buildout.cfg
component/xorg/buildout.cfg
+27
-0
software/cloudooo/instance.cfg
software/cloudooo/instance.cfg
+1
-1
software/cloudooo/software.cfg
software/cloudooo/software.cfg
+1
-1
software/erp5/instance.cfg
software/erp5/instance.cfg
+1
-1
software/erp5/software.cfg
software/erp5/software.cfg
+1
-1
stack/cloudooo.cfg
stack/cloudooo.cfg
+1
-0
stack/erp5.cfg
stack/erp5.cfg
+1
-0
No files found.
component/xorg/buildout.cfg
View file @
fe7a0738
...
...
@@ -2,6 +2,7 @@
[buildout]
extends =
../freetype/buildout.cfg
../libuuid/buildout.cfg
../libxml2/buildout.cfg
../libxslt/buildout.cfg
../pkgconfig/buildout.cfg
...
...
@@ -12,6 +13,7 @@ parts =
libXext
libXau
libXinerama
libSM
[xorg-aclocal]
ACLOCAL=${xorg-util-macros:location}/share/aclocal
...
...
@@ -158,3 +160,28 @@ environment =
PATH=${pkgconfig:location}/bin:%(PATH)s
configure-options =
--disable-static
[libICE]
recipe = hexagonit.recipe.cmmi
url = http://www.x.org/releases/X11R7.6/src/lib/libICE-1.0.7.tar.bz2
md5sum = bb72a732b15e9dc25c3036559387eed5
configure-options =
--disable-static
--without-xmlto
--without-fop
environment =
PKG_CONFIG_PATH=${xproto:location}/lib/pkgconfig:${xtrans:location}/share/pkgconfig
PATH=${pkgconfig:location}/bin:%(PATH)s
[libSM]
recipe = hexagonit.recipe.cmmi
url = http://www.x.org/releases/X11R7.6/src/lib/libSM-1.2.0.tar.bz2
md5sum = e78c447bf1790552b644eca81b542742
configure-options =
--disable-static
--without-xmlto
--without-fop
environment =
PKG_CONFIG_PATH=${libICE:location}/lib/pkgconfig:${libuuid:location}/lib/pkgconfig:${xproto:location}/lib/pkgconfig:${xtrans:location}/share/pkgconfig
PATH=${pkgconfig:location}/bin:%(PATH)s
LIBUUID_CFLAGS=-I${libuuid:location}/include
software/cloudooo/instance.cfg
View file @
fe7a0738
...
...
@@ -23,4 +23,4 @@ link_binary_list =
${pdftk:location}/bin/pdftk
environment =
LD_LIBRARY_PATH = ${file:location}/lib:${
zlib:location}/lib:${fontconfig:location}/lib:${freetype:location}/lib:${libXext:location}/lib:${libXau:location}/lib:${libX11:location}/lib:${libXdmcp:location}/lib:${libXinerama:location}/lib:${libxc
b:location}/lib
LD_LIBRARY_PATH = ${file:location}/lib:${
fontconfig:location}/lib:${freetype:location}/lib:${libICE:location}/lib:${libSM:location}/lib:${libX11:location}/lib:${libXau:location}/lib:${libXdmcp:location}/lib:${libXext:location}/lib:${libXinerama:location}/lib:${libxcb:location}/lib:${zli
b:location}/lib
software/cloudooo/software.cfg
View file @
fe7a0738
...
...
@@ -33,6 +33,6 @@ module = cloudooo
# Default template for erp5 instance.
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance.cfg
md5sum =
b626cb087d45d05983ee52d9f69a8981
md5sum =
2a38a928deb5870e02a8271b34341f5b
output = ${buildout:directory}/template.cfg
mode = 0644
software/erp5/instance.cfg
View file @
fe7a0738
...
...
@@ -74,7 +74,7 @@ link_binary_list =
# availability in software's eggs
products = ${products:list}
environment =
LD_LIBRARY_PATH = ${file:location}/lib:${
zlib:location}/lib:${fontconfig:location}/lib:${freetype:location}/lib:${libXext:location}/lib:${libXau:location}/lib:${libX11:location}/lib:${libXdmcp:location}/lib:${libXinerama:location}/lib:${libxc
b:location}/lib
LD_LIBRARY_PATH = ${file:location}/lib:${
fontconfig:location}/lib:${freetype:location}/lib:${libICE:location}/lib:${libSM:location}/lib:${libX11:location}/lib:${libXau:location}/lib:${libXdmcp:location}/lib:${libXext:location}/lib:${libXinerama:location}/lib:${libxcb:location}/lib:${zli
b:location}/lib
bt5_repository_list = ${bt5-repository:list}
...
...
software/erp5/software.cfg
View file @
fe7a0738
...
...
@@ -28,7 +28,7 @@ configurator_bt5_list = erp5_core_proxy_field_legacy erp5_full_text_myisam_catal
# Default template for erp5 instance.
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance.cfg
md5sum =
947a4c3a46996587307e87816ee95aee
md5sum =
33aec5ae3f645689e746c8318557b569
output = ${buildout:directory}/template.cfg
mode = 0644
...
...
stack/cloudooo.cfg
View file @
fe7a0738
...
...
@@ -31,6 +31,7 @@ parts =
libXext
libXau
libXinerama
libSM
# fonts
liberation-fonts
...
...
stack/erp5.cfg
View file @
fe7a0738
...
...
@@ -113,6 +113,7 @@ parts =
libXext
libXau
libXinerama
libSM
# fonts
liberation-fonts
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment