code
string
repo_name
string
path
string
language
string
license
string
size
int64
config BR2_PACKAGE_LIBIQRF bool "libiqrf" depends on BR2_TOOLCHAIN_HAS_THREADS # libusb select BR2_PACKAGE_LIBUSB help This library implement specific protocol which is used for communicating with iqrf devices (http://iqrf.org) over usb. For usb access is used libusb library. https://github.com/nandra/libiqrf comment "libiqrf needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libiqrf/Config.in
in
mit
418
# Locally calculated sha256 8111031dd9dd6093a1927eb32dd7476fe22cfee9190043aa8e4c88003c104b16 libiqrf-v0.1.2.tar.gz
shibajee/buildroot
package/libiqrf/libiqrf.hash
hash
mit
116
################################################################################ # # libiqrf # ################################################################################ LIBIQRF_VERSION = v0.1.2 LIBIQRF_SITE = $(call github,nandra,libiqrf,$(LIBIQRF_VERSION)) LIBIQRF_INSTALL_STAGING = YES LIBIQRF_DEPENDENCIES = libusb LIBIQRF_LICENSE = LGPLv2.1+ $(eval $(cmake-package))
shibajee/buildroot
package/libiqrf/libiqrf.mk
mk
mit
380
config BR2_PACKAGE_LIBISCSI bool "libiscsi" help Libiscsi is a client-side library to implement the iSCSI protocol that can be used to access resource of an iSCSI Target. The library is fully async with regards to iscsi commands and scsi tasks, but a sync layer is also provided for ease of use for simpler applications. https://github.com/sahlberg/libiscsi (no proper homepage)
shibajee/buildroot
package/libiscsi/Config.in
in
mit
402
# Locally computed: sha256 26aa5583053d4fe0d4686f76a76c216c7dce00130f008e652ece305b88758ff1 libiscsi-1.15.0.tar.gz
shibajee/buildroot
package/libiscsi/libiscsi.hash
hash
mit
116
################################################################################ # # libiscsi # ################################################################################ LIBISCSI_VERSION = 1.15.0 LIBISCSI_SITE = https://sites.google.com/site/libiscsitarballs/libiscsitarballs LIBISCSI_LICENSE = GPLv2+, LGPLv2.1+ LIBISCSI_LICENSE_FILES = COPYING LICENCE-GPL-2.txt LICENCE-LGPL-2.1.txt LIBISCSI_INSTALL_STAGING = YES # Force libiscsi to use gcc as the linker, otherwise it uses directly # ld, which doesn't work for certain architectures. LIBISCSI_CONF_ENV = LD="$(TARGET_CC)" $(eval $(autotools-package))
shibajee/buildroot
package/libiscsi/libiscsi.mk
mk
mit
615
# locally computed hash sha256 240fd398da741669bf3c90366f58452ea59041cacc741a489b99f2f6a0bad052 jpegsrc.v9b.tar.gz
shibajee/buildroot
package/libjpeg/libjpeg.hash
hash
mit
115
################################################################################ # # libjpeg # ################################################################################ LIBJPEG_VERSION = 9b LIBJPEG_SITE = http://www.ijg.org/files LIBJPEG_SOURCE = jpegsrc.v$(LIBJPEG_VERSION).tar.gz LIBJPEG_LICENSE = jpeg-license (BSD-3c-like) LIBJPEG_LICENSE_FILES = README LIBJPEG_INSTALL_STAGING = YES define LIBJPEG_REMOVE_USELESS_TOOLS rm -f $(addprefix $(TARGET_DIR)/usr/bin/,cjpeg djpeg jpegtran rdjpgcom wrjpgcom) endef LIBJPEG_POST_INSTALL_TARGET_HOOKS += LIBJPEG_REMOVE_USELESS_TOOLS $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/libjpeg/libjpeg.mk
mk
mit
652
Fix the broken libjson makefile. Signed-off-by: Simon Dawson <spdawson@gmail.com> diff -Nurp a/makefile b/makefile --- a/makefile 2012-05-30 10:15:42.000000000 +0100 +++ b/makefile 2013-03-27 18:45:34.814670534 +0000 @@ -170,7 +170,7 @@ include_path = $(prefix)/$(includedi # Usage check ifdef CXXFLAGS ifdef BUILD_TYPE - $(error CXXFLAGS and BUILD_TYPE are mutually exclusive) +$(error CXXFLAGS and BUILD_TYPE are mutually exclusive) endif endif
shibajee/buildroot
package/libjson/0001-fix-broken-makefile.patch
patch
mit
460
config BR2_PACKAGE_LIBJSON bool "libjson" depends on BR2_INSTALL_LIBSTDCPP help A JSON reader and writer which is super-efficient and usually runs circles around other JSON libraries. http://sourceforge.net/projects/libjson/ comment "libjson needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP
shibajee/buildroot
package/libjson/Config.in
in
mit
317
# Locally computed: sha256 07267a3951038ee2e02d26cc41bf8e275668c38f751240d3e78dc979182e7376 libjson_7.6.1.zip
shibajee/buildroot
package/libjson/libjson.hash
hash
mit
112
################################################################################ # # libjson # ################################################################################ LIBJSON_VERSION = 7.6.1 LIBJSON_SITE = http://downloads.sourceforge.net/project/libjson LIBJSON_SOURCE = libjson_$(LIBJSON_VERSION).zip LIBJSON_INSTALL_STAGING = YES LIBJSON_LICENSE = BSD-2c LIBJSON_LICENSE_FILES = License.txt LIBJSON_CXXFLAGS = $(TARGET_CFLAGS) -DNDEBUG ifeq ($(BR2_STATIC_LIBS),y) LIBJSON_MAKE_OPTS += SHARED=0 else LIBJSON_MAKE_OPTS += SHARED=1 LIBJSON_CXXFLAGS += -fPIC endif LIBJSON_MAKE_OPTS += BUILD_TYPE= CXXFLAGS="$(LIBJSON_CXXFLAGS)" define LIBJSON_EXTRACT_CMDS $(UNZIP) -d $(@D) $(DL_DIR)/$(LIBJSON_SOURCE) mv $(@D)/libjson/* $(@D) $(RM) -r $(@D)/libjson $(SED) '/ldconfig/d' $(@D)/makefile endef define LIBJSON_BUILD_CMDS mkdir -p $(@D)/Objects_$(if $(BR2_STATIC_LIBS),static,shared) \ $(@D)/_internal/Source/Dependencies $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \ $(LIBJSON_MAKE_OPTS) -C $(@D) endef define LIBJSON_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \ $(LIBJSON_MAKE_OPTS) prefix=$(TARGET_DIR)/usr install -C $(@D) endef define LIBJSON_INSTALL_STAGING_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \ $(LIBJSON_MAKE_OPTS) prefix=$(STAGING_DIR)/usr install -C $(@D) endef $(eval $(generic-package))
shibajee/buildroot
package/libjson/libjson.mk
mk
mit
1,387
config BR2_PACKAGE_LIBKSBA bool "libksba" depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error select BR2_PACKAGE_LIBGPG_ERROR help CMS and X.509 library https://www.gnupg.org/related_software/libksba/
shibajee/buildroot
package/libksba/Config.in
in
mit
225
# Locally calculated after checking pgp signature sha256 f6c2883cebec5608692d8730843d87f237c0964d923bbe7aa89c05f20558ad4f libksba-1.3.4.tar.bz2
shibajee/buildroot
package/libksba/libksba.hash
hash
mit
144
################################################################################ # # libksba # ################################################################################ LIBKSBA_VERSION = 1.3.4 LIBKSBA_SOURCE = libksba-$(LIBKSBA_VERSION).tar.bz2 LIBKSBA_SITE = ftp://ftp.gnupg.org/gcrypt/libksba LIBKSBA_LICENSE = LGPLv3+ or GPLv2+ (library, headers), GPLv3+ (manual, tests, build system) LIBKSBA_LICENSE_FILES = AUTHORS COPYING COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv3 LIBKSBA_INSTALL_STAGING = YES LIBKSBA_DEPENDENCIES = libgpg-error LIBKSBA_CONF_OPTS = --with-gpg-error-prefix=$(STAGING_DIR)/usr $(eval $(autotools-package))
shibajee/buildroot
package/libksba/libksba.mk
mk
mit
638
From 128aeb54593d4dd8ff2403eb2dd7d6cd596717d2 Mon Sep 17 00:00:00 2001 From: Willem Toorop <willem@nlnetlabs.nl> Date: Tue, 28 Jan 2014 11:06:38 +0100 Subject: [PATCH] bugfix #548: Double free for answers > 4096 in ldns_resolver_send_pkt. Thank you sunthought@gmail.com [Backport from upstream commit 2853eb352b4461e98f2926ace4ea3810cedf4167] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> --- resolver.c | 1 + 1 file changed, 1 insertion(+) diff --git a/resolver.c b/resolver.c index 16efc90..1474dc8 100644 --- a/resolver.c +++ b/resolver.c @@ -1117,6 +1117,7 @@ ldns_resolver_send_pkt(ldns_pkt **answer, ldns_resolver *r, ldns_pkt_set_edns_udp_size(query_pkt , 4096); ldns_pkt_free(answer_pkt); + answer_pkt = NULL; /* Nameservers should not become * unreachable because fragments are * dropped (network error). We might -- 2.6.4
shibajee/buildroot
package/libldns/0001-bugfix-548-Double-free-for-answers-4096.patch
patch
mit
892
From 055ea6aef77058f651b5571d98d2d9458821a977 Mon Sep 17 00:00:00 2001 From: Matthijs Mekking <matthijs@nlnetlabs.nl> Date: Wed, 18 Jun 2014 09:55:17 +0200 Subject: [PATCH] whitespace bug in ldns-read-zone [Backport from upstream commit d6037a22fbedb8ef3a22de4107e4eaa36840865b] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> --- rr.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/rr.c b/rr.c index cfee170..e530702 100644 --- a/rr.c +++ b/rr.c @@ -670,6 +670,18 @@ ldns_rr_new_question_frm_str(ldns_rr **newrr, const char *str, true); } +static int +ldns_rr_is_whitespace_line(char* line, int line_len) +{ + int i; + for (i = 0; i < line_len; i++) { + if (!isspace((int)line[i])) { + return 0; + } + } + return 1; +} + ldns_status ldns_rr_new_frm_fp(ldns_rr **newrr, FILE *fp, uint32_t *ttl, ldns_rdf **origin, ldns_rdf **prev) { @@ -745,6 +757,9 @@ ldns_rr_new_frm_fp_l(ldns_rr **newrr, FILE *fp, uint32_t *default_ttl, ldns_rdf s = LDNS_STATUS_SYNTAX_TTL; } else if (strncmp(line, "$INCLUDE", 8) == 0) { s = LDNS_STATUS_SYNTAX_INCLUDE; + } else if (ldns_rr_is_whitespace_line(line, size)) { + LDNS_FREE(line); + return LDNS_STATUS_SYNTAX_EMPTY; } else { if (origin && *origin) { s = ldns_rr_new_frm_str(&rr, (const char*) line, ttl, *origin, prev); -- 2.6.4
shibajee/buildroot
package/libldns/0002-whitespace-bug-in-ldns-read-zone.patch
patch
mit
1,361
From d8a3da12be085fbc92e3d4d4d084c328fc37485a Mon Sep 17 00:00:00 2001 From: Willem Toorop <willem@nlnetlabs.nl> Date: Thu, 27 Nov 2014 16:21:54 +0100 Subject: [PATCH] let doxyparse output manpage generation issues [Backport from upstream commit 168ee09a4bf184947798c3ee3ac99b6651470d64, fixes the build with Perl 5.22.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> --- doc/doxyparse.pl | 45 ++++++++++++++++++++++++++++++++++++++------- 1 file changed, 38 insertions(+), 7 deletions(-) diff --git a/doc/doxyparse.pl b/doc/doxyparse.pl index 96a1732..a09b2e8 100755 --- a/doc/doxyparse.pl +++ b/doc/doxyparse.pl @@ -57,10 +57,15 @@ This manpage was automaticly generated from the ldns source code by use of Doxygen and some perl. "; -getopts("m:",\%options); +getopts("em:",\%options); # if -m manpage file is given process that file # parse the file which tells us what manpages go together my $functions, $see_also; +my $i = -1; +my $report_errors = defined $options{'e'}; +my $errors = 0; +my %unique; + if (defined $options{'m'}) { # process open(MAN, "<$options{'m'}") or die "Cannot open $options{'m'}"; @@ -68,18 +73,35 @@ if (defined $options{'m'}) { # func1, func2, .. | see_also1, see_also2, ... while(<MAN>) { chomp; + $i += 1; if (/^#/) { next; } if (/^$/) { next; } - ($functions, $see_also) = split /[\t ]*\|[\t ]*/, $_; - #print "{$functions}\n"; - #print "{$see_also}\n"; + my @parts = split /[\t ]*\|[\t ]*/, $_; + $functions = shift @parts; + $see_also = join ', ', @parts; + print "{$functions}\n"; + print "{$see_also}\n"; my @funcs = split /[\t ]*,[\t ]*/, $functions; my @also = split /[\t ]*,[\t ]*/, $see_also; $manpages{$funcs[0]} = \@funcs; $see_also{$funcs[0]} = \@also; + foreach (@funcs) { + if ($unique{$_}) { + push $unique{$_}, ($i,); + } else { + $unique{$_} = [$i]; + } + } #print "[", $funcs[0], "]\n"; } close(MAN); + while (($func, $lines) = each %unique ) { + if (scalar @$lines > 1) { + print STDERR "$func in function_manpages on lines: " + . join(", ",@$lines) . "\n" if $report_errors; + $errors += 1; + } + } } else { print "Need -m file to process the .h files\n"; exit 1; @@ -95,7 +117,7 @@ mkdir "doc/man"; mkdir "doc/man/man$MAN_SECTION"; $state = 0; -my $i; +$i = 0; my @lines = <STDIN>; my $max = @lines; @@ -273,7 +295,7 @@ foreach (keys %manpages) { print MAN $MAN_MIDDLE; - if (defined(@$also)) { + if (@$also) { print MAN "\n.SH SEE ALSO\n\\fI"; print MAN join "\\fR, \\fI", @$also; print MAN "\\fR.\nAnd "; @@ -290,7 +312,7 @@ foreach (keys %manpages) { # create symlinks chdir("$BASE/man$MAN_SECTION"); foreach (@$name) { - print STDERR $_,"\n"; + print STDOUT $_,"\n"; my $new_file = $_ . "." . $MAN_SECTION; if ($new_file eq $symlink_file) { next; @@ -301,3 +323,12 @@ foreach (keys %manpages) { chdir("../../.."); # and back, tricky and fragile... close(MAN); } +foreach (keys %api) { + next if (/ / || /^$/); + if (not $unique{$_}) { + print STDERR "no man page for $_\n" if $report_errors; + $errors += 1; + } +} + +exit ($report_errors and $errors != 0); -- 2.6.4
shibajee/buildroot
package/libldns/0003-let-doxyparse-output-manpage-generation-issues.patch
patch
mit
3,198
From 9720f6f7fdae210aa6d87d97324abd32e103dd16 Mon Sep 17 00:00:00 2001 From: Willem Toorop <willem@nlnetlabs.nl> Date: Thu, 27 Nov 2014 16:50:33 +0100 Subject: [PATCH] Comment out debugging remnants [Backport from upstream commit a0a943d504debb05ce4d62ea81c2d218a6cc8727, needed for a following patch fixing the build with Perl 5.10.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> --- doc/doxyparse.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/doxyparse.pl b/doc/doxyparse.pl index a09b2e8..3f7897f 100755 --- a/doc/doxyparse.pl +++ b/doc/doxyparse.pl @@ -79,8 +79,8 @@ if (defined $options{'m'}) { my @parts = split /[\t ]*\|[\t ]*/, $_; $functions = shift @parts; $see_also = join ', ', @parts; - print "{$functions}\n"; - print "{$see_also}\n"; + #print "{$functions}\n"; + #print "{$see_also}\n"; my @funcs = split /[\t ]*,[\t ]*/, $functions; my @also = split /[\t ]*,[\t ]*/, $see_also; $manpages{$funcs[0]} = \@funcs; -- 2.6.4
shibajee/buildroot
package/libldns/0004-Comment-out-debugging-remnants.patch
patch
mit
1,011
config BR2_PACKAGE_LIBLDNS bool "libldns" help The goal of ldns is to simplify DNS programming, it supports recent RFCs like the DNSSEC documents, and allows developers to easily create software conforming to current RFCs, and experimental software for current Internet Drafts. http://www.nlnetlabs.nl/projects/ldns
shibajee/buildroot
package/libldns/Config.in
in
mit
334
# From http://www.nlnetlabs.nl/downloads/ldns/ldns-1.6.17.tar.gz.sha1 sha1 4218897b3c002aadfc7280b3f40cda829e05c9a4 ldns-1.6.17.tar.gz # Locally calculated sha256 8b88e059452118e8949a2752a55ce59bc71fa5bc414103e17f5b6b06f9bcc8cd ldns-1.6.17.tar.gz
shibajee/buildroot
package/libldns/libldns.hash
hash
mit
247
################################################################################ # # libldns # ################################################################################ LIBLDNS_VERSION = 1.6.17 LIBLDNS_SOURCE = ldns-$(LIBLDNS_VERSION).tar.gz LIBLDNS_SITE = http://www.nlnetlabs.nl/downloads/ldns LIBLDNS_LICENSE = BSD-3c LIBLDNS_LICENSE_FILES = LICENSE LIBLDNS_INSTALL_STAGING = YES LIBLDNS_CONF_OPTS = \ --without-examples \ --without-p5-dns-ldns \ --without-pyldns \ --without-pyldnsx ifeq ($(BR2_PACKAGE_OPENSSL),y) LIBLDNS_DEPENDENCIES += openssl LIBLDNS_CONF_OPTS += \ --with-ssl=$(STAGING_DIR)/usr \ --enable-dane \ --enable-ecdsa \ --enable-gost \ --enable-sha2 ifeq ($(BR2_STATIC_LIBS),y) LIBLDNS_DEPENDENCIES += host-pkgconf # missing -lz breaks configure, add it using pkgconf LIBLDNS_CONF_ENV += LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs openssl`" endif else LIBLDNS_CONF_OPTS += \ --without-ssl \ --disable-dane \ --disable-ecdsa \ --disable-gost \ --disable-sha2 endif # the linktest make target fails with static linking, and we are only # interested in the lib target anyway LIBLDNS_MAKE_OPTS = lib $(eval $(autotools-package))
shibajee/buildroot
package/libldns/libldns.mk
mk
mit
1,168
From cae4c3b80fee0f3637d70f6d33946888c8105637 Mon Sep 17 00:00:00 2001 From: Romain Naour <romain.naour@openwide.fr> Date: Sat, 13 Dec 2014 17:16:58 +0100 Subject: [PATCH 1/1] blas: don't overwrite ar options ar's rcv options get lost when AR is passed on the command line. Signed-off-by: Romain Naour <romain.naour@openwide.fr> --- blas/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blas/Makefile b/blas/Makefile index 895fd24..78cec9a 100644 --- a/blas/Makefile +++ b/blas/Makefile @@ -1,4 +1,4 @@ -AR = ar rcv +AR = ar RANLIB = ranlib HEADERS = blas.h blasp.h @@ -8,7 +8,7 @@ CFLAGS = $(OPTFLAGS) FFLAGS = $(OPTFLAGS) blas: $(FILES) $(HEADERS) - $(AR) blas.a $(FILES) + $(AR) rcv blas.a $(FILES) $(RANLIB) blas.a clean: -- 1.9.3
shibajee/buildroot
package/liblinear/0001-blas-don-t-overwrite-ar-options.patch
patch
mit
798
Makefile: add a rule to build a static library Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> diff -durN liblinear-1.96.orig/Makefile liblinear-1.96/Makefile --- liblinear-1.96.orig/Makefile 2014-11-15 07:50:23.000000000 +0100 +++ liblinear-1.96/Makefile 2014-12-14 00:23:00.135893956 +0100 @@ -16,6 +16,11 @@ fi; \ $(CXX) $${SHARED_LIB_FLAG} linear.o tron.o blas/blas.a -o liblinear.so.$(SHVER) +# Keeping blas/blas.a as a pre-requisite, to ensure all .o files are built +static-lib: linear.o tron.o blas/blas.a + $(AR) rcv liblinear.a linear.o tron.o blas/*.o + $(RANLIB) liblinear.a + train: tron.o linear.o train.c blas/blas.a $(CXX) $(CFLAGS) -o train train.c tron.o linear.o $(LIBS)
shibajee/buildroot
package/liblinear/0002-build-static-lib.patch
patch
mit
711
config BR2_PACKAGE_LIBLINEAR bool "liblinear" depends on BR2_INSTALL_LIBSTDCPP help liblinear is a linear classifier for data with millions of instances and features. http://www.csie.ntu.edu.tw/~cjlin/liblinear/ comment "liblinear needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP
shibajee/buildroot
package/liblinear/Config.in
in
mit
306
# Locally calculated sha256 fa5c12dedc76ffca12f1681de7073b03af68163c4e4be65194217c99e55a7d68 liblinear-2.1.tar.gz
shibajee/buildroot
package/liblinear/liblinear.hash
hash
mit
114
################################################################################ # # liblinear # ################################################################################ LIBLINEAR_VERSION = 2.1 LIBLINEAR_SITE = http://www.csie.ntu.edu.tw/~cjlin/liblinear LIBLINEAR_LICENSE = BSD-3c LIBLINEAR_LICENSE_FILES = COPYRIGHT LIBLINEAR_INSTALL_STAGING = YES LIBLINEAR_CFLAGS = $(TARGET_CFLAGS) ifeq ($(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),y) # $1: destination directory define LIBLINEAR_INSTALL_SHARED $(INSTALL) -m 0644 -D $(@D)/liblinear.so.3 $(1)/usr/lib/liblinear.so.3 ln -sf liblinear.so.3 $(1)/usr/lib/liblinear.so endef LIBLINEAR_CFLAGS += -fPIC endif ifeq ($(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),y) # $1: destination directory define LIBLINEAR_INSTALL_STATIC $(INSTALL) -m 0644 -D $(@D)/liblinear.a $(1)/usr/lib/liblinear.a endef endif define LIBLINEAR_BUILD_CMDS $(MAKE) $(TARGET_CONFIGURE_OPTS) CFLAGS="$(LIBLINEAR_CFLAGS)" -C $(@D) \ $(if $(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),lib) \ $(if $(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),static-lib) endef define LIBLINEAR_INSTALL_STAGING_CMDS $(INSTALL) -m 0644 -D $(@D)/linear.h $(STAGING_DIR)/usr/include/linear.h $(call LIBLINEAR_INSTALL_SHARED,$(STAGING_DIR)) $(call LIBLINEAR_INSTALL_STATIC,$(STAGING_DIR)) endef define LIBLINEAR_INSTALL_TARGET_CMDS $(call LIBLINEAR_INSTALL_SHARED,$(TARGET_DIR)) endef $(eval $(generic-package))
shibajee/buildroot
package/liblinear/liblinear.mk
mk
mit
1,427
config BR2_PACKAGE_LIBLLCP bool "libllcp" depends on BR2_TOOLCHAIN_HAS_THREADS # libusb select BR2_PACKAGE_LIBNFC help Library extending libnfc with support for Logical Link Control Protocol. https://code.google.com/p/libllcp/
shibajee/buildroot
package/libllcp/Config.in
in
mit
241
# Locally calculated sha256 4336533304a11ecb3041d211ccecd7759b7c7aad4f44037721803e2da1094d22 libllcp-05dfa8003433a7070bfd8ae02efdb0203bbf34aa.tar.gz
shibajee/buildroot
package/libllcp/libllcp.hash
hash
mit
150
################################################################################ # # libllcp # ################################################################################ LIBLLCP_VERSION = 05dfa8003433a7070bfd8ae02efdb0203bbf34aa LIBLLCP_SITE = $(call github,nfc-tools,libllcp,$(LIBLLCP_VERSION)) LIBLLCP_DEPENDENCIES = host-pkgconf libnfc # There's no ./configure in the repository, so we need to autoreconf LIBLLCP_AUTORECONF = YES LIBLLCP_INSTALL_STAGING = YES LIBLLCP_LICENSE = GPLv3+ LIBLLCP_LICENSE_FILES = COPYING # ensure graphviz isn't used LIBLLCP_CONF_ENV = ac_cv_path_DOT= $(eval $(autotools-package))
shibajee/buildroot
package/libllcp/libllcp.mk
mk
mit
621
config BR2_PACKAGE_LIBLO bool "liblo" depends on BR2_TOOLCHAIN_HAS_THREADS help liblo is an implementation of the Open Sound Control protocol for POSIX systems http://liblo.sourceforge.net/ comment "liblo needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/liblo/Config.in
in
mit
288
# From http://sourceforge.net/projects/liblo/files/liblo/0.26/ sha1 21942c8f19e9829b5842cb85352f98c49dfbc823 liblo-0.26.tar.gz md5 5351de14262560e15e7f23865293b16f liblo-0.26.tar.gz
shibajee/buildroot
package/liblo/liblo.hash
hash
mit
184
################################################################################ # # liblo # ################################################################################ LIBLO_VERSION = 0.26 LIBLO_SITE = http://downloads.sourceforge.net/project/liblo/liblo/$(LIBLO_VERSION) LIBLO_LICENSE = LGPLv2.1+ LIBLO_LICENSE_FILES = COPYING LIBLO_INSTALL_STAGING = YES $(eval $(autotools-package))
shibajee/buildroot
package/liblo/liblo.mk
mk
mit
394
diff -ur liblockfile-1.06.1/Makefile.in liblockfile-1.06.1-patched/Makefile.in --- liblockfile-1.06.1/Makefile.in 2001-03-16 22:08:33.000000000 -0600 +++ liblockfile-1.06.1-patched/Makefile.in 2007-04-11 07:18:38.000000000 -0500 @@ -60,11 +60,7 @@ install_common: install -m 644 lockfile.h maillock.h $(ROOT)$(includedir) - if [ "$(MAILGROUP)" != "" ]; then\ - install -g $(MAILGROUP) -m 2755 dotlockfile $(ROOT)$(bindir);\ - else \ - install -g root -m 755 dotlockfile $(ROOT)$(bindir); \ - fi + install -m 2755 dotlockfile $(ROOT)$(bindir);\ install -m 644 *.1 $(ROOT)$(mandir)/man1 install -m 644 *.3 $(ROOT)$(mandir)/man3
shibajee/buildroot
package/liblockfile/0001-install.patch
patch
mit
650
config BR2_PACKAGE_LIBLOCKFILE bool "liblockfile" help NFS-safe locking library.
shibajee/buildroot
package/liblockfile/Config.in
in
mit
86
# From http://snapshot.debian.org/archive/debian/20151026T153523Z/pool/main/libl/liblockfile/liblockfile_1.09-6.dsc sha256 16979eba05396365e1d6af7100431ae9d32f9bc063930d1de66298a0695f1b7f liblockfile_1.09.orig.tar.gz sha256 d45eacb7c637c16d03c777c55989d98da494ae9584a0783fe6dbf0db60fa290f liblockfile_1.09-6.debian.tar.bz2
shibajee/buildroot
package/liblockfile/liblockfile.hash
hash
mit
323
################################################################################ # # liblockfile # ################################################################################ LIBLOCKFILE_VERSION = 1.09 LIBLOCKFILE_SOURCE = liblockfile_$(LIBLOCKFILE_VERSION).orig.tar.gz LIBLOCKFILE_SITE = http://snapshot.debian.org/archive/debian/20151026T153523Z/pool/main/libl/liblockfile LIBLOCKFILE_PATCH = liblockfile_$(LIBLOCKFILE_VERSION)-6.debian.tar.bz2 LIBLOCKFILE_LICENSE = LGPLv2+, dotlockfile GPLv2+ LIBLOCKFILE_LICENSE_FILES = COPYRIGHT LIBLOCKFILE_INSTALL_STAGING = YES LIBLOCKFILE_CONF_OPTS = --mandir=/usr/share/man define LIBLOCKFILE_INSTALL_STAGING_CMDS mkdir -p $(addprefix $(STAGING_DIR)/usr/share/man/man,1 3) rm -f $(STAGING_DIR)/usr/lib/liblockfile.so $(MAKE) -C $(LIBLOCKFILE_DIR) ROOT=$(STAGING_DIR) install ln -sf liblockfile.so $(STAGING_DIR)/usr/lib/liblockfile.so.1 endef define LIBLOCKFILE_INSTALL_TARGET_CMDS cp -a $(STAGING_DIR)/usr/lib/liblockfile.so* $(TARGET_DIR)/usr/lib endef $(eval $(autotools-package))
shibajee/buildroot
package/liblockfile/liblockfile.mk
mk
mit
1,043
From b7290560082e91673431de79e1fa318c9fd90261 Mon Sep 17 00:00:00 2001 From: Danomi Manchego <danomimanchego123@gmail.com> Date: Sat, 25 Oct 2014 19:42:38 +0200 Subject: [PATCH 1/5] log4c.m4: fix "underquoted definition of AM_PATH_LOG4C" warning When autoreconfiguring liblog4c-localtime, there is a warning from autoconf caused by an underquoted definition of AM_PATH_LOG4C. This patch fixes this warning. Submitted upstream: https://github.com/rcmadruga/log4c-localtime/pull/1 Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- log4c.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log4c.m4 b/log4c.m4 index 551a90d..96424c0 100644 --- a/log4c.m4 +++ b/log4c.m4 @@ -4,7 +4,7 @@ dnl AM_PATH_LOG4C([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) dnl Test for LOG4C, and define LOG4C_CFLAGS and LOG4C_LIBS dnl -AC_DEFUN(AM_PATH_LOG4C, +AC_DEFUN([AM_PATH_LOG4C], [dnl dnl Get the cflags and libraries from the log4c-config script dnl -- 2.0.0
shibajee/buildroot
package/liblog4c-localtime/0001-log4c.m4-fix-underquoted-definition-of-AM_PATH_LOG4C.patch
patch
mit
1,076
From 435b28cd90973cc03a533e75e90a46cd9f197dff Mon Sep 17 00:00:00 2001 From: Peter Korsgaard <peter@korsgaard.com> Date: Sat, 25 Oct 2014 19:44:01 +0200 Subject: [PATCH 2/5] Fix linking error without pthread The rollingfile functionality only gets built if pthread support is available, but a call to these functions from log4c_fini() was outside the #if WITH_ROLLINGFILE conditional, causing linker errors when the library is used. Submitted upstream: https://github.com/rcmadruga/log4c-localtime/pull/1 Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- src/log4c/init.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/log4c/init.c b/src/log4c/init.c index 99883ea..7dd9eb4 100644 --- a/src/log4c/init.c +++ b/src/log4c/init.c @@ -267,10 +267,12 @@ extern int log4c_fini(void) log4c_layout_factory = NULL; } +#ifdef WITH_ROLLINGFILE if (log4c_rollingpolicy_factory) { sd_factory_delete(log4c_rollingpolicy_factory); log4c_rollingpolicy_factory = NULL; } +#endif #ifdef __SD_DEBUG__ if( getenv("SD_DEBUG")){ -- 2.0.0
shibajee/buildroot
package/liblog4c-localtime/0002-Fix-linking-error-without-pthread.patch
patch
mit
1,147
From acbaee34bcb1881db97969dd2c411446f32ca4cc Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Sat, 25 Oct 2014 19:45:33 +0200 Subject: [PATCH 3/5] Fix debug mode build with uClibc When --enable-debug is passed, liblog4c-localtime wants to use <mcheck.h>. It takes the precaution of testing if __GLIBC__ is defined. But unfortunately, the uClibc C library pretends to be compatible with glibc by defining __GLIBC__, but it doesn't provide mcheck.h. To better support this situation, we add an AC_CHECK_HEADERS() check on mcheck.h, and then use HAVE_MCHECK_H were appropriate. Submitted upstream: https://github.com/rcmadruga/log4c-localtime/pull/1 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- configure.in | 2 +- src/log4c/init.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index 612ccbe..dbf11e9 100644 --- a/configure.in +++ b/configure.in @@ -115,7 +115,7 @@ AM_CONDITIONAL(TEST, test x$enable_test = xyes) AC_HEADER_STDC AC_CHECK_HEADERS([fcntl.h inttypes.h langinfo.h limits.h stddef.h stdint.h \ stdlib.h string.h sys/time.h syslog.h unistd.h stdarg.h varargs.h getopt.h \ -pthread.h]) +pthread.h mcheck.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST diff --git a/src/log4c/init.c b/src/log4c/init.c index 7dd9eb4..4b88210 100644 --- a/src/log4c/init.c +++ b/src/log4c/init.c @@ -35,7 +35,7 @@ static const char version[] = "$Id$"; #include <layout_type_basic_r.h> #include <layout_type_dated_r.h> -#if defined(__LOG4C_DEBUG__) && defined(__GLIBC__) +#if defined(__LOG4C_DEBUG__) && defined(HAVE_MCHECK_H) #include <mcheck.h> #endif @@ -100,7 +100,7 @@ extern int log4c_init(void) sd_debug("log4c_init["); /* activate GLIBC allocation debugging */ -#if defined(__LOG4C_DEBUG__) && defined(__GLIBC__) +#if defined(__LOG4C_DEBUG__) && defined(HAVE_MCHECK_H) mtrace(); #endif @@ -280,7 +280,7 @@ extern int log4c_fini(void) log4c_dump_all_instances(stderr); } #endif -#if defined(__LOG4C_DEBUG__) && defined(__GLIBC__) +#if defined(__LOG4C_DEBUG__) && defined(HAVE_MCHECK_H) muntrace(); #endif -- 2.0.0
shibajee/buildroot
package/liblog4c-localtime/0003-Fix-debug-mode-build-with-uClibc.patch
patch
mit
2,239
From a2553c203d8b8257dea1d2e2139b220935587144 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Sat, 25 Oct 2014 20:03:25 +0200 Subject: [PATCH 4/5] Add AC_CONFIG_MACRO_DIR to configure.in Without AC_CONFIG_MACRO_DIR, when autoreconfiguring the package, it cannot find AM_PATH_EXPAT which is defined in config/expat.m4. Submitted upstream: https://github.com/rcmadruga/log4c-localtime/pull/1 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- configure.in | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.in b/configure.in index dbf11e9..769b204 100644 --- a/configure.in +++ b/configure.in @@ -5,6 +5,7 @@ AC_PREREQ(2.57) AC_INIT AC_CONFIG_SRCDIR([configure.in]) AC_CONFIG_AUX_DIR(config) +AC_CONFIG_MACRO_DIR([config]) AM_CONFIG_HEADER(src/config.h) LOG4C_MAJOR_VERSION=1 -- 2.0.0
shibajee/buildroot
package/liblog4c-localtime/0004-Add-AC_CONFIG_MACRO_DIR-to-configure.in.patch
patch
mit
874
From bdccec4c374a93480a7fd303d15e20810a5d5b7e Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Sat, 25 Oct 2014 21:22:40 +0200 Subject: [PATCH 5/5] Fix C++ support Autoreconf fails with the following message: tests/log4c/Makefile.am: error: C++ source seen but 'CXX' is undefined So this commit adds the AC_PROG_CXX macro to configure.in, and ensures that the C++ test is only built if a C++ compiler is available. Submitted upstream: https://github.com/rcmadruga/log4c-localtime/pull/1 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- configure.in | 3 +++ tests/log4c/Makefile.am | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 769b204..ce75800 100644 --- a/configure.in +++ b/configure.in @@ -38,6 +38,7 @@ AC_DEFINE(_GNU_SOURCE,1,"POSIXandGNU extensions") #. AC_PROG_YACC AC_PROG_CC +AC_PROG_CXX AC_PROG_CPP AM_PROG_LEX AC_PROG_AWK @@ -47,6 +48,8 @@ AC_PROG_MAKE_SET AC_PROG_RANLIB AC_PROG_LIBTOOL +AM_CONDITIONAL([USE_CXX], [test "$ac_cv_prog_CXX" != "no"]) + # platform idioms case "$host" in *-hp-hpux*) diff --git a/tests/log4c/Makefile.am b/tests/log4c/Makefile.am index f647f27..b1b4ed6 100644 --- a/tests/log4c/Makefile.am +++ b/tests/log4c/Makefile.am @@ -3,7 +3,11 @@ INCLUDES = \ -DSRCDIR="\"$(srcdir)\"" noinst_PROGRAMS = test_category test_rc bench bench_fwrite \ - test_stream2 test_layout_r cpp_compile_test + test_stream2 test_layout_r + +if USE_CXX +noinst_PROGRAMS += cpp_compile_test +endif if WITH_ROLLINGFILE noinst_PROGRAMS += test_rollingfile_appender test_rollingfile_appender_mt -- 2.0.0
shibajee/buildroot
package/liblog4c-localtime/0005-Fix-C-support.patch
patch
mit
1,689
config BR2_PACKAGE_LIBLOG4C_LOCALTIME bool "liblog4c-localtime" select BR2_PACKAGE_EXPAT help Log4c is a library of C for flexible logging to files, syslog and other destinations. This version is with localtime patch, to make lib show times in local timezone. https://github.com/rcmadruga/log4c-localtime http://log4c.sourceforge.net/
shibajee/buildroot
package/liblog4c-localtime/Config.in
in
mit
357
# Locally calculated sha256 a1f68d8251509c0171f8bfea42f9e2a5255a4185f7dcbe67f584aa09709b2496 liblog4c-localtime-v1.0.tar.gz
shibajee/buildroot
package/liblog4c-localtime/liblog4c-localtime.hash
hash
mit
125
################################################################################ # # liblog4c-localtime # ################################################################################ LIBLOG4C_LOCALTIME_VERSION = v1.0 LIBLOG4C_LOCALTIME_SITE = $(call github,rcmadruga,log4c-localtime,$(LIBLOG4C_LOCALTIME_VERSION)) LIBLOG4C_LOCALTIME_INSTALL_STAGING = YES LIBLOG4C_LOCALTIME_CONF_OPTS = --disable-expattest LIBLOG4C_LOCALTIME_DEPENDENCIES = expat LIBLOG4C_LOCALTIME_CONFIG_SCRIPTS = log4c-config LIBLOG4C_LOCALTIME_LICENSE = LGPLv2.1 LIBLOG4C_LOCALTIME_LICENSE_FILES = COPYING LIBLOG4C_LOCALTIME_AUTORECONF = YES define LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS chmod +x $(@D)/configure endef LIBLOG4C_LOCALTIME_PRE_CONFIGURE_HOOKS += LIBLOG4C_LOCALTIME_FIX_CONFIGURE_PERMS $(eval $(autotools-package))
shibajee/buildroot
package/liblog4c-localtime/liblog4c-localtime.mk
mk
mit
808
config BR2_PACKAGE_LIBLOGGING bool "liblogging" help Liblogging is an easy to use library for logging. It offers an enhanced replacement for the syslog() call, but retains its ease of use. http://www.liblogging.org/
shibajee/buildroot
package/liblogging/Config.in
in
mit
231
# From http://www.liblogging.org/ sha256 310dc1691279b7a669d383581fe4b0babdc7bf75c9b54a24e51e60428624890b liblogging-1.0.5.tar.gz
shibajee/buildroot
package/liblogging/liblogging.hash
hash
mit
130
################################################################################ # # liblogging # ################################################################################ LIBLOGGING_VERSION = 1.0.5 LIBLOGGING_SITE = http://download.rsyslog.com/liblogging LIBLOGGING_LICENSE = BSD-2c LIBLOGGING_LICENSE_FILES = COPYING LIBLOGGING_INSTALL_STAGING = YES LIBLOGGING_CONF_OPTS = --enable-cached-man-pages ifeq ($(BR2_INIT_SYSTEMD),y) LIBLOGGING_CONF_OPTS += --enable-journal LIBLOGGING_DEPENDENCIES += systemd else LIBLOGGING_CONF_OPTS += --disable-journal endif $(eval $(autotools-package))
shibajee/buildroot
package/liblogging/liblogging.mk
mk
mit
598
http://patchwork.openembedded.org/patch/921/ diff -ur libmad-0.15.1b-orig/fixed.h libmad-0.15.1b/fixed.h --- libmad-0.15.1b-orig/fixed.h 2004-02-17 12:32:03.000000000 +1030 +++ libmad-0.15.1b/fixed.h 2009-08-05 10:46:30.000000000 +0930 @@ -299,6 +299,23 @@ # elif defined(FPM_MIPS) +/* Test for gcc >= maj.min, as per __GNUC_PREREQ in glibc */ +#if defined (__GNUC__) && defined (__GNUC_MINOR__) +#define __GNUC_PREREQ(maj, min) \ + ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) +#else +#define __GNUC_PREREQ(maj, min) 0 +#endif + +#if __GNUC_PREREQ(4,4) + typedef unsigned int u64_di_t __attribute__ ((mode (DI))); +# define MAD_F_MLX(hi, lo, x, y) \ + do { \ + u64_di_t __ll = (u64_di_t) (x) * (y); \ + hi = __ll >> 32; \ + lo = __ll; \ + } while (0) +#else /* * This MIPS version is fast and accurate; the disposition of the least * significant bit depends on OPT_ACCURACY via mad_f_scale64(). @@ -328,6 +345,7 @@ : "%r" ((x) >> 12), "r" ((y) >> 16)) # define MAD_F_MLZ(hi, lo) ((mad_fixed_t) (lo)) # endif +#endif /* __GNU_PREREQ(4,4) */ # if defined(OPT_SPEED) # define mad_f_scale64(hi, lo) \ diff -ur libmad-0.15.1b-orig/mad.h libmad-0.15.1b/mad.h --- libmad-0.15.1b-orig/mad.h 2004-02-17 13:25:44.000000000 +1030 +++ libmad-0.15.1b/mad.h 2009-08-05 10:42:40.000000000 +0930 @@ -344,6 +344,23 @@ # elif defined(FPM_MIPS) +/* Test for gcc >= maj.min, as per __GNUC_PREREQ in glibc */ +#if defined (__GNUC__) && defined (__GNUC_MINOR__) +#define __GNUC_PREREQ(maj, min) \ + ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) +#else +#define __GNUC_PREREQ(maj, min) 0 +#endif + +#if __GNUC_PREREQ(4,4) + typedef unsigned int u64_di_t __attribute__ ((mode (DI))); +# define MAD_F_MLX(hi, lo, x, y) \ + do { \ + u64_di_t __ll = (u64_di_t) (x) * (y); \ + hi = __ll >> 32; \ + lo = __ll; \ + } while (0) +#else /* * This MIPS version is fast and accurate; the disposition of the least * significant bit depends on OPT_ACCURACY via mad_f_scale64(). @@ -373,6 +390,7 @@ : "%r" ((x) >> 12), "r" ((y) >> 16)) # define MAD_F_MLZ(hi, lo) ((mad_fixed_t) (lo)) # endif +#endif /* __GNU_PREREQ(4,4) */ # if defined(OPT_SPEED) # define mad_f_scale64(hi, lo) \
shibajee/buildroot
package/libmad/0001-mips-h-constraint-removal.patch
patch
mit
2,266
libmad: remove deprecated cflags (-fforce-mem) fforce-mem has long been deprecated, and is completely removed from gcc 4.3.x on. --- configure | 1 - configure.ac | 1 - 2 files changed, 2 deletions(-) Index: libmad-0.15.1b/configure.ac =================================================================== --- libmad-0.15.1b.orig/configure.ac +++ libmad-0.15.1b/configure.ac @@ -140,7 +140,6 @@ case "$optimize" in -O|"-O "*) optimize="-O" - optimize="$optimize -fforce-mem" optimize="$optimize -fforce-addr" : #x optimize="$optimize -finline-functions" : #- optimize="$optimize -fstrength-reduce" Index: libmad-0.15.1b/configure =================================================================== --- libmad-0.15.1b.orig/configure +++ libmad-0.15.1b/configure @@ -19099,7 +19099,6 @@ case "$optimize" in -O|"-O "*) optimize="-O" - optimize="$optimize -fforce-mem" optimize="$optimize -fforce-addr" : #x optimize="$optimize -finline-functions" : #- optimize="$optimize -fstrength-reduce"
shibajee/buildroot
package/libmad/0003-remove-deprecated-cflags.patch
patch
mit
1,069
Fixes Thumb2-related build failure Patch below comes from the Debian libmad package. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> From: Dave Martin Subject: "rsc" doesnt exist anymore in thumb2 diff --git a/fixed.h b/fixed.h index 4b58abf..ba4bc26 100644 --- a/fixed.h +++ b/fixed.h @@ -275,12 +275,25 @@ mad_fixed_t mad_f_mul_inline(mad_fixed_t x, mad_fixed_t y) : "+r" (lo), "+r" (hi) \ : "%r" (x), "r" (y)) +#ifdef __thumb__ +/* In Thumb-2, the RSB-immediate instruction is only allowed with a zero + operand. If needed this code can also support Thumb-1 + (simply append "s" to the end of the second two instructions). */ +# define MAD_F_MLN(hi, lo) \ + asm ("rsbs %0, %0, #0\n\t" \ + "sbc %1, %1, %1\n\t" \ + "sub %1, %1, %2" \ + : "+&r" (lo), "=&r" (hi) \ + : "r" (hi) \ + : "cc") +#else /* ! __thumb__ */ # define MAD_F_MLN(hi, lo) \ asm ("rsbs %0, %2, #0\n\t" \ "rsc %1, %3, #0" \ - : "=r" (lo), "=r" (hi) \ + : "=&r" (lo), "=r" (hi) \ : "0" (lo), "1" (hi) \ : "cc") +#endif /* __thumb__ */ # define mad_f_scale64(hi, lo) \ ({ mad_fixed_t __result; \
shibajee/buildroot
package/libmad/0004-thumb2-fixed-arm.patch
patch
mit
1,160
Fixes Thumb2 related build failure Patch below comes from the Debian libmad package. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> From: Konstantinos Margaritis <markos@debian.org> Subject: use "adr" instead of "add" to make code ready for thumb2 --- ./imdct_l_arm.S.orig 2010-02-25 13:25:23.000000000 +0100 +++ ./imdct_l_arm.S 2010-02-25 13:27:26.000000000 +0100 @@ -468,7 +468,7 @@ @---- - add r2, pc, #(imdct36_long_karray-.-8) @ r2 = base address of Knn array (PIC safe ?) + adr r2, imdct36_long_karray loop:
shibajee/buildroot
package/libmad/0005-thumb2-imdct-arm.patch
patch
mit
570
config BR2_PACKAGE_LIBMAD bool "libmad" help High-quality MPEG audio decoder. All computations are performed with fixed-point integer arithmetic, making it ideal for systems without a floating-point unit. http://www.underbit.com/products/mad/ if BR2_PACKAGE_LIBMAD choice prompt "Speed vs. accuracy" default BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT config BR2_PACKAGE_LIBMAD_OPTIMIZATION_DEFAULT bool "Default" help Keep optimizations balanced between speed and accuracy. config BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED bool "Optimize for speed over accuracy" help Compromise accuracy for speed. config BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY bool "Optimize for accuracy over speed" help Compromise speed for accuracy. endchoice config BR2_PACKAGE_LIBMAD_SSO bool "Subband synthesis optimization" help Use the subband synthesis optimization, with reduced accuracy. config BR2_PACKAGE_LIBMAD_ASO bool "Architecture-specific optimizations" default y help Use certain architecture-specific optimizations. config BR2_PACKAGE_LIBMAD_STRICT_ISO bool "Strict ISO/IEC interpretations" help Use strict ISO/IEC interpretations. endif
shibajee/buildroot
package/libmad/Config.in
in
mit
1,179
# Locally computed: sha256 bbfac3ed6bfbc2823d3775ebb931087371e142bb0e9bb1bee51a76a6e0078690 libmad-0.15.1b.tar.gz
shibajee/buildroot
package/libmad/libmad.hash
hash
mit
116
################################################################################ # # libmad # ################################################################################ LIBMAD_VERSION = 0.15.1b LIBMAD_SITE = http://downloads.sourceforge.net/project/mad/libmad/$(LIBMAD_VERSION) LIBMAD_INSTALL_STAGING = YES LIBMAD_LIBTOOL_PATCH = NO LIBMAD_LICENSE = GPLv2+ LIBMAD_LICENSE_FILES = COPYING define LIBMAD_PREVENT_AUTOMAKE # Prevent automake from running. (cd $(@D); touch -c config* aclocal.m4 Makefile*); endef define LIBMAD_INSTALL_STAGING_PC $(INSTALL) -D package/libmad/mad.pc \ $(STAGING_DIR)/usr/lib/pkgconfig/mad.pc endef define LIBMAD_INSTALL_TARGET_PC $(INSTALL) -D package/libmad/mad.pc \ $(TARGET_DIR)/usr/lib/pkgconfig/mad.pc endef LIBMAD_POST_PATCH_HOOKS += LIBMAD_PREVENT_AUTOMAKE LIBMAD_POST_INSTALL_STAGING_HOOKS += LIBMAD_INSTALL_STAGING_PC LIBMAD_POST_INSTALL_TARGET_HOOKS += LIBMAD_INSTALL_TARGET_PC LIBMAD_CONF_OPTS = \ --disable-debugging \ $(if $(BR2_PACKAGE_LIBMAD_OPTIMIZATION_SPEED),--enable-speed) \ $(if $(BR2_PACKAGE_LIBMAD_OPTIMIZATION_ACCURACY),--enable-accuracy) \ --$(if $(BR2_PACKAGE_LIBMAD_SSO),enable,disable)-sso \ --$(if $(BR2_PACKAGE_LIBMAD_ASO),enable,disable)-aso \ --$(if $(BR2_PACKAGE_LIBMAD_STRICT_ISO),enable,disable)-strict-iso $(eval $(autotools-package))
shibajee/buildroot
package/libmad/libmad.mk
mk
mit
1,326
prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include Name: mad Description: MPEG Audio Decoder Requires: Version: 0.15.1b Libs: -L${libdir} -lmad Cflags: -I${includedir}
shibajee/buildroot
package/libmad/mad.pc
pc
mit
207
config BR2_PACKAGE_LIBMATROSKA bool "libmatroska" select BR2_PACKAGE_LIBEBML depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR help Extensible open standard audio/video container format access library. http://matroska.org comment "libmatroska needs a toolchain w/ C++, wchar" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
shibajee/buildroot
package/libmatroska/Config.in
in
mit
353
# Locally calculated sha256 d3efaa9f6d3964351a05bea0f848a8d5dc570e4791f179816ce9a93730296bd7 libmatroska-1.4.4.tar.bz2
shibajee/buildroot
package/libmatroska/libmatroska.hash
hash
mit
119
################################################################################ # # libmatroska # ################################################################################ LIBMATROSKA_VERSION = 1.4.4 LIBMATROSKA_SOURCE = libmatroska-$(LIBMATROSKA_VERSION).tar.bz2 LIBMATROSKA_SITE = http://dl.matroska.org/downloads/libmatroska LIBMATROSKA_INSTALL_STAGING = YES LIBMATROSKA_LICENSE = LGPLv2.1+ LIBMATROSKA_LICENSE_FILES = LICENSE.LGPL LIBMATROSKA_DEPENDENCIES = libebml host-pkgconf $(eval $(autotools-package))
shibajee/buildroot
package/libmatroska/libmatroska.mk
mk
mit
522
config BR2_PACKAGE_LIBMBIM bool "libmbim" depends on BR2_USE_WCHAR # libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 depends on BR2_PACKAGE_HAS_UDEV select BR2_PACKAGE_LIBGUDEV select BR2_PACKAGE_LIBGLIB2 help libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. http://www.freedesktop.org/wiki/Software/libmbim/ comment "libmbim needs udev /dev management and a toolchain w/ wchar, threads" depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ !BR2_PACKAGE_HAS_UDEV
shibajee/buildroot
package/libmbim/Config.in
in
mit
592
# Locally computed: sha256 ca8d52a95a18cbabae8f15f83f1572316e888b6504f946e6645d24405127ab5b libmbim-1.14.0.tar.xz
shibajee/buildroot
package/libmbim/libmbim.hash
hash
mit
116
################################################################################ # # libmbim # ################################################################################ LIBMBIM_VERSION = 1.14.0 LIBMBIM_SITE = http://www.freedesktop.org/software/libmbim LIBMBIM_SOURCE = libmbim-$(LIBMBIM_VERSION).tar.xz LIBMBIM_LICENSE = LGPLv2+ (library), GPLv2+ (programs) LIBMBIM_LICENSE_FILES = COPYING LIBMBIM_INSTALL_STAGING = YES LIBMBIM_DEPENDENCIES = libglib2 udev libgudev # we don't want -Werror LIBMBIM_CONF_OPTS = --enable-more-warnings=no $(eval $(autotools-package))
shibajee/buildroot
package/libmbim/libmbim.mk
mk
mit
577
config BR2_PACKAGE_LIBMBUS bool "libmbus" help libmbus is a library for communicating with energy metering devices. It supports TCP and RS232 M-bus gateways. (M-bus standard: http://www.m-bus.com/) http://www.rscada.se/libmbus/
shibajee/buildroot
package/libmbus/Config.in
in
mit
243
# Locally calculated sha256 9fca42592da0ba75df66c6f885a4dbfa916d23e65e3d1ce6e38d940d2a2719a4 libmbus-0.8.0.tar.gz
shibajee/buildroot
package/libmbus/libmbus.hash
hash
mit
114
################################################################################ # # libmbus # ################################################################################ LIBMBUS_VERSION = 0.8.0 LIBMBUS_SITE = http://www.rscada.se/public-dist LIBMBUS_INSTALL_STAGING = YES LIBMBUS_LICENSE = BSD-3c LIBMBUS_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/libmbus/libmbus.mk
mk
mit
366
libmcrypt doesn't use C++ so remove the check. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> diff -Nura libmcrypt-2.5.8.orig/configure.in libmcrypt-2.5.8/configure.in --- libmcrypt-2.5.8.orig/configure.in 2013-01-07 12:20:44.332200669 -0300 +++ libmcrypt-2.5.8/configure.in 2013-01-07 12:20:50.405390565 -0300 @@ -19,7 +19,6 @@ AC_PROG_MAKE_SET -AC_PROG_CXX AC_PROG_CC AC_PROG_CPP AC_PROG_INSTALL
shibajee/buildroot
package/libmcrypt/0001-nocxx.patch
patch
mit
419
config BR2_PACKAGE_LIBMCRYPT bool "libmcrypt" help libmcrypt is a library that provides uniform interface to access several encryption algorithms. http://mcrypt.sourceforge.net/
shibajee/buildroot
package/libmcrypt/Config.in
in
mit
190
# Locally computed: sha256 e4eb6c074bbab168ac47b947c195ff8cef9d51a211cdd18ca9c9ef34d27a373e libmcrypt-2.5.8.tar.gz
shibajee/buildroot
package/libmcrypt/libmcrypt.hash
hash
mit
117
################################################################################ # # libmcrypt # ################################################################################ LIBMCRYPT_VERSION = 2.5.8 LIBMCRYPT_SITE = http://downloads.sourceforge.net/project/mcrypt/Libmcrypt/$(LIBMCRYPT_VERSION) LIBMCRYPT_AUTORECONF = YES LIBMCRYPT_INSTALL_STAGING = YES LIBMCRYPT_LICENSE = LGPLv2.1 LIBMCRYPT_LICENSE_FILES = COPYING.LIB LIBMCRYPT_CONFIG_SCRIPTS = libmcrypt-config $(eval $(autotools-package))
shibajee/buildroot
package/libmcrypt/libmcrypt.mk
mk
mit
501
Disable the tests, cuts build time by half and avoids build issues with extra dependencies. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> diff -Nura libmemcached-1.0.18.orig/Makefile.am libmemcached-1.0.18/Makefile.am --- libmemcached-1.0.18.orig/Makefile.am 2014-07-19 09:24:45.246418899 -0300 +++ libmemcached-1.0.18/Makefile.am 2014-07-19 09:25:12.701349345 -0300 @@ -1,6 +1,6 @@ # vim:ft=automake -ACLOCAL_AMFLAGS= -I m4 -I libtest/m4 +ACLOCAL_AMFLAGS= -I m4 AM_YFLAGS= -d # includes append to these: @@ -45,8 +45,6 @@ include libmemcached-1.0/include.am else -include libtest/include.am - include libhashkit-1.0/include.am include libmemcached-1.0/include.am @@ -76,7 +74,6 @@ include libmemcachedinternal/util/include.am include rpm/include.mk include support/include.am -include tests/include.am include util/include.am include win32/include.am @@ -103,7 +100,7 @@ @echo "Files that need to be either removed or checked in:" @bzr unknowns -clean-local: clean-libtest-check clean-docs-check clean-rpm +clean-local: clean-docs-check clean-rpm lcov: lcov-clean check
shibajee/buildroot
package/libmemcached/0001-disable-tests.patch
patch
mit
1,118
Disable sanitizer checks, they're busted. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> diff -Nura libmemcached-1.0.18.orig/m4/ax_harden_compiler_flags.m4 libmemcached-1.0.18/m4/ax_harden_compiler_flags.m4 --- libmemcached-1.0.18.orig/m4/ax_harden_compiler_flags.m4 2014-11-13 08:07:09.011614311 -0300 +++ libmemcached-1.0.18/m4/ax_harden_compiler_flags.m4 2014-11-13 08:07:52.406092440 -0300 @@ -222,8 +222,6 @@ # GCC 4.5 removed this. # _APPEND_COMPILE_FLAGS_ERROR([-Wunreachable-code]) - _SET_SANITIZE_FLAGS - AS_IF([test "x$ax_enable_debug" = xno], [AS_IF([test "x$ac_cv_vcs_checkout" = xyes], [AS_IF([test "x${host_os}" != "xmingw"], @@ -337,8 +335,6 @@ _APPEND_COMPILE_FLAGS_ERROR([-fstack-protector-all]) ])])])]) - _SET_SANITIZE_FLAGS - AS_IF([test "x$ac_cv_warnings_as_errors" = xyes], [AX_APPEND_FLAG([-Werror])]) AC_LANG_POP([C++])
shibajee/buildroot
package/libmemcached/0002-disable-sanitizer.patch
patch
mit
1,009
Move AC_CONFIG_AUX_DIR up a few lines so the autotools can find it This patch is based on the same solution adopted by Debian: https://lists.debian.org/debian-release/2014/11/msg01231.html Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> diff -rup a/configure.ac b/configure.ac --- a/configure.ac 2014-02-09 11:52:42.000000000 +0000 +++ b/configure.ac 2015-01-06 15:07:10.003074775 +0000 @@ -13,11 +13,12 @@ m4_include([version.m4]) AC_PREREQ([2.61]) AC_INIT([libmemcached],VERSION_NUMBER,[http://libmemcached.org/]) +AC_CONFIG_AUX_DIR([build-aux]) + # Setup the compilers early on AC_PROG_CC([cc gcc clang]) AC_PROG_CXX([c++ g++ clang++]) -AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_HOST
shibajee/buildroot
package/libmemcached/0003-move-ac_config_aux_dir.patch
patch
mit
750
From 6c01bd3562cc18fbafdf950bbeb73a399c1adcdd Mon Sep 17 00:00:00 2001 From: Romain Naour <romain.naour@openwide.fr> Date: Tue, 12 May 2015 00:00:02 +0200 Subject: [PATCH] disable doc and man WARNING: master file /home/naourr/git/buildroot/test/libmemcached-bfin/build/libmemcached-1.0.18/docs/index.rst not found Exception occurred: File "/usr/lib/python2.7/site-packages/sphinx/environment.py", line 1213, in get_doctree f = open(doctree_filename, 'rb') IOError: [Errno 2] No such file or directory: '/home/naourr/buildroot-test/test/libmemcached-bfin/build/libmemcached-1.0.18/man/.doctrees/hashkit_create.doctree' The full traceback has been saved in /tmp/sphinx-err-JCIsnB.log, if you want to report the issue to the developers. Please also report this if it was a user error, so that a better error message can be provided next time. Either send bugs to the mailing list at <http://groups.google.com/group/sphinx-dev/>, or report them in the tracker at <http://bitbucket.org/birkenfeld/sphinx/issues/>. Thanks! Signed-off-by: Romain Naour <romain.naour@openwide.fr> --- Makefile.am | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 7f44102..cb7d058 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,8 +55,6 @@ endif include libmemcachedutil-1.0/include.am include clients/include.am -include docs/include.am -include man/include.am if BUILD_LIBMEMCACHED_PROTOCOL include example/include.am -- 1.9.3
shibajee/buildroot
package/libmemcached/0004-disable-doc-and-man.patch
patch
mit
1,460
config BR2_PACKAGE_LIBMEMCACHED bool "libmemcached" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS help libMemcached is an open source C/C++ client library and tools for the memcached server. It has been designed to be light on memory usage, thread safe, and provide full access to server side methods. http://libmemcached.org/libMemcached.html comment "libmemcached needs a toolchain w/ C++, threads" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libmemcached/Config.in
in
mit
511
# From https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz/+md5 md5 b3958716b4e53ddc5992e6c49d97e819 libmemcached-1.0.18.tar.gz
shibajee/buildroot
package/libmemcached/libmemcached.hash
hash
mit
159
################################################################################ # # libmemcached # ################################################################################ LIBMEMCACHED_VERSION_MAJOR = 1.0 LIBMEMCACHED_VERSION = $(LIBMEMCACHED_VERSION_MAJOR).18 LIBMEMCACHED_SITE = http://launchpad.net/libmemcached/$(LIBMEMCACHED_VERSION_MAJOR)/$(LIBMEMCACHED_VERSION)/+download LIBMEMCACHED_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99' \ ax_cv_check_cflags__Werror__fmudflapth=no \ ax_cv_check_cxxflags__Werror__fmudflapth=no LIBMEMCACHED_CONF_OPTS = --disable-dtrace LIBMEMCACHED_INSTALL_STAGING = YES LIBMEMCACHED_DEPENDENCIES = $(if $(BR2_PACKAGE_LIBEVENT),libevent) # For 0001-disable-tests.patch and 0002-disable-sanitizer.patch LIBMEMCACHED_AUTORECONF = YES LIBMEMCACHED_LICENSE = BSD-3c LIBMEMCACHED_LICENSE_FILES = COPYING ifeq ($(BR2_TOOLCHAIN_SUPPORTS_PIE),) LIBMEMCACHED_CONF_ENV += \ ax_cv_check_cflags__Werror__fPIE=no \ ax_cv_check_cflags__Werror__pie=no \ ax_cv_check_cxxflags__Werror__fPIE=no \ ax_cv_check_cxxflags__Werror__pie=no endif $(eval $(autotools-package))
shibajee/buildroot
package/libmemcached/libmemcached.mk
mk
mit
1,099
config BR2_PACKAGE_LIBMHASH bool "libmhash" help Mhash is a free (under GNU Lesser GPL) library which provides a uniform interface to a large number of hash algorithms. These algorithms can be used to compute checksums, message digests, and other signatures. http://mhash.sourceforge.net/
shibajee/buildroot
package/libmhash/Config.in
in
mit
307
# Locally computed: sha256 56521c52a9033779154432d0ae47ad7198914785265e1f570cee21ab248dfef0 mhash-0.9.9.9.tar.bz2
shibajee/buildroot
package/libmhash/libmhash.hash
hash
mit
116
################################################################################ # # libmhash # ################################################################################ LIBMHASH_VERSION = 0.9.9.9 LIBMHASH_SITE = http://downloads.sourceforge.net/project/mhash/mhash/$(LIBMHASH_VERSION) LIBMHASH_SOURCE = mhash-$(LIBMHASH_VERSION).tar.bz2 LIBMHASH_INSTALL_STAGING = YES LIBMHASH_LICENSE = LGPLv2 LIBMHASH_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/libmhash/libmhash.mk
mk
mit
466
config BR2_PACKAGE_LIBMICROHTTPD bool "libmicrohttpd" depends on BR2_TOOLCHAIN_HAS_THREADS help GNU libmicrohttpd is a small C library that makes it easy to run an HTTP server as part of another application. http://www.gnu.org/software/libmicrohttpd/ if BR2_PACKAGE_LIBMICROHTTPD config BR2_PACKAGE_LIBMICROHTTPD_SSL bool "https support" depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt depends on BR2_USE_WCHAR select BR2_PACKAGE_GNUTLS select BR2_PACKAGE_LIBGCRYPT help Enable HTTPS (SSL) support. comment "libmicrohttpd https support needs a toolchain w/ wchar" depends on !BR2_USE_WCHAR endif comment "libmicrohttpd needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libmicrohttpd/Config.in
in
mit
730
# Locally calculated sha256 d1b6385068abded29b6470e383287aa7705de05ae3c08ad0bf5747ac4dc6ebd7 libmicrohttpd-0.9.50.tar.gz
shibajee/buildroot
package/libmicrohttpd/libmicrohttpd.hash
hash
mit
121
################################################################################ # # libmicrohttpd # ################################################################################ LIBMICROHTTPD_VERSION = 0.9.50 LIBMICROHTTPD_SITE = $(BR2_GNU_MIRROR)/libmicrohttpd LIBMICROHTTPD_LICENSE_FILES = COPYING LIBMICROHTTPD_INSTALL_STAGING = YES LIBMICROHTTPD_CONF_OPTS = --disable-curl --disable-examples LIBMICROHTTPD_CFLAGS = $(TARGET_CFLAGS) -std=c99 # gcc on arc and bfin doesn't define _REENTRANT when -pthread is # passed while it should. Compensate this defiency here otherwise # libmicrohttpd configure script doesn't find that thread support is # enabled. ifeq ($(BR2_arc)$(BR2_bfin),y) LIBMICROHTTPD_CFLAGS += -D_REENTRANT endif LIBMICROHTTPD_CONF_ENV += CFLAGS="$(LIBMICROHTTPD_CFLAGS)" ifeq ($(BR2_PACKAGE_LIBMICROHTTPD_SSL),y) LIBMICROHTTPD_LICENSE = LGPLv2.1+ LIBMICROHTTPD_DEPENDENCIES += host-pkgconf gnutls libgcrypt LIBMICROHTTPD_CONF_ENV += LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs gnutls`" LIBMICROHTTPD_CONF_OPTS += --enable-https --with-gnutls=$(STAGING_DIR)/usr \ --with-libgcrypt-prefix=$(STAGING_DIR)/usr else LIBMICROHTTPD_LICENSE = LGPLv2.1+ or eCos LIBMICROHTTPD_CONF_OPTS += --disable-https endif $(eval $(autotools-package))
shibajee/buildroot
package/libmicrohttpd/libmicrohttpd.mk
mk
mit
1,255
config BR2_PACKAGE_LIBMINIUPNPC bool "libminiupnpc" depends on !BR2_BINFMT_FLAT depends on !BR2_STATIC_LIBS help The UPnP protocol is supported by most home adsl/cable routers and Microsoft Windows 2K/XP. The aim of the MiniUPnP project is to bring a free software solution to support the "Internet Gateway Device" part of the protocol. Miniupnpc aims at the simplest library possible, with the smallest footprint and no dependencies to other libraries such as XML parsers or HTTP implementations. All the code is pure ANSI C. http://miniupnp.free.fr comment "libminiupnpc needs a toolchain w/ dynamic library" depends on BR2_STATIC_LIBS depends on !BR2_BINFMT_FLAT
shibajee/buildroot
package/libminiupnpc/Config.in
in
mit
702
# Locally computed sha256 d434ceb8986efbe199c5ca53f90ed53eab290b1e6d0530b717eb6fa49d61f93b miniupnpc-2.0.tar.gz
shibajee/buildroot
package/libminiupnpc/libminiupnpc.hash
hash
mit
113
################################################################################ # # libminiupnpc # ################################################################################ LIBMINIUPNPC_VERSION = 2.0 LIBMINIUPNPC_SOURCE = miniupnpc-$(LIBMINIUPNPC_VERSION).tar.gz LIBMINIUPNPC_SITE = http://miniupnp.free.fr/files LIBMINIUPNPC_INSTALL_STAGING = YES LIBMINIUPNPC_LICENSE = BSD-3c LIBMINIUPNPC_LICENSE_FILES = LICENSE $(eval $(cmake-package))
shibajee/buildroot
package/libminiupnpc/libminiupnpc.mk
mk
mit
450
config BR2_PACKAGE_LIBMMS bool "libmms" depends on BR2_USE_WCHAR # glib2 depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 depends on BR2_USE_MMU # glib2 select BR2_PACKAGE_LIBGLIB2 help LibMMS is a common library for parsing mms:// and mmsh:// type network streams. These are commonly used to stream Windows Media Video content over the web. LibMMS itself is only for receiving MMS stream, it doesn't handle sending at all. http://launchpad.net/libmms comment "libmms needs a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/libmms/Config.in
in
mit
608
# Locally computed: sha256 01931b62172d7d7050fc9ef9b1b64162f3b6e9f6cc4415170192a32a0b7ea432 libmms-0.6.2.tar.gz
shibajee/buildroot
package/libmms/libmms.hash
hash
mit
114
################################################################################ # # libmms # ################################################################################ LIBMMS_VERSION = 0.6.2 LIBMMS_SITE = http://downloads.sourceforge.net/project/libmms/libmms/$(LIBMMS_VERSION) LIBMMS_INSTALL_STAGING = YES LIBMMS_DEPENDENCIES = host-pkgconf libglib2 LIBMMS_LICENSE = LGPLv2.1+ LIBMMS_LICENSE_FILES = COPYING.LIB $(eval $(autotools-package))
shibajee/buildroot
package/libmms/libmms.mk
mk
mit
451
Adaptation from gentoo patch for libmng 2.0.3 See https://bugs.gentoo.org/show_bug.cgi?id=520906 Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com> diff -Nura libmng-2.0.3.orig/libmng_types.h libmng-2.0.3/libmng_types.h --- libmng-2.0.3.orig/libmng_types.h 2015-09-24 10:32:05.500984924 -0300 +++ libmng-2.0.3/libmng_types.h 2015-09-24 10:33:11.145254771 -0300 @@ -200,13 +200,6 @@ #undef FAR /* possibly defined by zlib or lcms */ #endif #define JPEG_INTERNAL_OPTIONS /* for RGB_PIXELSIZE */ -/* There has been a change in jpeg-9 : */ -#if !defined(HAVE_BOOLEAN) && !defined(_WIN32) -#define HAVE_BOOLEAN -#endif -#ifndef _WIN32 -typedef int boolean; -#endif /* For jpegsrc.v09a: */ #include <stdio.h> #include <jpeglib.h>
shibajee/buildroot
package/libmng/0001-jpeg-9a.patch
patch
mit
788
config BR2_PACKAGE_LIBMNG bool "libmng" select BR2_PACKAGE_JPEG select BR2_PACKAGE_ZLIB help The reference library for reading, displaying, writing and examining Multiple-Image Network Graphics. http://sourceforge.net/projects/libmng/
shibajee/buildroot
package/libmng/Config.in
in
mit
249
# From http://sourceforge.net/projects/libmng/files/libmng-devel/2.0.3/ md5 e9e899adb1b681b17f14d91e261878c5 libmng-2.0.3.tar.xz sha1 0f141482ffcef6f8cd4413f945a59310ac2e49af libmng-2.0.3.tar.xz
shibajee/buildroot
package/libmng/libmng.hash
hash
mit
195
################################################################################ # # libmng # ################################################################################ LIBMNG_VERSION = 2.0.3 LIBMNG_SITE = http://downloads.sourceforge.net/project/libmng/libmng-devel/$(LIBMNG_VERSION) LIBMNG_SOURCE = libmng-$(LIBMNG_VERSION).tar.xz LIBMNG_DEPENDENCIES = jpeg zlib LIBMNG_CONF_OPTS = --without-lcms LIBMNG_INSTALL_STAGING = YES LIBMNG_LICENSE = libmng license LIBMNG_LICENSE_FILES = LICENSE ifeq ($(BR2_PACKAGE_LCMS2),y) LIBMNG_DEPDENDENCIES += lcms2 else LIBMNG_CONF_OPTS += --without-lcms2 endif $(eval $(autotools-package))
shibajee/buildroot
package/libmng/libmng.mk
mk
mit
636
From ae2acfa7d287e3ffc0bb66091059b86f62775bd5 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias <gustavo@zacarias.com.ar> Date: Tue, 10 Sep 2013 15:24:47 -0300 Subject: [PATCH] configure: uclinux is also linux Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index dcd3cf8..313a015 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ AC_DISABLE_STATIC LT_INIT CHECK_GCC_FVISIBILITY case "$host" in -*-*-linux*) ;; +*-*-linux* | *-*-uclinux*) ;; *) AC_MSG_ERROR([Linux only, dude!]);; esac -- 1.8.1.5
shibajee/buildroot
package/libmnl/0001-uclinux.patch
patch
mit
642
config BR2_PACKAGE_LIBMNL bool "libmnl" help libmnl is a minimalistic user-space library oriented to Netlink developers. http://netfilter.org/projects/libmnl/
shibajee/buildroot
package/libmnl/Config.in
in
mit
171
# From ftp://ftp.netfilter.org/pub/libmnl/libmnl-1.0.3.tar.bz2.{md5sum,sha1sum} md5 7d95fc3bea3365bc03c48e484224f65f libmnl-1.0.3.tar.bz2 sha1 c27e25f67c6422ebf893fc3a844af8085a1c5b63 libmnl-1.0.3.tar.bz2
shibajee/buildroot
package/libmnl/libmnl.hash
hash
mit
205
################################################################################ # # libmnl # ################################################################################ LIBMNL_VERSION = 1.0.3 LIBMNL_SOURCE = libmnl-$(LIBMNL_VERSION).tar.bz2 LIBMNL_SITE = http://netfilter.org/projects/libmnl/files LIBMNL_INSTALL_STAGING = YES LIBMNL_AUTORECONF = YES LIBMNL_LICENSE = LGPLv2.1+ LIBMNL_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/libmnl/libmnl.mk
mk
mit
446
config BR2_PACKAGE_LIBMODBUS bool "libmodbus" help libmodbus is a free software library to send/receive data according to the Modbus protocol. This library is written in C and supports RTU (serial) and TCP (Ethernet) communications. http://libmodbus.org
shibajee/buildroot
package/libmodbus/Config.in
in
mit
269
# Locally computed sha256 046d63f10f755e2160dc56ef681e5f5ad3862a57c1955fd82e0ce036b69471b6 libmodbus-3.0.6.tar.gz
shibajee/buildroot
package/libmodbus/libmodbus.hash
hash
mit
114
################################################################################ # # libmodbus # ################################################################################ LIBMODBUS_VERSION = 3.0.6 LIBMODBUS_SITE = http://libmodbus.org/releases LIBMODBUS_LICENSE = LGPLv2.1+ LIBMODBUS_LICENSE_FILES = COPYING.LESSER LIBMODBUS_INSTALL_STAGING = YES $(eval $(autotools-package))
shibajee/buildroot
package/libmodbus/libmodbus.mk
mk
mit
385
config BR2_PACKAGE_LIBMODPLUG bool "libmodplug" depends on BR2_INSTALL_LIBSTDCPP help MOD music file decoder http://modplug-xmms.sourceforge.net/ comment "libmodplug needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP
shibajee/buildroot
package/libmodplug/Config.in
in
mit
238