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,14 @@
config BR2_PACKAGE_LIBSIGC
bool "libsigc++"
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
depends on BR2_INSTALL_LIBSTDCPP
help
libsigc++ implements a typesafe callback system for standard C++.
It allows you to define signals and to connect those signals to
any callback function, either global or a member function,
regardless of whether it is static or virtual.
http://libsigc.sourceforge.net/
comment "libsigc++ needs a toolchain w/ C++, gcc >= 4.7"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7

View File

@@ -0,0 +1,2 @@
# From http://ftp.gnome.org/pub/gnome/sources/libsigc++/2.6/libsigc++-2.6.2.sha256sum
sha256 fdace7134c31de792c17570f9049ca0657909b28c4c70ec4882f91a03de54437 libsigc++-2.6.2.tar.xz

View File

@@ -0,0 +1,22 @@
################################################################################
#
# libsigc
#
################################################################################
LIBSIGC_VERSION_MAJOR = 2.6
LIBSIGC_VERSION = $(LIBSIGC_VERSION_MAJOR).2
LIBSIGC_SOURCE = libsigc++-$(LIBSIGC_VERSION).tar.xz
LIBSIGC_SITE = http://ftp.gnome.org/pub/GNOME/sources/libsigc++/$(LIBSIGC_VERSION_MAJOR)
LIBSIGC_DEPENDENCIES = host-m4
LIBSIGC_INSTALL_STAGING = YES
LIBSIGC_LICENSE = LGPLv2.1+
LIBSIGC_LICENSE_FILES = COPYING
define LIBSIGC_INSTALL_TARGET_FIXUP
rm -rf $(TARGET_DIR)/usr/share/devhelp/books/libsigc++*
endef
LIBSIGC_POST_INSTALL_TARGET_HOOKS += LIBSIGC_INSTALL_TARGET_FIXUP
$(eval $(autotools-package))