code
string
repo_name
string
path
string
language
string
license
string
size
int64
# Locally calculated after checking pgp signature sha256 d94a2b5dec6d5eb6f05f114e2c7a64aeb7da71708ebe7b5f32bd6ebde1dfbc96 cgicc-3.2.16.tar.bz2
shibajee/buildroot
package/libcgicc/libcgicc.hash
hash
mit
143
################################################################################ # # libcgicc # ################################################################################ LIBCGICC_VERSION = 3.2.16 LIBCGICC_SITE = $(BR2_GNU_MIRROR)/cgicc LIBCGICC_SOURCE = cgicc-$(LIBCGICC_VERSION).tar.bz2 LIBCGICC_LICENSE = LGPLv3+ (library), GFDL1.2+ (docs) LIBCGICC_LICENSE_FILES = COPYING.LIB COPYING.DOC LIBCGICC_INSTALL_STAGING = YES LIBCGICC_AUTORECONF = YES LIBCGICC_CONFIG_SCRIPTS = cgicc-config LIBCGICC_CONF_OPTS = \ --disable-demos \ --disable-doc $(eval $(autotools-package))
shibajee/buildroot
package/libcgicc/libcgicc.mk
mk
mit
582
config BR2_PACKAGE_LIBCGROUP bool "libcgroup" depends on BR2_INSTALL_LIBSTDCPP # libcgroup uses <fts.h> which is not included by default in uClibc depends on BR2_TOOLCHAIN_USES_GLIBC help libcgroup is a library that abstracts the control group file system in Linux. http://libcg.sourceforge.net/ if BR2_PACKAGE_LIBCGROUP config BR2_PACKAGE_LIBCGROUP_TOOLS bool "install tools" help Include a set of command-line tools for managing cgroups. endif comment "libcgroup needs a glibc toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_USES_GLIBC
shibajee/buildroot
package/libcgroup/Config.in
in
mit
585
# Locally computed: sha256 e4e38bdc7ef70645ce33740ddcca051248d56b53283c0dc6d404e17706f6fb51 libcgroup-0.41.tar.bz2
shibajee/buildroot
package/libcgroup/libcgroup.hash
hash
mit
117
################################################################################ # # libcgroup # ################################################################################ LIBCGROUP_VERSION = 0.41 LIBCGROUP_SOURCE = libcgroup-$(LIBCGROUP_VERSION).tar.bz2 LIBCGROUP_SITE = http://downloads.sourceforge.net/project/libcg/libcgroup/v$(LIBCGROUP_VERSION) LIBCGROUP_LICENSE = LGPLv2.1 LIBCGROUP_LICENSE_FILES = COPYING LIBCGROUP_DEPENDENCIES = host-bison host-flex LIBCGROUP_INSTALL_STAGING = YES # Undefining _FILE_OFFSET_BITS here because of a "bug" with glibc fts.h # large file support. See https://bugzilla.redhat.com/show_bug.cgi?id=574992 # for more information. LIBCGROUP_CONF_ENV = \ CXXFLAGS="$(TARGET_CXXFLAGS) -U_FILE_OFFSET_BITS" \ CFLAGS="$(TARGET_CFLAGS) -U_FILE_OFFSET_BITS" LIBCGROUP_CONF_OPTS = \ --disable-daemon \ --disable-initscript-install ifeq ($(BR2_PACKAGE_LIBCGROUP_TOOLS),y) LIBCGROUP_CONF_OPTS += --enable-tools else LIBCGROUP_CONF_OPTS += --disable-tools endif ifeq ($(BR2_PACKAGE_LINUX_PAM),y) LIBCGROUP_DEPENDENCIES += linux-pam LIBCGROUP_CONF_OPTS += --enable-pam else LIBCGROUP_CONF_OPTS += --disable-pam endif $(eval $(autotools-package))
shibajee/buildroot
package/libcgroup/libcgroup.mk
mk
mit
1,185
config BR2_PACKAGE_LIBCLI bool "libcli" help Libcli provides a shared library for including a Cisco-like command- line interface into other software. It's a telnet interface which supports command-line editing, history, authentication and callbacks for a user-definable function tree. http://sites.dparrish.com/libcli
shibajee/buildroot
package/libcli/Config.in
in
mit
340
# Locally calculated sha256 3c801cb0112b6b5e07bdc3b98c034b36df6f33a8ed95ce74520b704bdbc0f36d libcli-c63c9d35144939c8b4fa3c5394aed2e29ff517b0.tar.gz
shibajee/buildroot
package/libcli/libcli.hash
hash
mit
149
################################################################################ # # libcli # ################################################################################ LIBCLI_VERSION = c63c9d35144939c8b4fa3c5394aed2e29ff517b0 LIBCLI_SITE = $(call github,dparrish,libcli,$(LIBCLI_VERSION)) LIBCLI_LICENSE = LGPLv2.1 LIBCLI_LICENSE_FILES = COPYING LIBCLI_INSTALL_STAGING = YES # We will pass optimisation level via CFLAGS so remove libcli default LIBCLI_MAKE_ARGS += OPTIM= # We can't run the test harness LIBCLI_MAKE_ARGS += TESTS= # Disable the static library for shared only build ifeq ($(BR2_SHARED_LIBS),y) LIBCLI_MAKE_ARGS += STATIC_LIB= endif # Disable the shared library for static only build ifeq ($(BR2_STATIC_LIBS),y) LIBCLI_MAKE_ARGS += DYNAMIC_LIB= endif define LIBCLI_BUILD_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \ $(LIBCLI_MAKE_ARGS) endef define LIBCLI_INSTALL_STAGING_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \ $(LIBCLI_MAKE_ARGS) DESTDIR=$(STAGING_DIR) PREFIX=/usr install endef define LIBCLI_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \ $(LIBCLI_MAKE_ARGS) DESTDIR=$(TARGET_DIR) PREFIX=/usr install endef $(eval $(generic-package))
shibajee/buildroot
package/libcli/libcli.mk
mk
mit
1,264
From d5914ecbb0285aea1eb2b9432d6e91155877fd95 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Thu, 9 Jun 2016 21:53:59 +0200 Subject: [PATCH] configure: only add -Wunused-result if supported by the compiler Old gcc versions such as 4.3.x do not support -Wunused-result, so instead of unconditionally using this warning, only use it if supported by the compiler. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- Submitted upstream: https://github.com/obgm/libcoap/pull/32 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f4452ac..6354fcf 100644 --- a/configure.ac +++ b/configure.ac @@ -110,12 +110,12 @@ WARNING_CFLAGS="\ -Wswitch-default \ -Wswitch-enum \ -Wunused \ --Wunused-result \ " # check whether or not the compiler supports -Wlogical-op (clang does not...) AX_CHECK_COMPILE_FLAG([-Wlogical-op], [WARNING_CFLAGS="$WARNING_CFLAGS -Wlogical-op"],,[-Werror]) AX_CHECK_COMPILE_FLAG([-fdiagnostics-color], [CFLAGS="$CFLAGS -fdiagnostics-color"],,[-Werror]) +AX_CHECK_COMPILE_FLAG([-Wunused-result], [WARNING_CFLAGS="$WARNING_CFLAGS -Wunused-result"]) AC_SUBST([WARNING_CFLAGS]) -- 2.7.4
shibajee/buildroot
package/libcoap/0001-configure-only-add-Wunused-result-if-supported-by-th.patch
patch
mit
1,247
config BR2_PACKAGE_LIBCOAP bool "libcoap" help libcoap is a C implementation of a lightweight application-protocol for devices that are constrained their resources such as computing power, RF range, memory, bandwith, or network packet sizes. This protocol, CoAP, is standardized by the IETF as RFC 7252. For further information related to CoAP, see <http://coap.technology>. https://github.com/obgm/libcoap
shibajee/buildroot
package/libcoap/Config.in
in
mit
428
# Locally calculated sha256 f66e91742c2b027fcd7c575d8e7b53d79d3624aad1b3baba481dd88f6e2bc44d libcoap-c909bf802034b7762a2182848304b2530e58444f.tar.gz
shibajee/buildroot
package/libcoap/libcoap.hash
hash
mit
149
################################################################################ # # libcoap # ################################################################################ LIBCOAP_VERSION = c909bf802034b7762a2182848304b2530e58444f LIBCOAP_SITE = $(call github,obgm,libcoap,$(LIBCOAP_VERSION)) LIBCOAP_INSTALL_STAGING = YES LIBCOAP_LICENSE = GPLv2+ or BSD-2c LIBCOAP_LICENSE_FILES = COPYING LICENSE.GPL LICENSE.BSD LIBCOAP_CONF_OPTS = --disable-examples LIBCOAP_AUTORECONF = YES $(eval $(autotools-package))
shibajee/buildroot
package/libcoap/libcoap.mk
mk
mit
513
From c7c769990bca3049bc389dcbd9985adaec134946 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Sat, 29 Aug 2015 11:59:18 +0200 Subject: [PATCH] Use the native compiler to build generate_cookbook The generate_cookbook binary needs to be executed at build time. When cross-compiling, this means that it should be built with the native compiler rather than the cross-compiler. To achieve this, this commit imports the AX_CC_FOR_BUILD autoconf macro from the GNU Autoconf Archive project, and adjusts src/Makefile.am to use CC_FOR_BUILD to build generate_cookbook. Based on initial work by Bernd Kuhls. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- Makefile.am | 1 + configure.ac | 2 ++ m4/ax_cc_for_build.m4 | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++ src/Makefile.am | 3 ++ 4 files changed, 83 insertions(+) create mode 100644 m4/ax_cc_for_build.m4 diff --git a/Makefile.am b/Makefile.am index 4468bca..bd3ce01 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,7 @@ AM_CFLAGS = -Isrc -fPIC -Wall -O3 -lm AUTOMAKE_OPTIONS = gnu NAME = codec2 AM_CPPFLAGS = $(AM_CFLAGS) +ACLOCAL_AMFLAGS = -I m4 pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = codec2.pc diff --git a/configure.ac b/configure.ac index 493c517..7520af6 100644 --- a/configure.ac +++ b/configure.ac @@ -4,10 +4,12 @@ AC_PREREQ([2.59]) AC_INIT(codec2, 0.2, david@rowetel.com) AM_INIT_AUTOMAKE +AC_CONFIG_MACRO_DIR([m4]) # Checks for programs. AC_PROG_CC AC_PROG_LIBTOOL +AX_CC_FOR_BUILD # Checks for libraries. # FIXME: Replace `main' with a function in `-lm': diff --git a/m4/ax_cc_for_build.m4 b/m4/ax_cc_for_build.m4 new file mode 100644 index 0000000..c880fd0 --- /dev/null +++ b/m4/ax_cc_for_build.m4 @@ -0,0 +1,77 @@ +# =========================================================================== +# http://www.gnu.org/software/autoconf-archive/ax_cc_for_build.html +# =========================================================================== +# +# SYNOPSIS +# +# AX_CC_FOR_BUILD +# +# DESCRIPTION +# +# Find a build-time compiler. Sets CC_FOR_BUILD and EXEEXT_FOR_BUILD. +# +# LICENSE +# +# Copyright (c) 2010 Reuben Thomas <rrt@sc3d.org> +# Copyright (c) 1999 Richard Henderson <rth@redhat.com> +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General +# Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program. If not, see <http://www.gnu.org/licenses/>. +# +# As a special exception, the respective Autoconf Macro's copyright owner +# gives unlimited permission to copy, distribute and modify the configure +# scripts that are the output of Autoconf when processing the Macro. You +# need not follow the terms of the GNU General Public License when using +# or distributing such scripts, even though portions of the text of the +# Macro appear in them. The GNU General Public License (GPL) does govern +# all other use of the material that constitutes the Autoconf Macro. +# +# This special exception to the GPL applies to versions of the Autoconf +# Macro released by the Autoconf Archive. When you make and distribute a +# modified version of the Autoconf Macro, you may extend this special +# exception to the GPL to apply to your modified version as well. + +#serial 2 + +dnl Get a default for CC_FOR_BUILD to put into Makefile. +AC_DEFUN([AX_CC_FOR_BUILD], +[# Put a plausible default for CC_FOR_BUILD in Makefile. +if test -z "$CC_FOR_BUILD"; then + if test "x$cross_compiling" = "xno"; then + CC_FOR_BUILD='$(CC)' + else + CC_FOR_BUILD=gcc + fi +fi +AC_SUBST(CC_FOR_BUILD) +# Also set EXEEXT_FOR_BUILD. +if test "x$cross_compiling" = "xno"; then + EXEEXT_FOR_BUILD='$(EXEEXT)' +else + AC_CACHE_CHECK([for build system executable suffix], bfd_cv_build_exeext, + [rm -f conftest* + echo 'int main () { return 0; }' > conftest.c + bfd_cv_build_exeext= + ${CC_FOR_BUILD} -o conftest conftest.c 1>&5 2>&5 + for file in conftest.*; do + case $file in + *.c | *.o | *.obj | *.ilk | *.pdb) ;; + *) bfd_cv_build_exeext=`echo $file | sed -e s/conftest//` ;; + esac + done + rm -f conftest* + test x"${bfd_cv_build_exeext}" = x && bfd_cv_build_exeext=no]) + EXEEXT_FOR_BUILD="" + test x"${bfd_cv_build_exeext}" != xno && EXEEXT_FOR_BUILD=${bfd_cv_build_exeext} +fi +AC_SUBST(EXEEXT_FOR_BUILD)])dnl diff --git a/src/Makefile.am b/src/Makefile.am index 1153b3c..719088d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -77,6 +77,9 @@ CODEBOOKSGE= \ noinst_PROGRAMS = generate_codebook genlspdtcb +generate_codebook$(EXEEXT_FOR_BUILD): generate_codebook.c + $(CC_FOR_BUILD) -o $@ generate_codebook.c -lm + codebook.$(OBJEXT): codebook.c codebookd.$(OBJEXT): codebookd.c codebookdt.$(OBJEXT): codebookdt.c -- 2.5.0
shibajee/buildroot
package/libcodec2/0001-Use-the-native-compiler-to-build-generate_cookbook.patch
patch
mit
5,351
From 19db6244200b870317382294f14b7d561d55a64e Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Sat, 29 Aug 2015 12:05:53 +0200 Subject: [PATCH] Add option to disable unit tests The unittests require C++, while the rest of the library does not, so this commit implements a --{enable,disable}-unittests option to selectively enable the build of the unit tests. When not provided, the option defaults to yes so that the existing behavior is preserved. Based on initial work by Bernd Kuhls. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- Makefile.am | 6 +++++- configure.ac | 5 +++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index bd3ce01..1da250b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -95,4 +95,8 @@ src/codebook/lsp8.txt \ src/codebook/lsp9.txt \ src/codebook/lsp10.txt -SUBDIRS = src unittest +SUBDIRS = src + +if UNITTESTS +SUBDIRS += unittest +endif diff --git a/configure.ac b/configure.ac index 7520af6..55b7215 100644 --- a/configure.ac +++ b/configure.ac @@ -24,5 +24,10 @@ AC_CHECK_HEADERS([stdlib.h string.h]) AC_FUNC_MALLOC AC_CHECK_FUNCS([floor pow sqrt]) +AC_ARG_ENABLE([unittests], + AS_HELP_STRING([--disable-unittests], [Disable unittests]), + [], [enable_unittests=yes]) +AM_CONDITIONAL([UNITTESTS], [test "${enable_unittests}" = "yes"]) + AC_CONFIG_FILES([Makefile src/Makefile unittest/Makefile codec2.pc]) AC_OUTPUT -- 2.5.0
shibajee/buildroot
package/libcodec2/0002-Add-option-to-disable-unit-tests.patch
patch
mit
1,487
config BR2_PACKAGE_LIBCODEC2 bool "libcodec2" help Codec2 is an open source low bit rate speech codec designed for communications quality speech between 1200 and 3200 bit/s. http://rowetel.com/codec2.html
shibajee/buildroot
package/libcodec2/Config.in
in
mit
217
################################################################################ # # libcodec2 # ################################################################################ LIBCODEC2_VERSION = 392a55b4f3f8ad30d845ac6ae35e8b27343bb944 LIBCODEC2_SITE = https://freeswitch.org/stash/scm/sd/libcodec2.git LIBCODEC2_SITE_METHOD = git LIBCODEC2_LICENSE = LGPLv2.1 LIBCODEC2_LICENSE_FILES = COPYING LIBCODEC2_AUTORECONF = YES LIBCODEC2_INSTALL_STAGING = YES LIBCODEC2_CONF_OPTS = --disable-unittests $(eval $(autotools-package))
shibajee/buildroot
package/libcodec2/libcodec2.mk
mk
mit
529
config BR2_PACKAGE_LIBCOFI bool "libcofi" depends on BR2_arm # builds a shared library depends on !BR2_STATIC_LIBS help A replacement for memcpy and memset functionality for the Raspberry Pi with the intention of gaining greater performance. https://github.com/simonjhall/copies-and-fills comment "libcofi needs a toolchain w/ dynamic library" depends on BR2_arm depends on BR2_STATIC_LIBS
shibajee/buildroot
package/libcofi/Config.in
in
mit
408
# locally computed sha256 72ec89c19267612b316ec9c5835c07212b8f0a377c5b4c20b6e46e69a6e4a5e5 libcofi-7313fbe12b0593034d0a1b606bf33c7cf4ababce.tar.gz
shibajee/buildroot
package/libcofi/libcofi.hash
hash
mit
149
################################################################################ # # libcofi # ################################################################################ LIBCOFI_VERSION = 7313fbe12b0593034d0a1b606bf33c7cf4ababce LIBCOFI_SITE = $(call github,simonjhall,copies-and-fills,$(LIBCOFI_VERSION)) LIBCOFI_LICENSE = LGPLv2.1 LIBCOFI_LICENSE_FILES = README.md define LIBCOFI_BUILD_CMDS $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) endef define LIBCOFI_INSTALL_TARGET_CMDS $(INSTALL) -D -m 0755 $(@D)/libcofi_rpi.so $(TARGET_DIR)/usr/lib/libcofi_rpi.so endef $(eval $(generic-package))
shibajee/buildroot
package/libcofi/libcofi.mk
mk
mit
601
config BR2_PACKAGE_LIBCONFIG bool "libconfig" help Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. http://www.hyperrealm.com/libconfig/
shibajee/buildroot
package/libconfig/Config.in
in
mit
344
# Locally computed: sha256 e31daa390d8e4461c8830512fe2e13ba1a3d6a02a2305a02429eec61e68703f6 libconfig-1.5.tar.gz
shibajee/buildroot
package/libconfig/libconfig.hash
hash
mit
115
################################################################################ # # libconfig # ################################################################################ LIBCONFIG_VERSION = 1.5 LIBCONFIG_SITE = http://www.hyperrealm.com/libconfig LIBCONFIG_LICENSE = LGPLv2.1+ LIBCONFIG_LICENSE_FILES = COPYING.LIB LIBCONFIG_INSTALL_STAGING = YES LIBCONFIG_CONF_OPTS = --disable-examples ifneq ($(BR2_INSTALL_LIBSTDCPP),y) LIBCONFIG_CONF_OPTS += --disable-cxx endif $(eval $(autotools-package))
shibajee/buildroot
package/libconfig/libconfig.mk
mk
mit
506
config BR2_PACKAGE_LIBCONFUSE bool "libconfuse" help LibConfuse is a configuration file parser library written in C. It supports sections and (lists of) values (strings, integers, floats, booleans or other sections), as well as some other features (such as single/double-quoted strings, environment variable expansion, functions and nested include statements. http://savannah.nongnu.org/download/confuse/
shibajee/buildroot
package/libconfuse/Config.in
in
mit
429
# From https://github.com/martinh/libconfuse/releases/download/v3.0/confuse-3.0.tar.xz.md5, sha256 locally computed. md5 c534b51a2118ed57031dc548032304a3 confuse-3.0.tar.xz sha256 bb75174e02aa8b44fa1a872a47beeea1f5fe715ab669694c97803eb6127cc861 confuse-3.0.tar.xz
shibajee/buildroot
package/libconfuse/libconfuse.hash
hash
mit
268
################################################################################ # # libconfuse # ################################################################################ LIBCONFUSE_VERSION = 3.0 LIBCONFUSE_SOURCE = confuse-$(LIBCONFUSE_VERSION).tar.xz LIBCONFUSE_SITE = https://github.com/martinh/libconfuse/releases/download/v$(LIBCONFUSE_VERSION) LIBCONFUSE_INSTALL_STAGING = YES LIBCONFUSE_CONF_OPTS = --disable-rpath LIBCONFUSE_DEPENDENCIES = host-flex HOST_LIBCONFUSE_DEPENDENCIES = host-flex LIBCONFUSE_LICENSE = ISC LIBCONFUSE_LICENSE_FILES = LICENSE ifeq ($(BR2_PACKAGE_GETTEXT),y) LIBCONFUSE_DEPENDENCIES += gettext endif $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/libconfuse/libconfuse.mk
mk
mit
706
config BR2_PACKAGE_LIBCROCO bool "libcroco" select BR2_PACKAGE_LIBXML2 select BR2_PACKAGE_LIBGLIB2 depends on BR2_USE_WCHAR # glib2 depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 depends on BR2_USE_MMU # glib2 help Libcroco is a standalone css2 parsing and manipulation library. The parser provides a low level event driven SAC like api and a css object model like api. Libcroco provides a CSS2 selection engine and an experimental xml/css rendering engine. https://github.com/GNOME/libcroco comment "libcroco needs a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libcroco/Config.in
in
mit
654
# From http://ftp.acc.umu.se/pub/gnome/sources/libcroco/0.6/libcroco-0.6.11.sha256sum sha256 132b528a948586b0dfa05d7e9e059901bca5a3be675b6071a90a90b81ae5a056 libcroco-0.6.11.tar.xz
shibajee/buildroot
package/libcroco/libcroco.hash
hash
mit
181
################################################################################ # # libcroco # ################################################################################ LIBCROCO_VERSION_MAJOR = 0.6 LIBCROCO_VERSION = $(LIBCROCO_VERSION_MAJOR).11 LIBCROCO_SITE = http://ftp.gnome.org/pub/gnome/sources/libcroco/$(LIBCROCO_VERSION_MAJOR) LIBCROCO_SOURCE = libcroco-$(LIBCROCO_VERSION).tar.xz LIBCROCO_INSTALL_STAGING = YES LIBCROCO_DEPENDENCIES = host-pkgconf libglib2 libxml2 HOST_LIBCROCO_DEPENDENCIES = host-pkgconf host-libglib2 host-libxml2 LIBCROCO_CONFIG_SCRIPTS = croco-$(LIBCROCO_VERSION_MAJOR)-config # NEWS states that it's only LGPL # Source code says v2.1+ even though COPYING.LIB is v2 LIBCROCO_LICENSE = LGPLv2.1+ LIBCROCO_LICENSE_FILES = COPYING.LIB $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/libcroco/libcroco.mk
mk
mit
837
config BR2_PACKAGE_LIBCROSSGUID bool "libcrossguid" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11 depends on BR2_USE_WCHAR # util-linux select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_UTIL_LINUX_LIBUUID help Lightweight cross platform C++ GUID/UUID library https://github.com/graeme-hill/crossguid comment "libcrossguid needs a toolchain w/ C++, wchar, gcc >= 4.7" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \ || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
shibajee/buildroot
package/libcrossguid/Config.in
in
mit
510
# Locally calculated sha256 022c9f02cc36e865cd8fd0111a597ff2bd91988deeb348dbe2aba64aed1abd99 libcrossguid-8f399e8bd4252be9952f3dfa8199924cc8487ca4.tar.gz
shibajee/buildroot
package/libcrossguid/libcrossguid.hash
hash
mit
155
################################################################################ # # libcrossguid # ################################################################################ LIBCROSSGUID_VERSION = 8f399e8bd4252be9952f3dfa8199924cc8487ca4 LIBCROSSGUID_SITE = $(call github,graeme-hill,crossguid,$(LIBCROSSGUID_VERSION)) LIBCROSSGUID_LICENSE = MIT LIBCROSSGUID_LICENSE_FILES = LICENSE LIBCROSSGUID_INSTALL_STAGING = YES # only a static library LIBCROSSGUID_INSTALL_TARGET = NO LIBCROSSGUID_DEPENDENCIES = util-linux define LIBCROSSGUID_BUILD_CMDS (cd $(@D); $(TARGET_CXX) $(TARGET_CXXFLAGS) -std=c++11 -DGUID_LIBUUID \ -c guid.cpp -o guid.o) (cd $(@D); $(TARGET_AR) rvs libcrossguid.a guid.o) endef define LIBCROSSGUID_INSTALL_STAGING_CMDS $(INSTALL) -D -m 644 $(@D)/libcrossguid.a \ $(STAGING_DIR)/usr/lib/libcrossguid.a $(INSTALL) -D -m 644 $(@D)/guid.h $(STAGING_DIR)/usr/include/guid.h endef $(eval $(generic-package))
shibajee/buildroot
package/libcrossguid/libcrossguid.mk
mk
mit
940
config BR2_PACKAGE_LIBCUE bool "libcue" select BR2_PACKAGE_FLEX help CUE Sheet Parser Library https://github.com/lipnitsk/libcue
shibajee/buildroot
package/libcue/Config.in
in
mit
139
# Locally computed: sha256 c3c46d58cebf15b3fe07e6f649014694d338ddd880e941bfb1fd3cedae66c62f libcue-v1.4.0.tar.gz
shibajee/buildroot
package/libcue/libcue.hash
hash
mit
113
################################################################################ # # libcue # ################################################################################ LIBCUE_VERSION = v1.4.0 LIBCUE_SITE = $(call github,lipnitsk,libcue,$(LIBCUE_VERSION)) LIBCUE_LICENSE = GPLv2, BSD-2c (rem.c) LIBCUE_LICENSE_FILES = COPYING LIBCUE_DEPENDENCIES = host-bison host-flex flex LIBCUE_INSTALL_STAGING = YES LIBCUE_AUTORECONF = YES # Needed for autoreconf define LIBCUE_MAKE_CONFIG_DIR mkdir $(@D)/config endef LIBCUE_POST_EXTRACT_HOOKS += LIBCUE_MAKE_CONFIG_DIR $(eval $(autotools-package))
shibajee/buildroot
package/libcue/libcue.mk
mk
mit
597
Fix static only build Make sure to build the shared library only if BUILD_SHARED_LIBS is ON. Normally, CMake takes care of this automatically, but libcuefile wants to build both the shared and static variants, so the normal logic of CMake doesn't apply. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Index: b/src/CMakeLists.txt =================================================================== --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -4,7 +4,11 @@ add_library(cuefile-static STATIC cd cdtext cue_parse cue_print cue_scan cuefile time toc toc_parse toc_print toc_scan) set_target_properties(cuefile-static PROPERTIES OUTPUT_NAME cuefile CLEAN_DIRECT_OUTPUT 1) +if (BUILD_SHARED_LIBS) add_library(cuefile-shared SHARED cd cdtext cue_parse cue_print cue_scan cuefile time toc toc_parse toc_print toc_scan) set_target_properties(cuefile-shared PROPERTIES OUTPUT_NAME cuefile CLEAN_DIRECT_OUTPUT 1 VERSION 0.0.0 SOVERSION 0) install(TARGETS cuefile-static cuefile-shared LIBRARY DESTINATION "lib${LIB_SUFFIX}" ARCHIVE DESTINATION "lib${LIB_SUFFIX}") +else (BUILD_SHARED_LIBS) +install(TARGETS cuefile-static LIBRARY DESTINATION "lib${LIB_SUFFIX}" ARCHIVE DESTINATION "lib${LIB_SUFFIX}") +endif (BUILD_SHARED_LIBS)
shibajee/buildroot
package/libcuefile/0001-fix-static-link.patch
patch
mit
1,260
config BR2_PACKAGE_LIBCUEFILE bool "libcuefile" help Cue File library from Musepack http://www.musepack.net/
shibajee/buildroot
package/libcuefile/Config.in
in
mit
118
# From https://www.musepack.net/index.php?pg=src md5 1a6ac52e1080fd54f0f59372345f1e4e libcuefile_r475.tar.gz # Calculated based on the hash above sha256 b681ca6772b3f64010d24de57361faecf426ee6182f5969fcf29b3f649133fe7 libcuefile_r475.tar.gz
shibajee/buildroot
package/libcuefile/libcuefile.hash
hash
mit
241
################################################################################ # # libcuefile # ################################################################################ LIBCUEFILE_VERSION = r475 LIBCUEFILE_SITE = http://files.musepack.net/source LIBCUEFILE_SOURCE = libcuefile_$(LIBCUEFILE_VERSION).tar.gz LIBCUEFILE_INSTALL_STAGING = YES LIBCUEFILE_LICENSE = GPLv2+ LIBCUEFILE_LICENSE_FILES = COPYING define LIBCUEFILE_INSTALL_STAGING_INCLUDES cp -r $(@D)/include $(STAGING_DIR)/usr endef define LIBCUEFILE_INSTALL_TARGET_INCLUDES cp -r $(@D)/include $(TARGET_DIR)/usr endef LIBCUEFILE_POST_INSTALL_STAGING_HOOKS += LIBCUEFILE_INSTALL_STAGING_INCLUDES LIBCUEFILE_POST_INSTALL_TARGET_HOOKS += LIBCUEFILE_INSTALL_TARGET_INCLUDES $(eval $(cmake-package))
shibajee/buildroot
package/libcuefile/libcuefile.mk
mk
mit
770
config BR2_PACKAGE_LIBCURL bool "libcurl" help cURL is a tool for getting files from FTP, HTTP, Gopher, Telnet, and Dict servers, using any of the supported protocols. http://curl.haxx.se/ if BR2_PACKAGE_LIBCURL config BR2_PACKAGE_CURL bool "curl binary" help Install curl binary as well endif
shibajee/buildroot
package/libcurl/Config.in
in
mit
314
# Locally calculated after checking pgp signature sha256 3c12c5f54ccaa1d40abc65d672107dcc75d3e1fcb38c267484334280096e5156 curl-7.50.1.tar.bz2
shibajee/buildroot
package/libcurl/libcurl.hash
hash
mit
143
################################################################################ # # libcurl # ################################################################################ LIBCURL_VERSION = 7.50.1 LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.bz2 LIBCURL_SITE = http://curl.haxx.se/download LIBCURL_DEPENDENCIES = host-pkgconf \ $(if $(BR2_PACKAGE_ZLIB),zlib) \ $(if $(BR2_PACKAGE_LIBIDN),libidn) \ $(if $(BR2_PACKAGE_RTMPDUMP),rtmpdump) LIBCURL_LICENSE = ISC LIBCURL_LICENSE_FILES = COPYING LIBCURL_INSTALL_STAGING = YES # We disable NTLM support because it uses fork(), which doesn't work # on non-MMU platforms. Moreover, this authentication method is # probably almost never used. See # http://curl.haxx.se/docs/manpage.html#--ntlm. LIBCURL_CONF_OPTS = --disable-verbose --disable-manual --disable-ntlm-wb \ --enable-hidden-symbols --with-random=/dev/urandom --disable-curldebug LIBCURL_CONFIG_SCRIPTS = curl-config ifeq ($(BR2_PACKAGE_OPENSSL),y) LIBCURL_DEPENDENCIES += openssl LIBCURL_CONF_ENV += ac_cv_lib_crypto_CRYPTO_lock=yes # configure adds the cross openssl dir to LD_LIBRARY_PATH which screws up # native stuff during the rest of configure when target == host. # Fix it by setting LD_LIBRARY_PATH to something sensible so those libs # are found first. LIBCURL_CONF_ENV += LD_LIBRARY_PATH=$(if $(LD_LIBRARY_PATH),$(LD_LIBRARY_PATH):)/lib:/usr/lib LIBCURL_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr \ --with-ca-path=/etc/ssl/certs else ifeq ($(BR2_PACKAGE_GNUTLS),y) LIBCURL_CONF_OPTS += --with-gnutls=$(STAGING_DIR)/usr LIBCURL_DEPENDENCIES += gnutls else ifeq ($(BR2_PACKAGE_LIBNSS),y) LIBCURL_CONF_OPTS += --with-nss=$(STAGING_DIR)/usr LIBCURL_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) `$(PKG_CONFIG_HOST_BINARY) nspr nss --cflags`" LIBCURL_DEPENDENCIES += libnss else ifeq ($(BR2_PACKAGE_MBEDTLS),y) LIBCURL_CONF_OPTS += --with-mbedtls=$(STAGING_DIR)/usr LIBCURL_DEPENDENCIES += mbedtls else LIBCURL_CONF_OPTS += --without-ssl --without-gnutls \ --without-polarssl --without-nss --without-mbedtls endif ifeq ($(BR2_PACKAGE_C_ARES),y) LIBCURL_DEPENDENCIES += c-ares LIBCURL_CONF_OPTS += --enable-ares else LIBCURL_CONF_OPTS += --disable-ares endif # Configure curl to support libssh2 ifeq ($(BR2_PACKAGE_LIBSSH2),y) LIBCURL_DEPENDENCIES += libssh2 LIBCURL_CONF_OPTS += --with-libssh2 else LIBCURL_CONF_OPTS += --without-libssh2 endif define LIBCURL_FIX_DOT_PC printf 'Requires: openssl\n' >>$(@D)/libcurl.pc.in endef LIBCURL_POST_PATCH_HOOKS += $(if $(BR2_PACKAGE_OPENSSL),LIBCURL_FIX_DOT_PC) ifeq ($(BR2_PACKAGE_CURL),) define LIBCURL_TARGET_CLEANUP rm -rf $(TARGET_DIR)/usr/bin/curl endef LIBCURL_POST_INSTALL_TARGET_HOOKS += LIBCURL_TARGET_CLEANUP endif $(eval $(autotools-package))
shibajee/buildroot
package/libcurl/libcurl.mk
mk
mit
2,720
examples/testd.c: As the C POSIX library recommends include the <unistd.h> instead of <sys/unistd.h>. This removes an error when building libdaemon against the musl C library. Signed-off-by: Jörg Krause <jkrause@posteo.de> --- libdaemon-0.14.orig/examples/testd.c 2014-08-30 00:27:08.359832977 +0200 +++ libdaemon-0.14/examples/testd.c 2014-08-30 00:27:25.439832670 +0200 @@ -23,7 +23,7 @@ #include <string.h> #include <sys/types.h> #include <sys/time.h> -#include <sys/unistd.h> +#include <unistd.h> #include <sys/select.h> #include <libdaemon/dfork.h>
shibajee/buildroot
package/libdaemon/0001-testd-use-unistd-h-instead-of-sys-unistd-h.patch
patch
mit
563
config BR2_PACKAGE_LIBDAEMON bool "libdaemon" # needs fork() depends on BR2_USE_MMU help libdaemon is a lightweight C library that eases the writing of UNIX daemons. http://0pointer.de/lennart/projects/libdaemon/
shibajee/buildroot
package/libdaemon/Config.in
in
mit
227
# Locally calculated sha256 fd23eb5f6f986dcc7e708307355ba3289abe03cc381fc47a80bca4a50aa6b834 libdaemon-0.14.tar.gz
shibajee/buildroot
package/libdaemon/libdaemon.hash
hash
mit
115
################################################################################ # # libdaemon # ################################################################################ LIBDAEMON_VERSION = 0.14 LIBDAEMON_SITE = http://0pointer.de/lennart/projects/libdaemon LIBDAEMON_LICENSE = LGPLv2.1+ LIBDAEMON_LICENSE_FILES = LICENSE LIBDAEMON_INSTALL_STAGING = YES LIBDAEMON_CONF_ENV = ac_cv_func_setpgrp_void=no LIBDAEMON_CONF_OPTS = --disable-lynx LIBDAEMON_DEPENDENCIES = host-pkgconf $(eval $(autotools-package))
shibajee/buildroot
package/libdaemon/libdaemon.mk
mk
mit
516
config BR2_PACKAGE_LIBDCADEC bool "libdcadec" help dcadec is a free DTS Coherent Acoustics decoder with support for HD extensions. https://github.com/foo86/dcadec
shibajee/buildroot
package/libdcadec/Config.in
in
mit
175
# Locally calculated sha256 ed9d207fde3e8d576f3af8b0d1235b3371e315175757173689104efcaebf0d44 libdcadec-v0.2.0.tar.gz
shibajee/buildroot
package/libdcadec/libdcadec.hash
hash
mit
117
################################################################################ # # libdcadec # ################################################################################ LIBDCADEC_VERSION = v0.2.0 LIBDCADEC_SITE = $(call github,foo86,dcadec,$(LIBDCADEC_VERSION)) LIBDCADEC_LICENSE = LGPLv2.1+ LIBDCADEC_LICENSE_FILES = COPYING.LGPLv2.1 LIBDCADEC_INSTALL_STAGING = YES ifeq ($(BR2_STATIC_LIBS),) LIBDCADEC_SHARED = CONFIG_SHARED=1 endif define LIBDCADEC_BUILD_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS) -std=gnu99" \ $(LIBDCADEC_SHARED) -C $(@D) endef define LIBDCADEC_INSTALL_STAGING_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \ $(LIBDCADEC_SHARED) DESTDIR=$(STAGING_DIR) PREFIX=/usr install endef define LIBDCADEC_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \ $(LIBDCADEC_SHARED) DESTDIR=$(TARGET_DIR) PREFIX=/usr install endef $(eval $(generic-package))
shibajee/buildroot
package/libdcadec/libdcadec.mk
mk
mit
982
config BR2_PACKAGE_LIBDMTX bool "libdmtx" help libdmtx is a software library that enables programs to read and write Data Matrix barcodes of the modern ECC200 variety. http://www.libdmtx.org/
shibajee/buildroot
package/libdmtx/Config.in
in
mit
204
# Locally computed: sha256 686bcfb44e50b96345aa53f41e285f2118a2cf87a333b69b74165a2e7ddca492 libdmtx-0.7.4.tar.gz
shibajee/buildroot
package/libdmtx/libdmtx.hash
hash
mit
115
################################################################################ # # libdmtx # ################################################################################ LIBDMTX_VERSION = 0.7.4 LIBDMTX_SITE = http://downloads.sourceforge.net/project/libdmtx/libdmtx/$(LIBDMTX_VERSION) LIBDMTX_LICENSE = BSD-2c or Special Permission LIBDMTX_LICENSE_FILES = LICENSE LIBDMTX_INSTALL_STAGING = YES $(eval $(autotools-package))
shibajee/buildroot
package/libdmtx/libdmtx.mk
mk
mit
431
--- a/python/dnet.c 2006-01-19 18:08:23.000000000 +1100 +++ b/python/dnet.c 2008-09-03 16:30:47.000000000 +1000 @@ -2726,7 +2726,7 @@ PyObject *__pyx_3 = 0; unsigned short __pyx_4; Py_INCREF(__pyx_v_self); - ((PyObject*)__pyx_v_next) = Py_None; Py_INCREF(((PyObject*)__pyx_v_next)); + __pyx_v_next = (struct __pyx_obj_4dnet_addr*)Py_None; Py_INCREF(((PyObject*)__pyx_v_next)); /* "/Users/dugsong/projects/libdnet/python/./dnet.pyx":634 */ __pyx_1 = (((struct __pyx_obj_4dnet___addr_ip4_iter *)__pyx_v_self)->cur <= ((struct __pyx_obj_4dnet___addr_ip4_iter *)__pyx_v_self)->max); @@ -2738,7 +2739,7 @@ Py_DECREF(__pyx_2); __pyx_2 = 0; if (!__Pyx_TypeTest(__pyx_3, __pyx_ptype_4dnet_addr)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 635; goto __pyx_L1;} Py_DECREF(((PyObject *)__pyx_v_next)); - ((PyObject *)__pyx_v_next) = __pyx_3; + __pyx_v_next = (struct __pyx_obj_4dnet_addr*)__pyx_3; __pyx_3 = 0; /* "/Users/dugsong/projects/libdnet/python/./dnet.pyx":636 */
shibajee/buildroot
package/libdnet/0001-python-gcc.patch
patch
mit
1,016
--- python/Makefile.am | 1 + 1 file changed, 1 insertion(+) Index: libdnet-1.11/python/Makefile.am =================================================================== --- libdnet-1.11.orig/python/Makefile.am +++ libdnet-1.11/python/Makefile.am @@ -11,6 +11,7 @@ pyrexc $(srcdir)/dnet.pyx python-build: $(srcdir)/dnet.c + CC="$(CC)" LDSHARED="$(CC) -shared" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" $(PYTHON) setup.py build_ext -I$(PYINCDIR) -L$(PYLIBDIR) $(PYTHON) setup.py build touch python-build
shibajee/buildroot
package/libdnet/0002-python-makefile.patch
patch
mit
515
config BR2_PACKAGE_LIBDNET bool "libdnet" help libdnet - simplified interface to low-level networking routines. http://libdnet.sourceforge.net/ if BR2_PACKAGE_LIBDNET config BR2_PACKAGE_LIBDNET_PYTHON bool "libdnet python module" depends on BR2_PACKAGE_PYTHON help dnet module for python comment "dnet module for python requires python package" depends on !BR2_PACKAGE_PYTHON endif
shibajee/buildroot
package/libdnet/Config.in
in
mit
402
# Locally computed: sha256 0eb78415c8f2564c2f1e8ad36e98473348d9c94852f796a226360c716cc7ca53 libdnet-1.11.tar.gz
shibajee/buildroot
package/libdnet/libdnet.hash
hash
mit
114
################################################################################ # # libdnet # ################################################################################ LIBDNET_VERSION = 1.11 LIBDNET_SITE = http://downloads.sourceforge.net/project/libdnet/libdnet/libdnet-$(LIBDNET_VERSION) LIBDNET_LICENSE = BSD-3c LIBDNET_LICENSE_FILES = LICENSE LIBDNET_INSTALL_STAGING = YES LIBDNET_AUTORECONF = YES LIBDNET_CONF_OPTS = \ --with-gnu-ld \ --with-check=no ifneq ($(BR2_PACKAGE_LIBDNET_PYTHON),) LIBDNET_DEPENDENCIES = python LIBDNET_CONF_OPTS += --with-python LIBDNET_MAKE_OPTS = PYINCDIR=$(STAGING_DIR)/usr/include/python$(PYTHON_VERSION_MAJOR) PYLIBDIR=$(STAGING_DIR)/usr/lib LIBDNET_INSTALL_TARGET_OPTS = $(LIBDNET_MAKE_OPTS) DESTDIR=$(TARGET_DIR) INSTALL_STRIP_FLAG=-s install-exec LIBDNET_INSTALL_STAGING_OPTS = $(LIBDNET_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install endif # Needed for autoreconf to work properly define LIBDNET_FIXUP_ACINCLUDE_M4 ln -sf config/acinclude.m4 $(@D) endef LIBDNET_POST_EXTRACT_HOOKS += LIBDNET_FIXUP_ACINCLUDE_M4 define LIBDNET_REMOVE_CONFIG_SCRIPT $(RM) -f $(TARGET_DIR)/usr/bin/dnet-config endef LIBDNET_POST_INSTALL_TARGET_HOOKS += LIBDNET_REMOVE_CONFIG_SCRIPT $(eval $(autotools-package))
shibajee/buildroot
package/libdnet/libdnet.mk
mk
mit
1,245
config BR2_PACKAGE_LIBDRI2 bool "libdri2" select BR2_PACKAGE_LIBDRM select BR2_PACKAGE_XLIB_LIBXDAMAGE select BR2_PACKAGE_XLIB_LIBXEXT select BR2_PACKAGE_XPROTO_DRI2PROTO depends on BR2_TOOLCHAIN_HAS_THREADS # libdrm depends on BR2_PACKAGE_XORG7 help Library for the DRI2 extension to the X Window System. https://github.com/robclark/libdri2 comment "libdri2 needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libdri2/Config.in
in
mit
444
# Locally calculated sha256 7c427f5c3fbda3d1df1dc77129e87605f4af1f3ad2adf2653c560d1703aa4395 libdri2-4f1eef3183df2b270c3d5cbef07343ee5127a6a4.tar.gz
shibajee/buildroot
package/libdri2/libdri2.hash
hash
mit
150
################################################################################ # # libdri2 # ################################################################################ LIBDRI2_VERSION = 4f1eef3183df2b270c3d5cbef07343ee5127a6a4 LIBDRI2_SITE = $(call github,robclark,libdri2,$(LIBDRI2_VERSION)) LIBDRI2_DEPENDENCIES = xlib_libXext xproto_dri2proto xlib_libXdamage libdrm LIBDRI2_LICENSE = MIT LIBDRI2_LICENSE_FILES = COPYING LIBDRI2_INSTALL_STAGING = YES LIBDRI2_AUTORECONF = YES LIBDRI2_CONF_ENV = xorg_cv_malloc0_returns_null=true $(eval $(autotools-package))
shibajee/buildroot
package/libdri2/libdri2.mk
mk
mit
571
From 2e3dd0040e676530f7e735fab335ff449b9b3f4d Mon Sep 17 00:00:00 2001 From: Lauren Post <lauren.post@freescale.com> Date: Tue, 22 Mar 2016 22:08:25 +0100 Subject: [PATCH] Add ARM support into xf86drm.h This provides support for Xorg interface. Without this the vivante samples will hang during close requiring a reboot [Adapted from yocto project] Upstream-Status: Pending Signed-off-by: Lauren Post <lauren.post@freescale.com> Signed-off-by: Evan Kotara <evan.kotara@freescale.com> [Thomas: change CAS code to only be used on ARMv6/ARMv7, and not ARMv4/ARMv5, which don't support ldrex/strex. If no CAS implementation is provided libdrm falls back to a system call for locking/unlocking.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- xf86drm.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/xf86drm.h b/xf86drm.h index 481d882..72341f6 100644 --- a/xf86drm.h +++ b/xf86drm.h @@ -469,6 +469,28 @@ do { register unsigned int __old __asm("o0"); \ : "cr0", "memory"); \ } while (0) +# elif defined (__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) \ + || defined (__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__) \ + || defined (__ARM_ARCH_6K__) || defined(__ARM_ARCH_6T2__) \ + || defined (__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) \ + || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) \ + || defined(__ARM_ARCH_7EM__) + #undef DRM_DEV_MODE + #define DRM_DEV_MODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH) + + #define DRM_CAS(lock,old,new,__ret) \ + do { \ + __asm__ __volatile__ ( \ + "1: ldrex %0, [%1]\n" \ + " teq %0, %2\n" \ + " ite eq\n" \ + " strexeq %0, %3, [%1]\n" \ + " movne %0, #1\n" \ + : "=&r" (__ret) \ + : "r" (lock), "r" (old), "r" (new) \ + : "cc","memory"); \ + } while (0) + #endif /* architecture */ #endif /* __GNUC__ >= 2 */ -- 2.6.4
shibajee/buildroot
package/libdrm/0001-Add-ARM-support-into-xf86drm.h.patch
patch
mit
2,231
From 7384f79f69fdb7b691cc5b0c28c301b3fe8b633e Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Thu, 26 May 2016 10:46:57 +0200 Subject: [PATCH] xf86atomic: require CAS support in libatomic_ops Since AO_compare_and_swap_full() is used by libdrm, AO_REQUIRE_CAS must be defined before including <atomic_ops.h> so that we are sure that CAS support will be provided. This is necessary to make sure that the AO_compare_and_swap_full() function will be provided on all architectures, including the ones that don't have built-in CAS support such as SPARCv8. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- xf86atomic.h | 1 + 1 file changed, 1 insertion(+) diff --git a/xf86atomic.h b/xf86atomic.h index 922b37d..d7017a5 100644 --- a/xf86atomic.h +++ b/xf86atomic.h @@ -58,6 +58,7 @@ typedef struct { #endif #if HAVE_LIB_ATOMIC_OPS +#define AO_REQUIRE_CAS #include <atomic_ops.h> #define HAS_ATOMIC_OPS 1 -- 2.7.4
shibajee/buildroot
package/libdrm/0002-xf86atomic-require-CAS-support-in-libatomic_ops.patch
patch
mit
990
menuconfig BR2_PACKAGE_LIBDRM bool "libdrm" select BR2_PACKAGE_LIBPTHREAD_STUBS depends on BR2_TOOLCHAIN_HAS_THREADS # libpthread-stubs help Direct Rendering Manager http://dri.freedesktop.org/libdrm/ if BR2_PACKAGE_LIBDRM config BR2_PACKAGE_LIBDRM_HAS_ATOMIC bool default y if BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS || \ BR2_TOOLCHAIN_HAS_SYNC_4 config BR2_PACKAGE_LIBDRM_ENABLE_ATOMIC bool select BR2_PACKAGE_LIBATOMIC_OPS if !BR2_TOOLCHAIN_HAS_SYNC_4 config BR2_PACKAGE_LIBDRM_INTEL bool "intel" select BR2_PACKAGE_LIBPCIACCESS depends on BR2_i386 || BR2_x86_64 depends on BR2_PACKAGE_LIBDRM_HAS_ATOMIC select BR2_PACKAGE_LIBDRM_ENABLE_ATOMIC help Install intel graphics driver. config BR2_PACKAGE_LIBDRM_RADEON bool "radeon" depends on BR2_PACKAGE_LIBDRM_HAS_ATOMIC select BR2_PACKAGE_LIBDRM_ENABLE_ATOMIC help Install AMD/ATI graphics driver. config BR2_PACKAGE_LIBDRM_AMDGPU bool "amdgpu" depends on BR2_PACKAGE_LIBDRM_HAS_ATOMIC select BR2_PACKAGE_LIBDRM_ENABLE_ATOMIC help Install AMD GPU driver. config BR2_PACKAGE_LIBDRM_NOUVEAU bool "nouveau" depends on BR2_PACKAGE_LIBDRM_HAS_ATOMIC select BR2_PACKAGE_LIBDRM_ENABLE_ATOMIC help Install NVIDIA graphics driver. config BR2_PACKAGE_LIBDRM_VMWGFX bool "vmwgfx" depends on BR2_i386 || BR2_x86_64 help Installs Vmware graphics driver. config BR2_PACKAGE_LIBDRM_OMAP bool "omap (experimental)" depends on BR2_arm depends on BR2_PACKAGE_LIBDRM_HAS_ATOMIC select BR2_PACKAGE_LIBDRM_ENABLE_ATOMIC help Install the TI OMAP driver using an experimental API. config BR2_PACKAGE_LIBDRM_EXYNOS bool "exynos (experimental)" depends on BR2_arm help Install Samsung Exynos driver using an experimental API. config BR2_PACKAGE_LIBDRM_FREEDRENO bool "freedreno" depends on BR2_arm || BR2_aarch64 || BR2_aarch64_be depends on BR2_PACKAGE_LIBDRM_HAS_ATOMIC select BR2_PACKAGE_LIBDRM_ENABLE_ATOMIC help Install Qualcomm Snapdragon driver. config BR2_PACKAGE_LIBDRM_TEGRA bool "tegra (experimental)" depends on BR2_arm depends on BR2_PACKAGE_LIBDRM_HAS_ATOMIC select BR2_PACKAGE_LIBDRM_ENABLE_ATOMIC help Install NVIDIA Tegra driver using an experimental API. config BR2_PACKAGE_LIBDRM_VC4 bool "vc4" depends on BR2_arm help Install vc4 (Raspberry Pi) driver. config BR2_PACKAGE_LIBDRM_INSTALL_TESTS bool "Install test programs" help This option allows to install the libdrm test programs. endif comment "libdrm needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libdrm/Config.in
in
mit
2,530
# From https://lists.freedesktop.org/archives/dri-devel/2016-July/113899.html sha256 b17d4b39ed97ca0e4cffa0db06ff609e617bac94646ec38e8e0579d530540e7b libdrm-2.4.70.tar.bz2
shibajee/buildroot
package/libdrm/libdrm.hash
hash
mit
172
################################################################################ # # libdrm # ################################################################################ LIBDRM_VERSION = 2.4.70 LIBDRM_SOURCE = libdrm-$(LIBDRM_VERSION).tar.bz2 LIBDRM_SITE = http://dri.freedesktop.org/libdrm LIBDRM_LICENSE = MIT LIBDRM_INSTALL_STAGING = YES LIBDRM_DEPENDENCIES = \ libpthread-stubs \ host-pkgconf LIBDRM_CONF_OPTS = \ --disable-cairo-tests \ --disable-manpages LIBDRM_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99' ifeq ($(BR2_PACKAGE_LIBATOMIC_OPS),y) LIBDRM_DEPENDENCIES += libatomic_ops ifeq ($(BR2_sparc_v8)$(BR2_sparc_leon3),y) LIBDRM_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -DAO_NO_SPARC_V9" endif endif ifeq ($(BR2_PACKAGE_LIBDRM_INTEL),y) LIBDRM_CONF_OPTS += --enable-intel LIBDRM_DEPENDENCIES += libpciaccess else LIBDRM_CONF_OPTS += --disable-intel endif ifeq ($(BR2_PACKAGE_LIBDRM_RADEON),y) LIBDRM_CONF_OPTS += --enable-radeon else LIBDRM_CONF_OPTS += --disable-radeon endif ifeq ($(BR2_PACKAGE_LIBDRM_AMDGPU),y) LIBDRM_CONF_OPTS += --enable-amdgpu else LIBDRM_CONF_OPTS += --disable-amdgpu endif ifeq ($(BR2_PACKAGE_LIBDRM_NOUVEAU),y) LIBDRM_CONF_OPTS += --enable-nouveau else LIBDRM_CONF_OPTS += --disable-nouveau endif ifeq ($(BR2_PACKAGE_LIBDRM_VMWGFX),y) LIBDRM_CONF_OPTS += --enable-vmwgfx else LIBDRM_CONF_OPTS += --disable-vmwgfx endif ifeq ($(BR2_PACKAGE_LIBDRM_OMAP),y) LIBDRM_CONF_OPTS += --enable-omap-experimental-api else LIBDRM_CONF_OPTS += --disable-omap-experimental-api endif ifeq ($(BR2_PACKAGE_LIBDRM_EXYNOS),y) LIBDRM_CONF_OPTS += --enable-exynos-experimental-api else LIBDRM_CONF_OPTS += --disable-exynos-experimental-api endif ifeq ($(BR2_PACKAGE_LIBDRM_FREEDRENO),y) LIBDRM_CONF_OPTS += --enable-freedreno else LIBDRM_CONF_OPTS += --disable-freedreno endif ifeq ($(BR2_PACKAGE_LIBDRM_TEGRA),y) LIBDRM_CONF_OPTS += --enable-tegra-experimental-api else LIBDRM_CONF_OPTS += --disable-tegra-experimental-api endif ifeq ($(BR2_PACKAGE_LIBDRM_VC4),y) LIBDRM_CONF_OPTS += --enable-vc4 else LIBDRM_CONF_OPTS += --disable-vc4 endif ifeq ($(BR2_PACKAGE_HAS_UDEV),y) LIBDRM_CONF_OPTS += --enable-udev LIBDRM_DEPENDENCIES += udev else LIBDRM_CONF_OPTS += --disable-udev endif ifeq ($(BR2_PACKAGE_VALGRIND),y) LIBDRM_CONF_OPTS += --enable-valgrind LIBDRM_DEPENDENCIES += valgrind else LIBDRM_CONF_OPTS += --disable-valgrind endif ifeq ($(BR2_PACKAGE_LIBDRM_INSTALL_TESTS),y) LIBDRM_CONF_OPTS += --enable-install-test-programs endif $(eval $(autotools-package))
shibajee/buildroot
package/libdrm/libdrm.mk
mk
mit
2,505
config BR2_PACKAGE_LIBDVBCSA bool "libdvbcsa" help libdvbcsa is a free implementation of the DVB Common Scrambling Algorithm - DVB/CSA - with encryption and decryption capabilities As libdvbcsa implements a standard, it is completely legal to use it. http://www.videolan.org/developers/libdvbcsa.html
shibajee/buildroot
package/libdvbcsa/Config.in
in
mit
317
# From http://download.videolan.org/pub/videolan/libdvbcsa/1.1.0/libdvbcsa-1.1.0.tar.gz.sha256 sha256 4db78af5cdb2641dfb1136fe3531960a477c9e3e3b6ba19a2754d046af3f456d libdvbcsa-1.1.0.tar.gz # From http://download.videolan.org/pub/videolan/libdvbcsa/1.1.0/libdvbcsa-1.1.0.tar.gz.sha1 sha1 5f4640a7e93ae6494f24a881414e5c343f803365 libdvbcsa-1.1.0.tar.gz
shibajee/buildroot
package/libdvbcsa/libdvbcsa.hash
hash
mit
355
################################################################################ # # libdvbcsa # ################################################################################ LIBDVBCSA_VERSION = 1.1.0 LIBDVBCSA_SITE = http://get.videolan.org/libdvbcsa/$(LIBDVBCSA_VERSION) LIBDVBCSA_LICENSE = GPLv2+ LIBDVBCSA_LICENSE_FILES = COPYING LIBDVBCSA_INSTALL_STAGING = YES ifeq ($(BR2_X86_CPU_HAS_MMX),y) LIBDVBCSA_CONF_OPTS += --enable-mmx else LIBDVBCSA_CONF_OPTS += --disable-mmx endif ifeq ($(BR2_X86_CPU_HAS_SSE2),y) LIBDVBCSA_CONF_OPTS += --enable-sse2 else LIBDVBCSA_CONF_OPTS += --disable-sse2 endif ifeq ($(BR2_POWERPC_CPU_HAS_ALTIVEC),y) LIBDVBCSA_CONF_OPTS += --enable-altivec else LIBDVBCSA_CONF_OPTS += --disable-altivec endif $(eval $(autotools-package))
shibajee/buildroot
package/libdvbcsa/libdvbcsa.mk
mk
mit
770
config BR2_PACKAGE_LIBDVBPSI bool "libdvbpsi" depends on BR2_TOOLCHAIN_HAS_THREADS help libdvbpsi is a simple library designed for decoding and generation of MPEG TS and DVB PSI tables according to standards ISO/IEC 13818 and ITU-T H.222.0. http://www.videolan.org/developers/libdvbpsi.html comment "libdvbpsi needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libdvbpsi/Config.in
in
mit
396
# From http://download.videolan.org/pub/libdvbpsi/1.3.0/libdvbpsi-1.3.0.tar.bz2.md5 md5 2b217039a1299000c39423441f77e76a libdvbpsi-1.3.0.tar.bz2 # From http://download.videolan.org/pub/libdvbpsi/1.3.0/libdvbpsi-1.3.0.tar.bz2.sha256 sha256 a2fed1d11980662f919bbd1f29e2462719e0f6227e1a531310bd5a706db0a1fe libdvbpsi-1.3.0.tar.bz2
shibajee/buildroot
package/libdvbpsi/libdvbpsi.hash
hash
mit
328
################################################################################ # # libdvbpsi # ################################################################################ LIBDVBPSI_VERSION = 1.3.0 LIBDVBPSI_SITE = http://download.videolan.org/pub/libdvbpsi/$(LIBDVBPSI_VERSION) LIBDVBPSI_SOURCE = libdvbpsi-$(LIBDVBPSI_VERSION).tar.bz2 LIBDVBPSI_LICENSE = LGPLv2.1+ LIBDVBPSI_LICENSE_FILES = COPYING LIBDVBPSI_INSTALL_STAGING = YES $(eval $(autotools-package))
shibajee/buildroot
package/libdvbpsi/libdvbpsi.mk
mk
mit
470
config BR2_PACKAGE_LIBDVBSI bool "libdvbsi" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR depends on BR2_TOOLCHAIN_HAS_THREADS help C++ parsing library for Service Information (SI) in DVB systems. With libdvbsi++ you can convert raw DVB service information to a set of C++ objects, removing the need to parse data manually. http://www.saftware.de/ comment "libdvbsi++ needs a toolchain w/ C++, wchar, threads" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libdvbsi/Config.in
in
mit
524
# From http://www.saftware.de/libdvbsi++/libdvbsi++-0.3.7.tar.bz2.md5 md5 7eb50352c06b17c499a6d51e18e99ec5 libdvbsi++-0.3.7.tar.bz2
shibajee/buildroot
package/libdvbsi/libdvbsi.hash
hash
mit
132
################################################################################ # # libdvbsi # ################################################################################ LIBDVBSI_VERSION = 0.3.7 LIBDVBSI_SOURCE = libdvbsi++-$(LIBDVBSI_VERSION).tar.bz2 LIBDVBSI_SITE = http://www.saftware.de/libdvbsi++ LIBDVBSI_INSTALL_STAGING = YES LIBDVBSI_LICENSE = LGPLv2.1 LIBDVBSI_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/libdvbsi/libdvbsi.mk
mk
mit
432
config BR2_PACKAGE_LIBDVDCSS bool "libdvdcss" help libdvdcss is a simple library designed for accessing DVDs like a block device without having to bother about the decryption. http://www.videolan.org/developers/libdvdcss.html
shibajee/buildroot
package/libdvdcss/Config.in
in
mit
238
# From http://download.videolan.org/pub/videolan/libdvdcss/1.4.0/libdvdcss-1.4.0.tar.bz2.sha256 sha256 2089375984800df29a4817b37f3123c1706723342d6dab4d0a8b75c25c2c845a libdvdcss-1.4.0.tar.bz2
shibajee/buildroot
package/libdvdcss/libdvdcss.hash
hash
mit
192
################################################################################ # # libdvdcss # ################################################################################ LIBDVDCSS_VERSION = 1.4.0 LIBDVDCSS_SOURCE = libdvdcss-$(LIBDVDCSS_VERSION).tar.bz2 LIBDVDCSS_SITE = http://www.videolan.org/pub/videolan/libdvdcss/$(LIBDVDCSS_VERSION) LIBDVDCSS_INSTALL_STAGING = YES LIBDVDCSS_LICENSE = GPLv2+ LIBDVDCSS_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/libdvdcss/libdvdcss.mk
mk
mit
471
Fix misdetection while nios2 cross-compile Signed-off-bye: Waldemar Brodkorb <wbx@openadk.org> diff -Nur libdvdnav-5.0.3.orig/configure.ac libdvdnav-5.0.3/configure.ac --- libdvdnav-5.0.3.orig/configure.ac 2015-01-27 16:57:43.000000000 +0100 +++ libdvdnav-5.0.3/configure.ac 2016-07-31 11:48:09.312947473 +0200 @@ -73,7 +73,7 @@ [*mingw32* | *cygwin*], [AC_CHECK_FUNCS(gettimeofday)]) AS_CASE([$host], - [*os2*], [LDFLAGS="$LDFLAGS -no-undefined"]) + [*-os2*], [LDFLAGS="$LDFLAGS -no-undefined"]) dnl --------------------------------------------- dnl threads
shibajee/buildroot
package/libdvdnav/0001-do-not-match-nios2-as-os2.patch
patch
mit
574
config BR2_PACKAGE_LIBDVDNAV bool "libdvdnav" depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_LIBDVDREAD help libdvdnav is a library that allows easy use of sophisticated DVD navigation features such as DVD menus, multiangle playback and even interactive DVD games. http://www.mplayerhq.hu comment "libdvdnav needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libdvdnav/Config.in
in
mit
404
# From http://download.videolan.org/pub/videolan/libdvdnav/5.0.3/libdvdnav-5.0.3.tar.bz2.sha256 sha256 5097023e3d2b36944c763f1df707ee06b19dc639b2b68fb30113a5f2cbf60b6d libdvdnav-5.0.3.tar.bz2
shibajee/buildroot
package/libdvdnav/libdvdnav.hash
hash
mit
192
################################################################################ # # libdvdnav # ################################################################################ LIBDVDNAV_VERSION = 5.0.3 LIBDVDNAV_SOURCE = libdvdnav-$(LIBDVDNAV_VERSION).tar.bz2 LIBDVDNAV_SITE = http://www.videolan.org/pub/videolan/libdvdnav/$(LIBDVDNAV_VERSION) LIBDVDNAV_INSTALL_STAGING = YES LIBDVDNAV_DEPENDENCIES = libdvdread host-pkgconf LIBDVDNAV_LICENSE = GPLv2+ LIBDVDNAV_LICENSE_FILES = COPYING # 0001-do-not-match-nios2-as-os2.patch LIBDVDNAV_AUTORECONF = YES $(eval $(autotools-package))
shibajee/buildroot
package/libdvdnav/libdvdnav.mk
mk
mit
586
config BR2_PACKAGE_LIBDVDREAD bool "libdvdread" select BR2_PACKAGE_LIBDVDCSS help libdvdread provides a simple foundation for reading DVD-Video images. http://www.mplayerhq.hu/MPlayer/releases/dvdnav/
shibajee/buildroot
package/libdvdread/Config.in
in
mit
214
# From http://download.videolan.org/pub/videolan/libdvdread/5.0.0/libdvdread-5.0.3.tar.bz2.sha256 sha256 321cdf2dbdc83c96572bc583cd27d8c660ddb540ff16672ecb28607d018ed82b libdvdread-5.0.3.tar.bz2
shibajee/buildroot
package/libdvdread/libdvdread.hash
hash
mit
195
################################################################################ # # libdvdread # ################################################################################ LIBDVDREAD_VERSION = 5.0.3 LIBDVDREAD_SOURCE = libdvdread-$(LIBDVDREAD_VERSION).tar.bz2 LIBDVDREAD_SITE = http://www.videolan.org/pub/videolan/libdvdread/$(LIBDVDREAD_VERSION) LIBDVDREAD_INSTALL_STAGING = YES LIBDVDREAD_LICENSE = GPLv2+ LIBDVDREAD_LICENSE_FILES = COPYING LIBDVDREAD_CONF_OPTS = --with-libdvdcss LIBDVDREAD_DEPENDENCIES = libdvdcss host-pkgconf $(eval $(autotools-package))
shibajee/buildroot
package/libdvdread/libdvdread.mk
mk
mit
571
configure: use pkg-config to find openssl The current check is broken for static linking, since the openssl libs need to be linked against libz, which is missing in the link command when doing a static build: http://autobuild.buildroot.net/results/787/787cd9992b00d8008641af208f5fb7c4afb40b06/build-end.log Instead of trying convoluted tests to decide what additional libs are required, just delegate this job to pkg-config. At the same time, fix a few legacy, deprecated constructs in favour of their new counterparts. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> --- Upstream status: submitted, but no public mailing list (sent to the mail documented in: http://www.antisip.com/doc/exosip2/index.html ) diff -durN libeXosip2-3.6.0.orig/configure.in libeXosip2-3.6.0/configure.in --- libeXosip2-3.6.0.orig/configure.in 2014-06-22 23:58:26.549487427 +0200 +++ libeXosip2-3.6.0/configure.in 2014-06-22 23:59:12.822008499 +0200 @@ -44,7 +44,7 @@ AC_CONFIG_AUX_DIR(scripts) AC_CONFIG_HEADERS(config.h) AM_INIT_AUTOMAKE($PACKAGE, $VERSION) -AM_ACLOCAL_INCLUDE(scripts) +AC_CONFIG_MACRO_DIR([scripts]) AC_CANONICAL_HOST @@ -371,13 +371,15 @@ AC_ARG_ENABLE(openssl, [ --enable-openssl enable support for openssl], - enable_openssl=$enableval,enable_openssl="yes") + enable_openssl=$enableval,enable_openssl="auto") -if test "$enable_openssl" = "yes" ; then - AC_CHECK_HEADERS(openssl/ssl.h) - AC_CHECK_LIB(ssl,SSL_CTX_new,[EXOSIP_LIB="$EXOSIP_LIB -lssl"]) - AC_CHECK_LIB(crypto,X509_get_issuer_name,[EXOSIP_LIB="$EXOSIP_LIB -lcrypto"]) -fi +AS_IF([test "$enable_openssl" = "yes" -o "$enable_openssl" = "auto"], + [PKG_CHECK_MODULES([SSL], [openssl], + [EXOSIP_LIB="$EXOSIP_LIB $SSL_LIBS"], + [AS_IF([test "$enable_openssl" = "yes"], + [AC_MSG_ERROR([can not find openssl])]) + ]) + ]) AC_ARG_ENABLE(srvrec, [ --enable-srvrec enable support for SRV records DNS queries (yes) ], diff -durN build/libeXosip2-3.6.0.orig/Makefile.am build/libeXosip2-3.6.0/Makefile.am --- libeXosip2-3.6.0.orig/Makefile.am 2014-06-23 00:14:25.328226745 +0200 +++ libeXosip2-3.6.0/Makefile.am 2014-06-23 00:14:38.296371236 +0200 @@ -1,4 +1,4 @@ - +ACLOCAL_AMFLAGS = -I scripts EXTRA_DIST = README autogen.sh SUBDIRS = scripts platform src include tools help
shibajee/buildroot
package/libeXosip2/0001-use-pkg-config-to-detect-openssl.patch
patch
mit
2,405
config BR2_PACKAGE_LIBEXOSIP2 bool "libeXosip2" depends on BR2_USE_MMU # fork() select BR2_PACKAGE_LIBOSIP2 help eXosip is a library that hides the complexity of using the SIP protocol for mutlimedia session establishement. This protocol is mainly to be used by VoIP telephony applications (endpoints or conference server) but might be also usefull for any application that wish to establish sessions like multiplayer games. eXosip is based in libosip. http://savannah.nongnu.org/projects/exosip/
shibajee/buildroot
package/libeXosip2/Config.in
in
mit
526
# Locally calculated sha256 91da1a084c9ab663afe04b493342e075ad59ac54a1af011c7f2ba4543a923564 libeXosip2-3.6.0.tar.gz
shibajee/buildroot
package/libeXosip2/libeXosip2.hash
hash
mit
117
################################################################################ # # libexosip2 # ################################################################################ LIBEXOSIP2_VERSION = 3.6.0 LIBEXOSIP2_SITE = http://download.savannah.gnu.org/releases/exosip LIBEXOSIP2_INSTALL_STAGING = YES LIBEXOSIP2_LICENSE = GPLv2+ LIBEXOSIP2_LICENSE_FILES = COPYING LIBEXOSIP2_DEPENDENCIES = host-pkgconf libosip2 # We are touching configure.in and Makefile.am with one of our patches LIBEXOSIP2_AUTORECONF = YES ifeq ($(BR2_arc),y) # toolchain __arc__ define conflicts with libeXosip2 source LIBEXOSIP2_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -U__arc__" endif ifeq ($(BR2_PACKAGE_C_ARES),y) LIBEXOSIP2_DEPENDENCIES += c-ares endif ifeq ($(BR2_PACKAGE_OPENSSL),y) LIBEXOSIP2_DEPENDENCIES += openssl LIBEXOSIP2_CONF_OPTS += --enable-openssl else LIBEXOSIP2_CONF_OPTS += --disable-openssl endif LIBEXOSIP2_CONF_OPTS += \ --enable-mt=$(if $(BR2_TOOLCHAIN_HAS_THREADS),yes,no) $(eval $(autotools-package))
shibajee/buildroot
package/libeXosip2/libeXosip2.mk
mk
mit
1,011
config BR2_PACKAGE_LIBEBML bool "libebml" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR help Access library for the EBML (Extensible Binary Meta Language, a binary derivative of XML) format. http://matroska.org comment "libebml needs a toolchain w/ C++, wchar" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
shibajee/buildroot
package/libebml/Config.in
in
mit
341
# Locally calculated sha256 35fb44daa41961f94a0ac1b8f06801e88cc9bf2ad6f562ced8ab7c1f1a875499 libebml-1.3.3.tar.bz2
shibajee/buildroot
package/libebml/libebml.hash
hash
mit
115
################################################################################ # # libebml # ################################################################################ LIBEBML_VERSION = 1.3.3 LIBEBML_SOURCE = libebml-$(LIBEBML_VERSION).tar.bz2 LIBEBML_SITE = http://dl.matroska.org/downloads/libebml LIBEBML_INSTALL_STAGING = YES LIBEBML_LICENSE = LGPLv2.1+ LIBEBML_LICENSE_FILES = LICENSE.LGPL $(eval $(autotools-package))
shibajee/buildroot
package/libebml/libebml.mk
mk
mit
434
config BR2_PACKAGE_LIBEBUR128 bool "libebur128" # build system has no support to disable shared linking # leading to a build error with a static-only toolchain depends on !BR2_STATIC_LIBS select BR2_PACKAGE_SPEEX help libebur128 is a library that implements the EBU R 128 standard for loudness normalization. https://github.com/jiixyj/libebur128 comment "libebur128 needs a toolchain w/ dynamic library" depends on BR2_STATIC_LIBS
shibajee/buildroot
package/libebur128/Config.in
in
mit
449
################################################################################ # # libebur128 # ################################################################################ LIBEBUR128_VERSION = v1.1.0 LIBEBUR128_SITE = $(call github,jiixyj,libebur128,$(LIBEBUR128_VERSION)) LIBEBUR128_LICENSE = MIT LIBEBUR128_LICENSE_FILES = COPYING LIBEBUR128_INSTALL_STAGING = YES LIBEBUR128_DEPENDENCIES = speex $(eval $(cmake-package))
shibajee/buildroot
package/libebur128/libebur128.mk
mk
mit
432
configure: on Linux, the BSD functions require linking against libbsd Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> (Rebased against 20150325-3.1) Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> diff -durN libedit-20130712-3.1.orig/configure.ac libedit-20130712-3.1/configure.ac --- libedit-20130712-3.1.orig/configure.ac 2013-07-12 20:39:22.000000000 +0200 +++ libedit-20130712-3.1/configure.ac 2013-07-28 23:35:35.012676469 +0200 @@ -117,6 +117,10 @@ #AC_FUNC_REALLOC AC_TYPE_SIGNAL AC_FUNC_STAT + +# Search for libbsd for *vis functions +AC_CHECK_LIB([bsd], [vis]) + AC_CHECK_FUNCS([endpwent isascii memchr memset re_comp regcomp strcasecmp strchr strcspn strdup strerror strrchr strstr strtol issetugid wcsdup strlcpy strlcat fgetln vis strvis strunvis __secure_getenv secure_getenv]) # strlcpy
shibajee/buildroot
package/libedit/0001-check-bsd-functions-in-libbsd.patch
patch
mit
824
config BR2_PACKAGE_LIBEDIT bool "libedit" depends on BR2_USE_WCHAR depends on BR2_USE_MMU # fork() select BR2_PACKAGE_NCURSES help The editline library (from BSD) provides generic line editing and history functions. It slightly resembles GNU readline. The official homepage is at: http://ftp.netbsd.org/pub/NetBSD/NetBSD-release-5-0/src/lib/libedit/ Jess Thrysoee maintains an autotoolified package, which we use in Buildroot as it makes it much simpler than using the upstream sources which require pmake. http://www.thrysoee.dk/editline comment "libedit needs a toolchain w/ wchar" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR
shibajee/buildroot
package/libedit/Config.in
in
mit
668
# Locally computed sha256 c88a5e4af83c5f40dda8455886ac98923a9c33125699742603a88a0253fcc8c5 libedit-20150325-3.1.tar.gz
shibajee/buildroot
package/libedit/libedit.hash
hash
mit
119
################################################################################ # # libedit # ################################################################################ LIBEDIT_VERSION = 20150325-3.1 LIBEDIT_SITE = http://www.thrysoee.dk/editline LIBEDIT_INSTALL_STAGING = YES LIBEDIT_DEPENDENCIES = ncurses LIBEDIT_LICENSE = BSD-3c LIBEDIT_LICENSE_FILES = COPYING # We're patching configure.ac LIBEDIT_AUTORECONF = YES # Needed for autoreconf to work properly define LIBEDIT_FIXUP_M4_DIR mkdir $(@D)/m4 endef LIBEDIT_POST_EXTRACT_HOOKS += LIBEDIT_FIXUP_M4_DIR # Doesn't really support !wchar, but support is disabled otherwise LIBEDIT_CONF_OPTS += --enable-widec # musl is ISO 10646 compliant but doesn't define __STDC_ISO_10646__, # so let's define it manually ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y) LIBEDIT_CONF_OPTS += CFLAGS="$(TARGET_CFLAGS) -D__STDC_ISO_10646__=201103L" endif # Note: libbsd required for *vis functions, but works only with a toolchain # with __progname; otherwise, some features are disabled, as if libbsd was # missing entirely. ifeq ($(BR2_PACKAGE_LIBBSD),y) LIBEDIT_DEPENDENCIES += libbsd endif $(eval $(autotools-package))
shibajee/buildroot
package/libedit/libedit.mk
mk
mit
1,164
config BR2_PACKAGE_LIBEE bool "libee" select BR2_PACKAGE_LIBESTR help An Event Expression Library inspired by CEE. CEE is an upcoming standard used to describe network events in a number of normalized formats. It's goal is to unify they currently many different representations that exist in the industry. The core idea of libee is to provide a small but hopefully convenient API layer above the CEE standard. However, CEE is not finished. At the time of this writing, CEE is under heavy development and even some of its core data structures (like the data dictionary and taxonmy) have not been fully specified. http://www.libee.org
shibajee/buildroot
package/libee/Config.in
in
mit
675
# From http://www.libee.org/download/libee-0-4-1/ md5 7bbf4160876c12db6193c06e2badedb2 libee-0.4.1.tar.gz
shibajee/buildroot
package/libee/libee.hash
hash
mit
106
################################################################################ # # libee # ################################################################################ LIBEE_VERSION = 0.4.1 LIBEE_SITE = http://www.libee.org/download/files/download LIBEE_LICENSE = LGPLv2.1+ LIBEE_LICENSE_FILES = COPYING LIBEE_DEPENDENCIES = libestr host-pkgconf LIBEE_INSTALL_STAGING = YES LIBEE_MAKE = $(MAKE1) $(eval $(autotools-package))
shibajee/buildroot
package/libee/libee.mk
mk
mit
434
config BR2_PACKAGE_LIBENCA bool "libenca" help Extremely Naive Charset Analyser http://cihar.com/software/enca/
shibajee/buildroot
package/libenca/Config.in
in
mit
121