diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-01-04 23:21:30 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-01-04 23:21:30 +0100 |
commit | 426e6ef0749fcc407512f130d463019334b8886c (patch) | |
tree | 1f8f5b4cdb4265e5428a2a77f2762706ae1247ca /package | |
parent | b0fd8bf6eb789acfabc70fb1be86dac1460fb9d4 (diff) | |
parent | 49af3d669f8345ef3ca3e1e14cdd4030cbbbb6e0 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package')
-rw-r--r-- | package/Config.in | 2 | ||||
-rw-r--r-- | package/quagga/Makefile | 1 | ||||
-rw-r--r-- | package/xf86-input-keyboard/Makefile | 32 | ||||
-rw-r--r-- | package/xf86-input-mouse/Makefile | 31 |
4 files changed, 66 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index 781b65389..80e1a84bb 100644 --- a/package/Config.in +++ b/package/Config.in @@ -541,6 +541,8 @@ menu "X" source "package/xorg-server/Config.in" source "package/xf86-video-cirrus/Config.in" source "package/xf86-video-geode/Config.in" +source "package/xf86-input-mouse/Config.in" +source "package/xf86-input-keyboard/Config.in" menu "X Libraries" source "package/libICE/Config.in" diff --git a/package/quagga/Makefile b/package/quagga/Makefile index aec761417..b5985255d 100644 --- a/package/quagga/Makefile +++ b/package/quagga/Makefile @@ -10,6 +10,7 @@ PKG_BUILDDEP+= readline ncurses PKG_MD5SUM:= 8975414c76a295f4855a417af0b5ddce PKG_DESCR:= A routing software package PKG_SECTION:= net +PKG_MULTI:= 1 PKG_URL:= http://www.quagga.net PKG_SITES:= http://www.quagga.net/download/ \ http://www.de.quagga.net/download/ \ diff --git a/package/xf86-input-keyboard/Makefile b/package/xf86-input-keyboard/Makefile new file mode 100644 index 000000000..062624fdc --- /dev/null +++ b/package/xf86-input-keyboard/Makefile @@ -0,0 +1,32 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= xf86-input-keyboard +PKG_VERSION:= 1.4.0 +PKG_RELEASE:= 1 +PKG_MD5SUM:= fc836be5364d80604cb11f4daacceb23 +PKG_DESCR:= X11 driver for keyboard +PKG_SECTION:= x11 +PKG_BUILDDEP+= xorg-server +PKG_DEPENDS:= xorg-server +PKG_SITES:= ${MASTER_SITE_XORG} + +PKG_TARGET_DEPENDS:= alix1c + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,XF86_INPUT_KEYBOARD,${PKG_NAME},$(PKG_VERSION)-$(PKG_RELEASE),${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIGURE_STYLE:= gnu +BUILD_STYLE:= auto +INSTALL_STYLE:= auto + +post-install: + ${INSTALL_DIR} ${IDIR_XF86_INPUT_KEYBOARD}/usr/lib/xorg/modules/input + ${CP} ${WRKINST}/usr/lib/xorg/modules/input/kbd_drv.so \ + ${IDIR_XF86_INPUT_KEYBOARD}/usr/lib/xorg/modules/input/ + +include ${TOPDIR}/mk/pkg-bottom.mk + diff --git a/package/xf86-input-mouse/Makefile b/package/xf86-input-mouse/Makefile new file mode 100644 index 000000000..093f1bec8 --- /dev/null +++ b/package/xf86-input-mouse/Makefile @@ -0,0 +1,31 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= xf86-input-mouse +PKG_VERSION:= 1.5.0 +PKG_RELEASE:= 1 +PKG_MD5SUM:= a662883fd9709c3dad7fb113ad8d2908 +PKG_DESCR:= X11 driver for mouse +PKG_SECTION:= x11 +PKG_DEPENDS:= xorg-server +PKG_BUILDDEP+= xorg-server +PKG_SITES:= ${MASTER_SITE_XORG} + +PKG_TARGET_DEPENDS:= alix1c + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,XF86_INPUT_MOUSE,${PKG_NAME},$(PKG_VERSION)-$(PKG_RELEASE),${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIGURE_STYLE:= gnu +BUILD_STYLE:= auto +INSTALL_STYLE:= auto + +post-install: + ${INSTALL_DIR} ${IDIR_XF86_INPUT_MOUSE}/usr/lib/xorg/modules/input + ${CP} ${WRKINST}/usr/lib/xorg/modules/input/mouse_drv.so \ + ${IDIR_XF86_INPUT_MOUSE}/usr/lib/xorg/modules/input/ + +include ${TOPDIR}/mk/pkg-bottom.mk |