Репозиторий Sisyphus
Последнее обновление: 1 октября 2023 | Пакетов: 18631 | Посещений: 37568083
en ru br
Репозитории ALT

Группа :: Система/X11
Пакет: wayland

 Главная   Изменения   Спек   Патчи   Sources   Загрузить   Gear   Bugs and FR  Repocop 

Патч: wayland-1.0.6-alt1.patch
Скачать


 .gear/rules                                        |   2 +
 .../tags/6ddd4ec2b898be213c71e066c395683fe43b5ac6  |   6 +
 .gear/tags/list                                    |   1 +
 doc/Makefile.am                                    |   2 +-
 wayland.spec                                       | 164 +++++++++++++++++++++
 5 files changed, 174 insertions(+), 1 deletion(-)
diff --git a/.gear/rules b/.gear/rules
new file mode 100644
index 0000000..4fcfd99
--- /dev/null
+++ b/.gear/rules
@@ -0,0 +1,2 @@
+tar: @version@:.
+diff: @version@:. .
diff --git a/.gear/tags/6ddd4ec2b898be213c71e066c395683fe43b5ac6 b/.gear/tags/6ddd4ec2b898be213c71e066c395683fe43b5ac6
new file mode 100644
index 0000000..ffd2fd4
--- /dev/null
+++ b/.gear/tags/6ddd4ec2b898be213c71e066c395683fe43b5ac6
@@ -0,0 +1,6 @@
+object 8c6fe682c29ead1f03c55656c5264812074c4efa
+type commit
+tag 1.0.6
+tagger Kristian Hц╦gsberg <krh@bitplanet.net> 1363964082 -0400
+
+1.0.6
diff --git a/.gear/tags/list b/.gear/tags/list
new file mode 100644
index 0000000..4a43e83
--- /dev/null
+++ b/.gear/tags/list
@@ -0,0 +1 @@
+6ddd4ec2b898be213c71e066c395683fe43b5ac6 1.0.6
diff --git a/doc/Makefile.am b/doc/Makefile.am
index b437de8..b2734d5 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1 +1 @@
-SUBDIRS = doxygen Wayland man
+SUBDIRS = doxygen Wayland
diff --git a/wayland.spec b/wayland.spec
new file mode 100644
index 0000000..3acf4af
--- /dev/null
+++ b/wayland.spec
@@ -0,0 +1,164 @@
+# enable compilation of wayland-scannner
+%def_enable scanner
+
+Name: wayland
+Version: 1.0.6
+Release: alt1
+
+Summary: Wayland protocol libraries
+Group: System/X11
+License: GPLv2+
+Url: http://%name.freedesktop.org/
+
+# git://anongit.freedesktop.org/wayland/wayland
+Source: wayland-%version.tar
+Patch: %name-%version-%release.patch
+
+BuildRequires: doxygen libexpat-devel libffi-devel xsltproc docbook-style-xsl
+# for docs
+# BuildRequires: /proc publican perl-Makefile-Parser bc
+
+%description
+Wayland is a project to define a protocol for a compositor to talk to
+its clients as well as a library implementation of the protocol. The
+compositor can be a standalone display server running on Linux kernel
+modesetting and evdev input devices, an X applications, or a wayland
+client itself. The clients can be traditional applications, X servers
+(rootless or fullscreen) or other display servers.
+
+%package devel
+Group: Development/C
+Summary: Common headers for Wayland
+License: MIT
+
+%description devel
+Common headers for Wayland
+
+%package -n lib%name-client
+Summary: Wayland client library
+Group: System/Libraries
+License: MIT
+
+%description -n lib%name-client
+Wayland client shared library.
+
+%package -n lib%name-client-devel
+Summary: Development files for Wayland client library
+Group: Development/C
+License: MIT
+Requires: lib%name-client = %version-%release
+Requires: %name-devel = %version-%release
+
+%description -n lib%name-client-devel
+This package provides development files for Wayland client library.
+
+%package -n lib%name-server
+Summary: Wayland server library
+Group: System/Libraries
+License: MIT
+
+%description -n lib%name-server
+Wayland server shared library.
+
+%package -n lib%name-server-devel
+Summary: Development files for Wayland server library
+Group: Development/C
+License: MIT
+Requires: lib%name-server = %version-%release
+Requires: %name-devel = %version-%release
+
+%description -n lib%name-server-devel
+This package provides development files for Wayland server library.
+
+%package -n lib%name-cursor
+Summary: Wayland cursor helper library
+Group: System/Libraries
+License: MIT
+Requires: lib%name-client = %version-%release
+
+%description -n lib%name-cursor
+Wayland cursor helper shared library.
+
+%package -n lib%name-cursor-devel
+Summary: Wayland cursor helper library
+Group: System/Libraries
+License: MIT
+Requires: lib%name-cursor = %version-%release
+Requires: lib%name-client-devel = %version-%release
+
+%description -n lib%name-cursor-devel
+This package provides development files for Wayland cursor helper library.
+
+%prep
+%setup
+%patch -p1
+
+%build
+%autoreconf
+%configure --disable-static \
+	%{subst_enable scanner}
+
+%make_build
+
+%install
+%makeinstall_std
+#mkdir -p %buildroot%_docdir/%name-devel/
+#mv %buildroot%_docdir/%name/* %buildroot%_docdir/%name-devel/
+
+
+%files devel
+#%doc %_docdir/%name-devel
+%_bindir/%name-scanner
+%_includedir/%name-util.h
+%_includedir/%name-version.h
+%_datadir/aclocal/%name-scanner.*
+
+%files -n lib%name-client
+%_libdir/lib%name-client.so.*
+
+%files -n lib%name-client-devel
+%_includedir/%name-client*.h
+%_includedir/wayland-egl.h
+%_libdir/lib%name-client.so
+%_pkgconfigdir/%name-client.pc
+
+%files -n lib%name-server
+%_libdir/lib%name-server.so.*
+
+%files -n lib%name-server-devel
+%_includedir/%name-server*.h
+%_libdir/lib%name-server.so
+%_pkgconfigdir/%name-server.pc
+
+%files -n lib%name-cursor
+%_libdir/lib%name-cursor.so.*
+
+%files -n lib%name-cursor-devel
+%_includedir/%name-cursor.h
+%_libdir/lib%name-cursor.so
+%_pkgconfigdir/%name-cursor.pc
+
+%changelog
+* Wed Apr 10 2013 Yuri N. Sedunov <aris@altlinux.org> 1.0.6-alt1
+- 1.0.6
+
+* Wed Mar 06 2013 Yuri N. Sedunov <aris@altlinux.org> 1.0.5-alt1
+- 1.0.5
+
+* Thu Jan 10 2013 Yuri N. Sedunov <aris@altlinux.org> 1.0.3-alt1
+- 1.0.3
+- fixed interpackage dependencies
+- TODO: build documentation using publican
+
+* Tue Oct 23 2012 Valery Inozemtsev <shrek@altlinux.ru> 1.0.0-alt1
+- 1.0.0
+
+* Mon Sep 10 2012 Valery Inozemtsev <shrek@altlinux.ru> 0.95.0-alt1
+- 0.95.0
+
+* Sun Feb 12 2012 Valery Inozemtsev <shrek@altlinux.ru> 0.85.0-alt1
+- first release
+
+* Wed Jan 25 2012 Yuri N. Sedunov <aris@altlinux.org> 0.1-alt1
+- first build for Sisyphus
+
 
дизайн и разработка: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
текущий майнтейнер: Michael Shigorin