Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
config BR2_PACKAGE_YAD
bool "yad"
depends on BR2_PACKAGE_XORG7
depends on BR2_PACKAGE_LIBGTK2 || BR2_PACKAGE_LIBGTK3_X11
help
YAD (yet another dialog) is a tool for create graphical dialogs
from shell scripts.
http://sourceforge.net/projects/yad-dialog/
comment "yad needs libgtk2 or libgtk3 w/ X11 backend"
depends on BR2_PACKAGE_XORG7
depends on !BR2_PACKAGE_LIBGTK2 && !BR2_PACKAGE_LIBGTK3_X11

View File

@@ -0,0 +1,3 @@
# From http://sourceforge.net/projects/yad-dialog/files/
md5 4e24888712be1e95fd3cea815f19c6cb yad-0.33.1.tar.xz
sha1 b39977128678ca67bf4649929510f729c9cf1e67 yad-0.33.1.tar.xz

View File

@@ -0,0 +1,23 @@
################################################################################
#
# yad
#
################################################################################
YAD_VERSION = 0.33.1
YAD_SOURCE = yad-$(YAD_VERSION).tar.xz
YAD_SITE = http://sourceforge.net/projects/yad-dialog/files
YAD_LICENSE = GPLv3
YAD_LICENSE_FILES = COPYING
YAD_DEPENDENCIES = host-intltool host-pkgconf
YAD_CONF_OPTS = --enable-html=no
ifeq ($(BR2_PACKAGE_LIBGTK3_X11),y)
YAD_DEPENDENCIES += libgtk3
YAD_CONF_OPTS += --with-gtk=gtk3
else
YAD_DEPENDENCIES += libgtk2
YAD_CONF_OPTS += --with-gtk=gtk2
endif
$(eval $(autotools-package))