소스 검색

divine: new package

DiVine is the DirectFB virtual input extension.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Sven Neumann 16 년 전
부모
커밋
f1a0066b3d
4개의 변경된 파일24개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      CHANGES
  2. 1 0
      package/Config.in
  3. 8 0
      package/divine/Config.in
  4. 14 0
      package/divine/divine.mk

+ 1 - 1
CHANGES

@@ -1,6 +1,6 @@
 2009.11, Not yet released:
 
-	New packages: libarchive
+	New packages: divine, libarchive
 
 	Issues resolved (http://bugs.uclibc.org):
 

+ 1 - 0
package/Config.in

@@ -297,6 +297,7 @@ source "package/dialog/Config.in"
 comment "graphic libraries"
 source "package/directfb/Config.in"
 source "package/directfb-examples/Config.in"
+source "package/divine/Config.in"
 source "package/fbdump/Config.in"
 source "package/imagemagick/Config.in"
 source "package/jpeg/Config.in"

+ 8 - 0
package/divine/Config.in

@@ -0,0 +1,8 @@
+config BR2_PACKAGE_DIVINE
+       bool "directfb virtual input extension"
+       depends on BR2_PACKAGE_DIRECTFB
+       help
+         DiVine provides a DirectFB input driver that reads input
+         events from a pipe and dispatches them via a virtual input
+         device. It also installs the tool 'spooky' that allows to
+         send input events to DirectFB applications.

+ 14 - 0
package/divine/divine.mk

@@ -0,0 +1,14 @@
+#############################################################
+#
+# divine
+#
+#############################################################
+
+DIVINE_VERSION := 0.4.0
+DIVINE_SITE := http://www.directfb.org/downloads/Extras
+DIVINE_SOURCE = DiVine-$(DIVINE_VERSION).tar.gz
+DIVINE_INSTALL_STAGING = YES
+DIVINE_INSTALL_TARGET = YES
+DIVINE_DEPENDENCIES = directfb
+
+$(eval $(call AUTOTARGETS,package,divine))