From a403ebbf3576e6061ecdb4aeb005fa855577dd20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ertu=C4=9Frul=20Erata?= Date: Sun, 28 Jun 2015 09:06:44 +0300 Subject: [PATCH] works for mesa in blfs mesa not need llvm? --- ...lvm-3.6.0-use-ocamlfind-for-ocamldoc.patch | 30 ++++++ .../build/llvm/files/llvm-Config-config.h | 9 ++ .../llvm/files/llvm-Config-llvm-config.h | 9 ++ programming/build/llvm/pspec.xml | 3 + programming/misc/libedit/actions.py | 24 +++++ programming/misc/libedit/pspec.xml | 76 +++++++++++++++ programming/misc/libedit/translations.xml | 13 +++ x11/library/libXScrnSaver/actions.py | 21 ++++ x11/library/libXScrnSaver/pspec.xml | 96 +++++++++++++++++++ x11/library/libXScrnSaver/translations.xml | 19 ++++ x11/library/libepoxy/pspec.xml | 14 +-- 11 files changed, 307 insertions(+), 7 deletions(-) create mode 100644 programming/build/llvm/files/llvm-3.6.0-use-ocamlfind-for-ocamldoc.patch create mode 100644 programming/build/llvm/files/llvm-Config-config.h create mode 100644 programming/build/llvm/files/llvm-Config-llvm-config.h create mode 100644 programming/misc/libedit/actions.py create mode 100644 programming/misc/libedit/pspec.xml create mode 100644 programming/misc/libedit/translations.xml create mode 100644 x11/library/libXScrnSaver/actions.py create mode 100644 x11/library/libXScrnSaver/pspec.xml create mode 100644 x11/library/libXScrnSaver/translations.xml diff --git a/programming/build/llvm/files/llvm-3.6.0-use-ocamlfind-for-ocamldoc.patch b/programming/build/llvm/files/llvm-3.6.0-use-ocamlfind-for-ocamldoc.patch new file mode 100644 index 0000000000..8a838c3a7c --- /dev/null +++ b/programming/build/llvm/files/llvm-3.6.0-use-ocamlfind-for-ocamldoc.patch @@ -0,0 +1,30 @@ +diff -upr llvm-3.6.0.src.orig/docs/Makefile llvm-3.6.0.src/docs/Makefile +--- llvm-3.6.0.src.orig/docs/Makefile 2014-10-29 00:45:25.000000000 +0200 ++++ llvm-3.6.0.src/docs/Makefile 2015-02-28 10:12:35.647351241 +0200 +@@ -41,7 +41,7 @@ install_targets := install-html + ifeq ($(ENABLE_DOXYGEN),1) + install_targets += install-doxygen + endif +-ifdef OCAMLDOC ++ifdef OCAMLFIND + ifneq (,$(filter ocaml,$(BINDINGS_TO_BUILD))) + install_targets += install-ocamldoc + endif +@@ -49,7 +49,7 @@ endif + install-local:: $(install_targets) + + generated_targets := doxygen +-ifdef OCAMLDOC ++ifdef OCAMLFIND + generated_targets += ocamldoc + endif + +@@ -120,7 +120,7 @@ regen-ocamldoc: + $(Verb) $(MAKE) -C $(LEVEL)/bindings/ocaml ocamldoc + $(Verb) $(MKDIR) $(PROJ_OBJ_DIR)/ocamldoc/html + $(Verb) \ +- $(OCAMLDOC) -d $(PROJ_OBJ_DIR)/ocamldoc/html -sort -colorize-code -html \ ++ $(OCAMLFIND) ocamldoc -d $(PROJ_OBJ_DIR)/ocamldoc/html -sort -colorize-code -html \ + `$(FIND) $(LEVEL)/bindings/ocaml -name "*.odoc" \ + -path "*/$(BuildMode)/*.odoc" -exec echo -load '{}' ';'` + diff --git a/programming/build/llvm/files/llvm-Config-config.h b/programming/build/llvm/files/llvm-Config-config.h new file mode 100644 index 0000000000..c369b4551f --- /dev/null +++ b/programming/build/llvm/files/llvm-Config-config.h @@ -0,0 +1,9 @@ +#include + +#if __WORDSIZE == 32 +#include "config-32.h" +#elif __WORDSIZE == 64 +#include "config-64.h" +#else +#error "Unknown word size" +#endif diff --git a/programming/build/llvm/files/llvm-Config-llvm-config.h b/programming/build/llvm/files/llvm-Config-llvm-config.h new file mode 100644 index 0000000000..2fa08c9be6 --- /dev/null +++ b/programming/build/llvm/files/llvm-Config-llvm-config.h @@ -0,0 +1,9 @@ +#include + +#if __WORDSIZE == 32 +#include "llvm-config-32.h" +#elif __WORDSIZE == 64 +#include "llvm-config-64.h" +#else +#error "Unknown word size" +#endif diff --git a/programming/build/llvm/pspec.xml b/programming/build/llvm/pspec.xml index dc87e8a790..8934395572 100644 --- a/programming/build/llvm/pspec.xml +++ b/programming/build/llvm/pspec.xml @@ -17,6 +17,9 @@ http://llvm.org/releases/3.5.0/compiler-rt-3.5.0.src.tar.xz + zlib-devel + libxml2-devel + ncurses-devel ocaml libffi-devel libedit-devel diff --git a/programming/misc/libedit/actions.py b/programming/misc/libedit/actions.py new file mode 100644 index 0000000000..deb466e3f9 --- /dev/null +++ b/programming/misc/libedit/actions.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + autotools.configure("--disable-static \ + --enable-widec \ + --disable-dependency-tracking \ + --enable-fast-install") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("ChangeLog", "COPYING", "THANKS") + pisitools.remove("/usr/lib/libedit.la") diff --git a/programming/misc/libedit/pspec.xml b/programming/misc/libedit/pspec.xml new file mode 100644 index 0000000000..55dee5ca3b --- /dev/null +++ b/programming/misc/libedit/pspec.xml @@ -0,0 +1,76 @@ + + + + + libedit + http://www.thrysoee.dk/editline + + PisiLinux Community + admins@pisilinux.org + + BSD + library + An autotool and libtoolized port of the NetBSD Editline library + libedit is a command line editing and history library. It is designed to be used by interactive programs that allow the user to type commands at a terminal prompt. + http://thrysoee.dk/editline/libedit-20150325-3.1.tar.gz + + ncurses-devel + + + + + libedit + + ncurses + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + libedit-devel + Development files for libedit + + libedit + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + + 2015-06-25 + 3.1_20150325 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-19 + 3.1_20140213 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-27 + 3.1_20130712 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-17 + 3.0_20120601 + First release + Marcin Bojara + marcin@pisilinux.org + + + diff --git a/programming/misc/libedit/translations.xml b/programming/misc/libedit/translations.xml new file mode 100644 index 0000000000..564f272b2b --- /dev/null +++ b/programming/misc/libedit/translations.xml @@ -0,0 +1,13 @@ + + + + libedit + NetBSD Editline kitaplığının Linux portu + libedit, geçmiş bilgisini ve komut satırı düzenleme işlerini kolaylaştıran bir kitaplıktır. + + + + libedit-devel + libedit için geliştirme dosyaları + + diff --git a/x11/library/libXScrnSaver/actions.py b/x11/library/libXScrnSaver/actions.py new file mode 100644 index 0000000000..c0548bd79f --- /dev/null +++ b/x11/library/libXScrnSaver/actions.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + + +def setup(): + autotools.autoreconf("-vif") + autotools.configure("--disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("ChangeLog", "COPYING", "README") diff --git a/x11/library/libXScrnSaver/pspec.xml b/x11/library/libXScrnSaver/pspec.xml new file mode 100644 index 0000000000..a28c593305 --- /dev/null +++ b/x11/library/libXScrnSaver/pspec.xml @@ -0,0 +1,96 @@ + + + + + libXScrnSaver + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + X.Org XScrnSaver library + LibXScrnSaver allows using screensavers in X clients. + mirrors://xorg/individual/lib/libXScrnSaver-1.2.2.tar.bz2 + + libXext-devel + + + + + libXScrnSaver + + libXext + + + /usr/lib + /usr/share/doc + + + + + libXScrnSaver-devel + Development files for libXScrnSaver + + libXScrnSaver + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + + libXScrnSaver-32bit + emul32 + 32-bit shared libraries for libXScrnSaver + emul32 + + libX11-32bit + libXext-32bit + + + libXScrnSaver + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + + 2014-05-16 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.2.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.2.2 + First release + Erdem Artan + admins@pisilinux.org + + + diff --git a/x11/library/libXScrnSaver/translations.xml b/x11/library/libXScrnSaver/translations.xml new file mode 100644 index 0000000000..10e8cc92d6 --- /dev/null +++ b/x11/library/libXScrnSaver/translations.xml @@ -0,0 +1,19 @@ + + + + libXScrnSaver + X.Org XScrnSaver kitaplığı + Librairie XScrnSaver de X.Org + X.Org XScrnSaver Bibliothek + + + + libXScrnSaver-devel + libXScrnSaver için geliştirme dosyaları + + + + libXScrnSaver-32bit + libXScrnSaver için 32-bit paylaşımlı kitaplıklar + + diff --git a/x11/library/libepoxy/pspec.xml b/x11/library/libepoxy/pspec.xml index 629edf9ef0..4b5d0ae496 100755 --- a/x11/library/libepoxy/pspec.xml +++ b/x11/library/libepoxy/pspec.xml @@ -14,8 +14,8 @@ Epoxy is a library for handling OpenGL function pointer management for you. https://github.com/anholt/libepoxy/archive/v1.2.tar.gz - python3 - xorg-util + python3 + xorg-util mesa-devel @@ -26,13 +26,13 @@ mesa - /etc/xdg - /usr/bin - /usr/lib + /etc/xdg + /usr/bin + /usr/lib /usr/share - /usr/share/locale + /usr/share/locale /usr/share/doc - /usr/share/man + /usr/share/man