remove unstable packages maintained by me.
This commit is contained in:
parent
e041f4fc03
commit
5f32465f39
|
@ -1,19 +0,0 @@
|
||||||
# Template file for 'gyp-svn'
|
|
||||||
pkgname=gyp-svn
|
|
||||||
_svnrev=1973
|
|
||||||
version=r$_svnrev
|
|
||||||
revision=2
|
|
||||||
build_style=gnu-configure
|
|
||||||
build_style="python-module"
|
|
||||||
python_versions="2.7"
|
|
||||||
hostmakedepends="python subversion python-setuptools"
|
|
||||||
depends="python"
|
|
||||||
short_desc="can generate your projects"
|
|
||||||
maintainer="Enno Boland <eb@s01.de>"
|
|
||||||
homepage="https://code.google.com/p/gyp/"
|
|
||||||
license="BSD"
|
|
||||||
noarch=yes
|
|
||||||
|
|
||||||
do_fetch() {
|
|
||||||
svn co http://gyp.googlecode.com/svn/trunk $pkgname-$version
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
swc-git
|
|
|
@ -1,11 +0,0 @@
|
||||||
--- example/wm.c.orig
|
|
||||||
+++ example/wm.c
|
|
||||||
@@ -43,7 +43,7 @@ struct window
|
|
||||||
struct wl_list link;
|
|
||||||
};
|
|
||||||
|
|
||||||
-static const char * terminal_command[] = { "st-wl", NULL };
|
|
||||||
+static const char * terminal_command[] = { "weston-terminal", NULL };
|
|
||||||
static const char * dmenu_command[] = { "dmenu_run-wl", NULL };
|
|
||||||
static const uint32_t border_width = 1;
|
|
||||||
static const uint32_t border_color_active = 0xff333388;
|
|
|
@ -1,38 +0,0 @@
|
||||||
From 23f2de229ad432308639d5306db902d4f512a988 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Konstantin Bytensky <kostya3@gmail.com>
|
|
||||||
Date: Mon, 9 Feb 2015 13:50:24 +0200
|
|
||||||
Subject: [PATCH] Fix for libinput 0.9
|
|
||||||
|
|
||||||
---
|
|
||||||
libswc/seat.c | 16 ++++++++++++----
|
|
||||||
1 file changed, 12 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/libswc/seat.c b/libswc/seat.c
|
|
||||||
index d9c70f3..14d46b7 100644
|
|
||||||
--- libswc/seat.c
|
|
||||||
+++ libswc/seat.c
|
|
||||||
@@ -320,12 +320,20 @@ static int handle_libinput_data(int fd, uint32_t mask, void * data)
|
|
||||||
{
|
|
||||||
struct libinput_event_pointer * event;
|
|
||||||
wl_fixed_t amount;
|
|
||||||
+ enum libinput_pointer_axis axis;
|
|
||||||
|
|
||||||
event = libinput_event_get_pointer_event(generic_event);
|
|
||||||
- amount = wl_fixed_from_double
|
|
||||||
- (libinput_event_pointer_get_axis_value(event));
|
|
||||||
- handle_axis(libinput_event_pointer_get_time(event),
|
|
||||||
- libinput_event_pointer_get_axis(event), amount);
|
|
||||||
+ for (axis = LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL;
|
|
||||||
+ axis <= LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL;
|
|
||||||
+ ++axis)
|
|
||||||
+ {
|
|
||||||
+ if (libinput_event_pointer_has_axis(event, axis)) {
|
|
||||||
+ amount = wl_fixed_from_double
|
|
||||||
+ (libinput_event_pointer_get_axis_value(event, axis));
|
|
||||||
+ handle_axis(libinput_event_pointer_get_time(event),
|
|
||||||
+ axis, amount);
|
|
||||||
+ }
|
|
||||||
+ }
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
default:
|
|
|
@ -1,30 +0,0 @@
|
||||||
From 521f21c3ecda9bb4bcdafab59fc5cf6dba382492 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Konstantin Bytensky <kostya3@gmail.com>
|
|
||||||
Date: Wed, 11 Feb 2015 11:51:45 +0200
|
|
||||||
Subject: [PATCH] Fix to make wl_keyboard_send_keymap call before
|
|
||||||
wl_keyboard_send_modifiers. It requires for mpv.
|
|
||||||
|
|
||||||
---
|
|
||||||
libswc/keyboard.c | 3 ++-
|
|
||||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/libswc/keyboard.c b/libswc/keyboard.c
|
|
||||||
index 28a66eb..b06844e 100644
|
|
||||||
--- libswc/keyboard.c
|
|
||||||
+++ libswc/keyboard.c
|
|
||||||
@@ -216,13 +216,14 @@ struct wl_resource * keyboard_bind(struct keyboard * keyboard,
|
|
||||||
version, id);
|
|
||||||
wl_resource_set_implementation(client_resource, &keyboard_implementation,
|
|
||||||
keyboard, &unbind);
|
|
||||||
- input_focus_add_resource(&keyboard->focus, client_resource);
|
|
||||||
|
|
||||||
/* Subtract one to remove terminating NULL character. */
|
|
||||||
wl_keyboard_send_keymap(client_resource, WL_KEYBOARD_KEYMAP_FORMAT_XKB_V1,
|
|
||||||
keyboard->xkb.keymap.fd,
|
|
||||||
keyboard->xkb.keymap.size - 1);
|
|
||||||
|
|
||||||
+ input_focus_add_resource(&keyboard->focus, client_resource);
|
|
||||||
+
|
|
||||||
if (version >= 4)
|
|
||||||
{
|
|
||||||
wl_keyboard_send_repeat_info(client_resource,
|
|
|
@ -1,51 +0,0 @@
|
||||||
# Template file for 'swc-git'
|
|
||||||
# Latest commit as of 20141130
|
|
||||||
_githash="21de9f4416426f11d1164b626aac191448f9608a"
|
|
||||||
_gitshort="${_githash:0:7}"
|
|
||||||
|
|
||||||
pkgname=swc-git
|
|
||||||
version=20150215
|
|
||||||
revision=2
|
|
||||||
homepage="https://github.com/michaelforney/swc"
|
|
||||||
distfiles="https://github.com/michaelforney/swc/archive/${_githash}.tar.gz"
|
|
||||||
short_desc="A library for making a simple Wayland compositor"
|
|
||||||
maintainer="Enno Boland <eb@s01.de>"
|
|
||||||
hostmakedepends="pkg-config wayland-devel"
|
|
||||||
makedepends="pixman-devel fontconfig-devel libdrm-devel wayland-devel
|
|
||||||
wld-git-devel xcb-util-wm-devel libxkbcommon-devel
|
|
||||||
libinput-devel libevdev-devel"
|
|
||||||
checksum="976388bf6994c086bd7e99a07310a20b8cb3734ded0185555745dbcdb64bd56c"
|
|
||||||
license="MIT"
|
|
||||||
wrksrc=swc-${_githash}
|
|
||||||
|
|
||||||
do_build() {
|
|
||||||
sed -i '/^ENABLE_STATIC /d' config.mk
|
|
||||||
sed -i '/^CC /d' config.mk
|
|
||||||
sed -i '/^CFLAGS /d' config.mk
|
|
||||||
|
|
||||||
make CC="$BUILD_CC" CFLAGS="$BUILD_CFLAGS" \
|
|
||||||
LDFLAGS="$BUILD_LDFLAGS" cursor/convert_font
|
|
||||||
make ${makejobs} CC="$CC" CFLAGS="$CFLAGS" \
|
|
||||||
LDFLAGS="$LDFLAGS" OBJCOPY="$OBJCOPY" \
|
|
||||||
all example/wm
|
|
||||||
}
|
|
||||||
do_install() {
|
|
||||||
make PREFIX=/usr DESTDIR=$DESTDIR install
|
|
||||||
}
|
|
||||||
|
|
||||||
swc-git-devel_package() {
|
|
||||||
depends="swc-git>=${version}_${revision}"
|
|
||||||
short_desc+=" - development files"
|
|
||||||
pkg_install() {
|
|
||||||
vmove usr/include
|
|
||||||
vmove usr/lib/pkgconfig
|
|
||||||
vmove "usr/lib/*.so"
|
|
||||||
vmove "usr/lib/*.a"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
swc-wm-git_package() {
|
|
||||||
short_desc="Simple Wayland compositor"
|
|
||||||
pkg_install() {
|
|
||||||
vbin ${wrksrc}/example/wm swc-wm
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
swc-git
|
|
|
@ -1 +0,0 @@
|
||||||
wld-git
|
|
|
@ -1,45 +0,0 @@
|
||||||
# Template file for 'wld-git'
|
|
||||||
# Latest commit as of 20141130
|
|
||||||
_githash="74f0deabb2a8a0f2e9c2eaebb4e36945716d8ab9"
|
|
||||||
_gitshort="${_githash:0:7}"
|
|
||||||
|
|
||||||
pkgname=wld-git
|
|
||||||
version=20150215
|
|
||||||
revision=2
|
|
||||||
homepage="https://github.com/michaelforney/wld"
|
|
||||||
distfiles="https://github.com/michaelforney/wld/archive/${_githash}.tar.gz"
|
|
||||||
short_desc="Primitive drawing library targeted at Wayland"
|
|
||||||
maintainer="Enno Boland <eb@s01.de>"
|
|
||||||
hostmakedepends="pkg-config wayland-devel"
|
|
||||||
makedepends="pixman-devel fontconfig-devel libdrm-devel wayland-devel"
|
|
||||||
license="MIT"
|
|
||||||
checksum=da4f2c862958346ac54a83cf0f1cb4b9734bafbbe0844d7e15447bfcb18d97b4
|
|
||||||
wrksrc=wld-${_githash}
|
|
||||||
|
|
||||||
case "$XBPS_TARGET_MACHINE" in
|
|
||||||
arm*) _drm_drivers="nouveau";;
|
|
||||||
i686*|x86_64*) _drm_drivers="intel nouveau";;
|
|
||||||
esac
|
|
||||||
|
|
||||||
do_build() {
|
|
||||||
sed -i '/^ENABLE_STATIC /d' config.mk
|
|
||||||
sed -i '/^CC /d' config.mk
|
|
||||||
sed -i '/^CFLAGS /d' config.mk
|
|
||||||
|
|
||||||
make ${makejobs} CC="$CC" CFLAGS="$CFLAGS" \
|
|
||||||
LDFLAGS="$LDFLAGS" DRM_DRIVERS="$_drm_drivers"
|
|
||||||
}
|
|
||||||
|
|
||||||
do_install() {
|
|
||||||
make PREFIX=/usr DESTDIR=$DESTDIR DRM_DRIVERS="$_drm_drivers" install
|
|
||||||
}
|
|
||||||
|
|
||||||
wld-git-devel_package() {
|
|
||||||
depends="wld-git>=${version}_${revision}"
|
|
||||||
short_desc+=" - development files"
|
|
||||||
pkg_install() {
|
|
||||||
vmove usr/include
|
|
||||||
vmove usr/lib/pkgconfig
|
|
||||||
vmove "usr/lib/*.so"
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue