diff --git a/x11/library/libxcb/actions.py b/x11/library/libxcb/actions.py index f91408bff6..7831f8cdc9 100644 --- a/x11/library/libxcb/actions.py +++ b/x11/library/libxcb/actions.py @@ -11,13 +11,18 @@ def setup(): pisitools.flags.add("-DNDEBUG") autotools.autoreconf("-vfi") - autotools.configure("--disable-static \ + options = " --disable-static \ --enable-xevie \ --enable-xprint \ --enable-xinput \ --enable-xkb \ --without-launchd \ - --without-doxygen") + --without-doxygen" + + if get.buildTYPE() == "emul32": + options += " --libdir=/usr/lib32" + + autotools.configure(options) pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") @@ -26,5 +31,8 @@ def build(): def install(): autotools.rawInstall("-j1 DESTDIR=%s" % get.installDIR()) + + if get.buildTYPE() == "emul32": + return pisitools.dodoc("COPYING", "NEWS", "README") diff --git a/x11/library/libxcb/pspec.xml b/x11/library/libxcb/pspec.xml index 5eced7bfaa..7958314863 100644 --- a/x11/library/libxcb/pspec.xml +++ b/x11/library/libxcb/pspec.xml @@ -80,6 +80,13 @@ + + 2019-02-20 + 1.13.1 + Rebuild. + PisiLinux Community + admin@pisilinux.org + 2019-01-16 1.13.1 diff --git a/x11/library/xcb-util-cursor/actions.py b/x11/library/xcb-util-cursor/actions.py index d10620b979..c399782ad4 100644 --- a/x11/library/xcb-util-cursor/actions.py +++ b/x11/library/xcb-util-cursor/actions.py @@ -10,12 +10,20 @@ from pisi.actionsapi import get def setup(): autotools.autoreconf("-vif") - autotools.configure("--disable-static \ - --with-pic") + options = "--disable-static \ + --with-pic" + + if get.buildTYPE() == "emul32": + options += " --libdir=/usr/lib32" + + autotools.configure(options) + def build(): autotools.make() def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + if get.buildTYPE() == "emul32": + return pisitools.dodoc("README") diff --git a/x11/library/xcb-util-cursor/pspec.xml b/x11/library/xcb-util-cursor/pspec.xml index 278283ec4c..9931df4e9c 100644 --- a/x11/library/xcb-util-cursor/pspec.xml +++ b/x11/library/xcb-util-cursor/pspec.xml @@ -69,6 +69,13 @@ + + 2019-02-20 + 0.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2018-11-05 0.1.3 diff --git a/x11/library/xcb-util-image/actions.py b/x11/library/xcb-util-image/actions.py index d10620b979..c399782ad4 100644 --- a/x11/library/xcb-util-image/actions.py +++ b/x11/library/xcb-util-image/actions.py @@ -10,12 +10,20 @@ from pisi.actionsapi import get def setup(): autotools.autoreconf("-vif") - autotools.configure("--disable-static \ - --with-pic") + options = "--disable-static \ + --with-pic" + + if get.buildTYPE() == "emul32": + options += " --libdir=/usr/lib32" + + autotools.configure(options) + def build(): autotools.make() def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + if get.buildTYPE() == "emul32": + return pisitools.dodoc("README") diff --git a/x11/library/xcb-util-image/pspec.xml b/x11/library/xcb-util-image/pspec.xml index f8332fd278..ec519a66a1 100644 --- a/x11/library/xcb-util-image/pspec.xml +++ b/x11/library/xcb-util-image/pspec.xml @@ -65,6 +65,13 @@ + + 2019-02-20 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2018-11-05 0.4.0 diff --git a/x11/library/xcb-util-keysyms/actions.py b/x11/library/xcb-util-keysyms/actions.py index f481b862c8..c399782ad4 100644 --- a/x11/library/xcb-util-keysyms/actions.py +++ b/x11/library/xcb-util-keysyms/actions.py @@ -10,13 +10,20 @@ from pisi.actionsapi import get def setup(): autotools.autoreconf("-vif") - autotools.configure("--disable-static \ - --with-pic") + options = "--disable-static \ + --with-pic" + + if get.buildTYPE() == "emul32": + options += " --libdir=/usr/lib32" + + autotools.configure(options) def build(): autotools.make() def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + if get.buildTYPE() == "emul32": + return pisitools.dodoc("README") diff --git a/x11/library/xcb-util-keysyms/pspec.xml b/x11/library/xcb-util-keysyms/pspec.xml index fe12c15e45..e998ea4556 100644 --- a/x11/library/xcb-util-keysyms/pspec.xml +++ b/x11/library/xcb-util-keysyms/pspec.xml @@ -64,6 +64,13 @@ + + 2019-02-20 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2018-11-05 0.4.0 diff --git a/x11/library/xcb-util-renderutil/actions.py b/x11/library/xcb-util-renderutil/actions.py index 1555a985e7..4684125a8f 100644 --- a/x11/library/xcb-util-renderutil/actions.py +++ b/x11/library/xcb-util-renderutil/actions.py @@ -9,13 +9,21 @@ from pisi.actionsapi import autotools from pisi.actionsapi import pisitools def setup(): - autotools.configure("--disable-static \ - --with-pic") + autotools.autoreconf("-vif") + options = "--disable-static \ + --with-pic" + + if get.buildTYPE() == "emul32": + options += " --libdir=/usr/lib32" + + autotools.configure(options) def build(): autotools.make() def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + if get.buildTYPE() == "emul32": + return pisitools.dodoc("README") diff --git a/x11/library/xcb-util-renderutil/pspec.xml b/x11/library/xcb-util-renderutil/pspec.xml index 90abf57cf0..1fca12a4b7 100644 --- a/x11/library/xcb-util-renderutil/pspec.xml +++ b/x11/library/xcb-util-renderutil/pspec.xml @@ -60,6 +60,13 @@ + + 2019-02-20 + 0.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2018-11-05 0.3.9 diff --git a/x11/library/xcb-util-wm/actions.py b/x11/library/xcb-util-wm/actions.py index f481b862c8..c399782ad4 100644 --- a/x11/library/xcb-util-wm/actions.py +++ b/x11/library/xcb-util-wm/actions.py @@ -10,13 +10,20 @@ from pisi.actionsapi import get def setup(): autotools.autoreconf("-vif") - autotools.configure("--disable-static \ - --with-pic") + options = "--disable-static \ + --with-pic" + + if get.buildTYPE() == "emul32": + options += " --libdir=/usr/lib32" + + autotools.configure(options) def build(): autotools.make() def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + if get.buildTYPE() == "emul32": + return pisitools.dodoc("README") diff --git a/x11/library/xcb-util-wm/pspec.xml b/x11/library/xcb-util-wm/pspec.xml index 8c69e65dce..a7e21223ba 100644 --- a/x11/library/xcb-util-wm/pspec.xml +++ b/x11/library/xcb-util-wm/pspec.xml @@ -63,6 +63,13 @@ + + 2019-02-20 + 0.4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2018-11-05 0.4.1 diff --git a/x11/library/xcb-util-xrm/pspec.xml b/x11/library/xcb-util-xrm/pspec.xml index 7c7e0cd95c..aff8bc4198 100644 --- a/x11/library/xcb-util-xrm/pspec.xml +++ b/x11/library/xcb-util-xrm/pspec.xml @@ -54,6 +54,13 @@ + + 2019-02-20 + 1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2018-11-05 1.3 diff --git a/x11/library/xcb-util/actions.py b/x11/library/xcb-util/actions.py index 25adb86a95..43f0b126aa 100644 --- a/x11/library/xcb-util/actions.py +++ b/x11/library/xcb-util/actions.py @@ -11,13 +11,20 @@ from pisi.actionsapi import get def setup(): autotools.autoreconf("-vif") - autotools.configure("--disable-static \ - --with-pic") + options = "--disable-static \ + --with-pic" + + if get.buildTYPE() == "emul32": + options += " --libdir=/usr/lib32" + + autotools.configure(options) def build(): autotools.make() def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + if get.buildTYPE() == "emul32": + return pisitools.dodoc("README") diff --git a/x11/library/xcb-util/pspec.xml b/x11/library/xcb-util/pspec.xml index 6c5529a21d..e3fa54378e 100644 --- a/x11/library/xcb-util/pspec.xml +++ b/x11/library/xcb-util/pspec.xml @@ -64,6 +64,13 @@ + + 2019-02-20 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2018-11-05 0.4.0