code
string | repo_name
string | path
string | language
string | license
string | size
int64 |
---|---|---|---|---|---|
################################################################################
#
# libpam-radius-auth
#
################################################################################
LIBPAM_RADIUS_AUTH_VERSION = 1.4.0
LIBPAM_RADIUS_AUTH_SITE = ftp://ftp.freeradius.org/pub/radius
LIBPAM_RADIUS_AUTH_SOURCE = pam_radius-$(LIBPAM_RADIUS_AUTH_VERSION).tar.gz
LIBPAM_RADIUS_AUTH_DEPENDENCIES = linux-pam
LIBPAM_RADIUS_AUTH_INSTALL_STAGING = YES
LIBPAM_RADIUS_AUTH_LICENSE = GPLv2+
LIBPAM_RADIUS_AUTH_LICENSE_FILES = LICENSE
# While autoconf is used for configuration, the Makefile is
# hand-written, so we need to pass CC, LD, CFLAGS at build time.
LIBPAM_RADIUS_AUTH_MAKE_ENV = $(TARGET_CONFIGURE_OPTS)
define LIBPAM_RADIUS_AUTH_INSTALL_STAGING_CMDS
mkdir -p $(STAGING_DIR)/lib/security/
cp -dpfr $(@D)/pam_radius_auth.so* $(STAGING_DIR)/lib/security/
endef
define LIBPAM_RADIUS_AUTH_INSTALL_TARGET_CMDS
mkdir -p $(TARGET_DIR)/lib/security/
cp -dpfr $(@D)/pam_radius_auth.so* $(TARGET_DIR)/lib/security/
endef
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libpam-radius-auth/libpam-radius-auth.mk
|
mk
|
mit
| 1,048 |
config BR2_PACKAGE_LIBPAM_TACPLUS
bool "libpam-tacplus"
help
TACACS+ protocol client library and PAM module in C. This
PAM module support authentication, authorization (account
management) and accounting (session management)performed
using TACACS+ protocol designed by Cisco.
https://github.com/jeroennijhof/pam_tacplus
|
shibajee/buildroot
|
package/libpam-tacplus/Config.in
|
in
|
mit
| 338 |
# Locally calculated
sha256 747f7ad980a3726ed3abc5fec92e867efa8af8c53caac547cab7eb6af5ce0edf libpam-tacplus-1.3.9.tar.gz
|
shibajee/buildroot
|
package/libpam-tacplus/libpam-tacplus.hash
|
hash
|
mit
| 122 |
################################################################################
#
# libpam-tacplus
#
################################################################################
LIBPAM_TACPLUS_VERSION = 1.3.9
LIBPAM_TACPLUS_SITE = $(call github,jeroennijhof,pam_tacplus,$(LIBPAM_TACPLUS_VERSION))
LIBPAM_TACPLUS_LICENSE = GPLv2+
LIBPAM_TACPLUS_LICENSE_FILES = COPYING
LIBPAM_TACPLUS_DEPENDENCIES = linux-pam
# Fetching from github, we need to generate the configure script
LIBPAM_TACPLUS_AUTORECONF = YES
LIBPAM_TACPLUS_AUTORECONF_OPTS = -I m4
LIBPAM_TACPLUS_INSTALL_STAGING = YES
LIBPAM_TACPLUS_CONF_ENV = \
ax_cv_check_cflags___fstack_protector_all=$(if $(BR2_TOOLCHAIN_HAS_SSP),yes,no)
LIBPAM_TACPLUS_CONF_OPTS = \
--enable-pamdir=/lib/security
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libpam-tacplus/libpam-tacplus.mk
|
mk
|
mit
| 786 |
Remove hardcoded path to libnl3 include directory
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
[Gustavo: update for 1.7.2]
diff -Nura libpcap-1.7.2.orig/configure.in libpcap-1.7.2/configure.in
--- libpcap-1.7.2.orig/configure.in 2015-03-14 08:02:05.538706347 -0300
+++ libpcap-1.7.2/configure.in 2015-03-14 08:17:22.637519050 -0300
@@ -461,14 +461,13 @@
#
# Yes, we have libnl 3.x.
#
- LIBS="${libnldir} -lnl-genl-3 -lnl-3 $LIBS"
+ LIBS="-lnl-genl-3 -lnl-3 $LIBS"
AC_DEFINE(HAVE_LIBNL,1,[if libnl exists])
AC_DEFINE(HAVE_LIBNL_3_x,1,[if libnl exists and is version 3.x])
AC_DEFINE(HAVE_LIBNL_NLE,1,[libnl has NLE_FAILURE])
AC_DEFINE(HAVE_LIBNL_SOCKETS,1,[libnl has new-style socket api])
- V_INCLS="$V_INCLS ${incdir}"
have_any_nl="yes"
- ],[], ${incdir} ${libnldir} -lnl-genl-3 -lnl-3 )
+ ],[], -lnl-genl-3 -lnl-3 )
if test x$have_any_nl = xno ; then
#
|
shibajee/buildroot
|
package/libpcap/0001-remove-libnl-include-path.patch
|
patch
|
mit
| 930 |
From 5b8dc4eaeab60d5effc33055e5bce9ac0d98d339 Mon Sep 17 00:00:00 2001
From: Baruch Siach <baruch@tkos.co.il>
Date: Tue, 2 Jun 2015 21:39:15 +0300
Subject: [PATCH] configure.in: fix detect of if_bonding.h on uclinux
noMMU Linux (uClinux) is also Linux
Upstream status: https://github.com/the-tcpdump-group/libpcap/pull/440
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
configure.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.in b/configure.in
index be4b29e2f8ba..31287d0dbe61 100644
--- a/configure.in
+++ b/configure.in
@@ -149,7 +149,7 @@ struct rtentry;
fi
case "$host_os" in
-linux*)
+linux*|uclinux*)
AC_CHECK_HEADERS(linux/sockios.h linux/if_bonding.h,,,
[
#include <sys/socket.h>
--
2.1.4
|
shibajee/buildroot
|
package/libpcap/0002-configure.in-fix-detect-of-if_bonding.h-on-uclinux.patch
|
patch
|
mit
| 752 |
config BR2_PACKAGE_LIBPCAP
bool "libpcap"
select BR2_PACKAGE_ZLIB
help
A system-independent library for user-level network packet capture.
http://www.tcpdump.org/
|
shibajee/buildroot
|
package/libpcap/Config.in
|
in
|
mit
| 173 |
# Locally calculated after checking pgp signature
sha256 7ad3112187e88328b85e46dce7a9b949632af18ee74d97ffc3f2b41fe7f448b0 libpcap-1.7.4.tar.gz
|
shibajee/buildroot
|
package/libpcap/libpcap.hash
|
hash
|
mit
| 143 |
################################################################################
#
# libpcap
#
################################################################################
LIBPCAP_VERSION = 1.7.4
LIBPCAP_SITE = http://www.tcpdump.org/release
LIBPCAP_LICENSE = BSD-3c
LIBPCAP_LICENSE_FILES = LICENSE
LIBPCAP_INSTALL_STAGING = YES
LIBPCAP_DEPENDENCIES = zlib host-flex host-bison
# We're patching configure.in
LIBPCAP_AUTORECONF = YES
LIBPCAP_CONF_ENV = \
ac_cv_linux_vers=2 \
ac_cv_header_linux_wireless_h=yes \
CFLAGS="$(LIBPCAP_CFLAGS)"
LIBPCAP_CFLAGS = $(TARGET_CFLAGS)
LIBPCAP_CONF_OPTS = --disable-yydebug --with-pcap=linux
LIBPCAP_CONFIG_SCRIPTS = pcap-config
# Omit -rpath from pcap-config output
define LIBPCAP_CONFIG_REMOVE_RPATH
$(SED) 's/^V_RPATH_OPT=.*/V_RPATH_OPT=""/g' $(@D)/pcap-config
endef
LIBPCAP_POST_BUILD_HOOKS = LIBPCAP_CONFIG_REMOVE_RPATH
# On purpose, not compatible with bluez5
ifeq ($(BR2_PACKAGE_BLUEZ_UTILS),y)
LIBPCAP_DEPENDENCIES += bluez_utils
else
LIBPCAP_CONF_OPTS += --disable-bluetooth
endif
ifeq ($(BR2_PACKAGE_DBUS),y)
LIBPCAP_CONF_OPTS += --enable-dbus
LIBPCAP_DEPENDENCIES += dbus
else
LIBPCAP_CONF_OPTS += --disable-dbus
endif
ifeq ($(BR2_PACKAGE_LIBUSB),y)
LIBPCAP_CONF_OPTS += --enable-canusb
LIBPCAP_DEPENDENCIES += libusb
else
LIBPCAP_CONF_OPTS += --disable-canusb
endif
ifeq ($(BR2_PACKAGE_LIBNL),y)
LIBPCAP_DEPENDENCIES += libnl
LIBPCAP_CFLAGS += "-I$(STAGING_DIR)/usr/include/libnl3"
else
LIBPCAP_CONF_OPTS += --without-libnl
endif
# microblaze/sparc64 need -fPIC instead of -fpic
ifeq ($(BR2_microblaze)$(BR2_sparc64),y)
LIBPCAP_CFLAGS += -fPIC
endif
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libpcap/libpcap.mk
|
mk
|
mit
| 1,644 |
Fix compilation error with musl-based toolchain
linux_sysfs.c:751:15: error: 'PATH_MAX' undeclared (first use in this function)
char name[PATH_MAX];
Patch applied upstream:
http://cgit.freedesktop.org/xorg/lib/libpciaccess/commit/?id=8ea3af620a2d4ad5648917b4a0ef2b23ff566774
Signed-off-by: Felix Janda <felix.janda at posteo.de>
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
diff -uNr libpciaccess-0.13.3.org/src/linux_sysfs.c libpciaccess-0.13.3/src/linux_sysfs.c
--- libpciaccess-0.13.3.org/src/linux_sysfs.c 2015-02-04 00:59:14.000000000 +0100
+++ libpciaccess-0.13.3/src/linux_sysfs.c 2015-04-10 21:57:35.000000000 +0200
@@ -44,6 +44,7 @@
#include <sys/mman.h>
#include <dirent.h>
#include <errno.h>
+#include <limits.h>
#if defined(__i386__) || defined(__x86_64__) || defined(__arm__)
#include <sys/io.h>
|
shibajee/buildroot
|
package/libpciaccess/0001-limits_h.patch
|
patch
|
mit
| 833 |
Fix musl build
Inspired by http://patchwork.openembedded.org/patch/111661/
"inb/outb are implemented for ARM on glibc but not on linux in general
therefore the conditional has to reflect that"
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
diff -uNr libpciaccess-0.13.4.org/src/linux_sysfs.c libpciaccess-0.13.4/src/linux_sysfs.c
--- libpciaccess-0.13.4.org/src/linux_sysfs.c 2015-05-01 06:44:47.000000000 +0200
+++ libpciaccess-0.13.4/src/linux_sysfs.c 2016-01-24 15:27:57.141562678 +0100
@@ -49,7 +49,7 @@
#include <dirent.h>
#include <errno.h>
-#if defined(__i386__) || defined(__x86_64__) || defined(__arm__)
+#if defined(__i386__) || defined(__x86_64__)
#include <sys/io.h>
#else
#define inb(x) -1
|
shibajee/buildroot
|
package/libpciaccess/0002-musl-arm.patch
|
patch
|
mit
| 719 |
config BR2_PACKAGE_LIBPCIACCESS
bool "libpciaccess"
help
X.Org libpciaccess
|
shibajee/buildroot
|
package/libpciaccess/Config.in
|
in
|
mit
| 81 |
# From http://lists.x.org/archives/xorg-announce/2015-April/002590.html
sha256 07f864654561e4ac8629a0ef9c8f07fbc1f8592d1b6c418431593e9ba2cf2fcf libpciaccess-0.13.4.tar.bz2
|
shibajee/buildroot
|
package/libpciaccess/libpciaccess.hash
|
hash
|
mit
| 172 |
################################################################################
#
# libpciaccess
#
################################################################################
LIBPCIACCESS_VERSION = 0.13.4
LIBPCIACCESS_SOURCE = libpciaccess-$(LIBPCIACCESS_VERSION).tar.bz2
LIBPCIACCESS_SITE = http://xorg.freedesktop.org/releases/individual/lib
LIBPCIACCESS_LICENSE = MIT
LIBPCIACCESS_LICENSE_FILES = COPYING
LIBPCIACCESS_INSTALL_STAGING = YES
ifeq ($(BR2_PACKAGE_ZLIB),y)
LIBPCIACCESS_CONF_OPTS += --with-zlib
LIBPCIACCESS_DEPENDENCIES += zlib
else
LIBPCIACCESS_CONF_OPTS += --without-zlib
endif
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libpciaccess/libpciaccess.mk
|
mk
|
mit
| 634 |
config BR2_PACKAGE_LIBPFM4
bool "libpfm4"
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
help
A helper library to help encode Performance Events to use with
Operating system kernels performance monitoring interfaces.
http://perfmon2.sourceforge.net/
comment "libpfm4 needs a toolchain w/ NPTL"
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
shibajee/buildroot
|
package/libpfm4/Config.in
|
in
|
mit
| 347 |
# From http://sourceforge.net/projects/perfmon2/files/libpfm4/:
sha1 2ed06d6e746f7b1cd4b70e9736e621052f60d625 libpfm-4.6.0.tar.gz
md5 5077b9022440e4951d96f2d0e73bd487 libpfm-4.6.0.tar.gz
# Locally calculated
sha256 5ab1e5b0472550f9037a8800834f6bc3b927690070f69fac0b67284b4b05fd5f libpfm-4.6.0.tar.gz
|
shibajee/buildroot
|
package/libpfm4/libpfm4.hash
|
hash
|
mit
| 306 |
################################################################################
#
# libpfm4
#
################################################################################
LIBPFM4_VERSION = 4.6.0
LIBPFM4_SOURCE = libpfm-$(LIBPFM4_VERSION).tar.gz
LIBPFM4_SITE = http://downloads.sourceforge.net/project/perfmon2/libpfm4
LIBPFM4_LICENSE = libpfm4 license
LIBPFM4_LICENSE_FILES = COPYING
LIBPFM4_INSTALL_STAGING = YES
LIBPFM4_FLAGS = SYS=Linux ARCH=$(BR2_ARCH) \
CC="$(TARGET_CC)" LDCONFIG=true \
CONFIG_PFMLIB_SHARED=$(if $(BR2_STATIC_LIBS),n,y) \
DBG=
define LIBPFM4_BUILD_CMDS
$(MAKE) -C $(@D) $(LIBPFM4_FLAGS)
endef
define LIBPFM4_INSTALL_STAGING_CMDS
make -C $(@D) $(LIBPFM4_FLAGS) PREFIX=$(STAGING_DIR)/usr install
endef
define LIBPFM4_INSTALL_TARGET_CMDS
make -C $(@D) $(LIBPFM4_FLAGS) PREFIX=$(TARGET_DIR)/usr install
endef
$(eval $(generic-package))
|
shibajee/buildroot
|
package/libpfm4/libpfm4.mk
|
mk
|
mit
| 872 |
config BR2_PACKAGE_LIBPHIDGET
bool "libphidget"
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_LIBUSB
help
The libphidget library provides an API for controlling Phidgets
USB devices. The library translates API function calls to libusb
function calls to control attached Phidgets devices that provide
GPIO's, DAC's, accelerometers, servo motors, and other capabilities
either singly or on combo devices.
To use libphidget for controlling locally attached devices you
need to set up the userspace USB device tree /dev/bus/usb. See
file udev/99-phidgets.rules.
The libphidget library also contains an API for sending commands
to a local or remote phidgetwebservice using HTTP. The
phidgetwebservice then translates HTTP requests to libphidget API
function calls to control locally attached Phidgets devices.
http://phidgets.com/
comment "libphidget needs a toolchain w/ threads, dynamic library"
depends on !BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_STATIC_LIBS
|
shibajee/buildroot
|
package/libphidget/Config.in
|
in
|
mit
| 1,055 |
# locally computed
sha256 2d496828a085ada8ff139da9306bd2b8cb987798fee93caf0089dc399195e238 libphidget_2.1.8.20140319.tar.gz
|
shibajee/buildroot
|
package/libphidget/libphidget.hash
|
hash
|
mit
| 126 |
################################################################################
#
# libphidget
#
################################################################################
LIBPHIDGET_VERSION = 2.1.8.20140319
LIBPHIDGET_SOURCE = libphidget_$(LIBPHIDGET_VERSION).tar.gz
LIBPHIDGET_SITE = http://www.phidgets.com/downloads/libraries
LIBPHIDGET_DEPENDENCIES = libusb
LIBPHIDGET_CONF_OPTS = --disable-ldconfig
LIBPHIDGET_INSTALL_STAGING = YES
LIBPHIDGET_LICENSE = LGPLv3
LIBPHIDGET_LICENSE_FILES = COPYING
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libphidget/libphidget.mk
|
mk
|
mit
| 539 |
From ba1057d74aac6c2dde5477bd6a2deea79f14962c Mon Sep 17 00:00:00 2001
From: Luca Ceresoli <luca@lucaceresoli.net>
Date: Sat, 12 Mar 2016 15:19:34 +0100
Subject: [PATCH 1/2] Use mutex types compatible with musl (fixes musl build)
PTHREAD_MUTEX_FAST_NP and PTHREAD_MUTEX_RECURSIVE_NP are not defined
in the musl C library. Use values that map to the same mutex type in
GNU libc and uClibc-ng.
Fixes the following build errors when building with musl:
../src/pj/os_core_unix.c: In function 'init_mutex':
../src/pj/os_core_unix.c:1128:40: error: 'PTHREAD_MUTEX_FAST_NP' undeclared (first use in this function)
rc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_FAST_NP);
^
../src/pj/os_core_unix.c:1128:40: note: each undeclared identifier is reported only once for each function it appears in
../src/pj/os_core_unix.c:1138:40: error: 'PTHREAD_MUTEX_RECURSIVE_NP' undeclared (first use in this function)
rc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
^
Original patch:
http://git.alpinelinux.org/cgit/aports/plain/main/pjproject/musl-fixes.patch
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
---
pjlib/src/pj/os_core_unix.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pjlib/src/pj/os_core_unix.c b/pjlib/src/pj/os_core_unix.c
index 1c87b2f..f08ba27 100644
--- a/pjlib/src/pj/os_core_unix.c
+++ b/pjlib/src/pj/os_core_unix.c
@@ -1125,7 +1125,7 @@ static pj_status_t init_mutex(pj_mutex_t *mutex, const char *name, int type)
if (type == PJ_MUTEX_SIMPLE) {
#if (defined(PJ_LINUX) && PJ_LINUX!=0) || \
defined(PJ_HAS_PTHREAD_MUTEXATTR_SETTYPE)
- rc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_FAST_NP);
+ rc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL);
#elif (defined(PJ_RTEMS) && PJ_RTEMS!=0) || \
defined(PJ_PTHREAD_MUTEXATTR_T_HAS_RECURSIVE)
/* Nothing to do, default is simple */
@@ -1135,7 +1135,7 @@ static pj_status_t init_mutex(pj_mutex_t *mutex, const char *name, int type)
} else {
#if (defined(PJ_LINUX) && PJ_LINUX!=0) || \
defined(PJ_HAS_PTHREAD_MUTEXATTR_SETTYPE)
- rc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
+ rc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
#elif (defined(PJ_RTEMS) && PJ_RTEMS!=0) || \
defined(PJ_PTHREAD_MUTEXATTR_T_HAS_RECURSIVE)
// Phil Torre <ptorre@zetron.com>:
--
1.9.1
|
shibajee/buildroot
|
package/libpjsip/0001-Use-mutex-types-compatible-with-musl-fixes-musl-buil.patch
|
patch
|
mit
| 2,469 |
From cca93ce25f993c97ef3d96fa32461d5717c30518 Mon Sep 17 00:00:00 2001
From: Luca Ceresoli <luca@lucaceresoli.net>
Date: Sat, 12 Mar 2016 15:31:47 +0100
Subject: [PATCH 2/2] Replace __sched_priority with sched_priority(fixes musl
build)
The musl C library defines sched_priority, not __sched_priority as GNU
libc and uClibc-ng do. Use sched_priority instead.
This does not break compatibility with GNU libc and uClibc-ng because
both define in sched.h:
#define sched_priority __sched_priority
Fixes the following build errors when building with musl:
../src/samples/siprtp.c: In function 'boost_priority':
../src/samples/siprtp.c:1137:7: error: 'struct sched_param' has no member named '__sched_priority'
tp.__sched_priority = max_prio;
^
In file included from /home/murray/devel/buildroot/test-musl-eabi/build/libpjsip-2.4.5/pjlib/include/pj/except.h:30:0,
from /home/murray/devel/buildroot/test-musl-eabi/build/libpjsip-2.4.5/pjlib/include/pjlib.h:35,
from ../src/samples/siprtp.c:76:
../src/samples/siprtp.c:1146:18: error: 'struct sched_param' has no member named '__sched_priority'
policy, tp.__sched_priority));
^
Original patch:
http://git.alpinelinux.org/cgit/aports/plain/main/pjproject/musl-fixes.patch
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
---
pjsip-apps/src/samples/siprtp.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/pjsip-apps/src/samples/siprtp.c b/pjsip-apps/src/samples/siprtp.c
index 796464f..6e32a8f 100644
--- a/pjsip-apps/src/samples/siprtp.c
+++ b/pjsip-apps/src/samples/siprtp.c
@@ -1134,7 +1134,7 @@ static void boost_priority(void)
PJ_RETURN_OS_ERROR(rc));
return;
}
- tp.__sched_priority = max_prio;
+ tp.sched_priority = max_prio;
rc = sched_setscheduler(0, POLICY, &tp);
if (rc != 0) {
@@ -1143,7 +1143,7 @@ static void boost_priority(void)
}
PJ_LOG(4, (THIS_FILE, "New process policy=%d, priority=%d",
- policy, tp.__sched_priority));
+ policy, tp.sched_priority));
/*
* Adjust thread scheduling algorithm and priority
@@ -1156,10 +1156,10 @@ static void boost_priority(void)
}
PJ_LOG(4, (THIS_FILE, "Old thread policy=%d, priority=%d",
- policy, tp.__sched_priority));
+ policy, tp.sched_priority));
policy = POLICY;
- tp.__sched_priority = max_prio;
+ tp.sched_priority = max_prio;
rc = pthread_setschedparam(pthread_self(), policy, &tp);
if (rc != 0) {
@@ -1169,7 +1169,7 @@ static void boost_priority(void)
}
PJ_LOG(4, (THIS_FILE, "New thread policy=%d, priority=%d",
- policy, tp.__sched_priority));
+ policy, tp.sched_priority));
}
#else
--
1.9.1
|
shibajee/buildroot
|
package/libpjsip/0002-Replace-__sched_priority-with-sched_priority-fixes-m.patch
|
patch
|
mit
| 2,786 |
config BR2_PACKAGE_LIBPJSIP
bool "libpjsip"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_HAS_THREADS
select BR2_PACKAGE_LIBSRTP
help
PJSIP is a free and open source multimedia communication
library written in C language implementing standard based
protocols such as: SIP, SDP, RTP, STUN, TURN, and ICE.
http://www.pjsip.org
comment "libpjsip needs a toolchain w/ C++, threads"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
shibajee/buildroot
|
package/libpjsip/Config.in
|
in
|
mit
| 474 |
# From http://www.pjsip.org/release/2.4.5/MD5SUM.TXT
md5 f58b3485977b3a700256203a554b3869 pjproject-2.4.5.tar.bz2
# Locally computed
sha256 086f5e70dcaee312b66ddc24dac6ef85e6f1fec4eed00ff2915cebe0ee3cdd8d pjproject-2.4.5.tar.bz2
|
shibajee/buildroot
|
package/libpjsip/libpjsip.hash
|
hash
|
mit
| 231 |
################################################################################
#
# libpjsip
#
################################################################################
LIBPJSIP_VERSION = 2.4.5
LIBPJSIP_SOURCE = pjproject-$(LIBPJSIP_VERSION).tar.bz2
LIBPJSIP_SITE = http://www.pjsip.org/release/$(LIBPJSIP_VERSION)
LIBPJSIP_DEPENDENCIES = libsrtp
LIBPJSIP_LICENSE = GPLv2+
LIBPJSIP_LICENSE_FILES = COPYING
LIBPJSIP_INSTALL_STAGING = YES
LIBPJSIP_MAKE = $(MAKE1)
LIBPJSIP_CFLAGS = $(TARGET_CFLAGS) -DPJ_HAS_IPV6=1
# relocation truncated to fit: R_68K_GOT16O
ifeq ($(BR2_m68k_cf),y)
LIBPJSIP_CFLAGS += -mxgot
endif
LIBPJSIP_CONF_ENV = \
LD="$(TARGET_CC)" \
CFLAGS="$(LIBPJSIP_CFLAGS)"
LIBPJSIP_CONF_OPTS = \
--disable-sound \
--disable-gsm-codec \
--disable-speex-codec \
--disable-speex-aec \
--disable-resample \
--disable-video \
--disable-opencore-amr \
--disable-g7221-codec \
--disable-ilbc-codec \
--with-external-srtp=$(STAGING_DIR)/usr
ifeq ($(BR2_PACKAGE_OPENSSL),y)
LIBPJSIP_DEPENDENCIES += openssl
LIBPJSIP_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr
else
LIBPJSIP_CONF_OPTS += --disable-ssl
endif
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
LIBPJSIP_DEPENDENCIES += util-linux
endif
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libpjsip/libpjsip.mk
|
mk
|
mit
| 1,249 |
From 65ba437ed5514dd5762a796d349ed5db49e40fe7 Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Date: Wed, 29 Jul 2015 21:26:16 +0200
Subject: [PATCH] platform-config.cmake: fix paths for cross-compilation
Headers and library paths in platform-config.cmake must take into
account ${CMAKE_FIND_ROOT_PATH} to work in cross-compilation.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
platform-config.cmake.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/platform-config.cmake.in b/platform-config.cmake.in
index 7fe35fe..78b5085 100644
--- a/platform-config.cmake.in
+++ b/platform-config.cmake.in
@@ -10,16 +10,16 @@
#
# propagate these properties from one build system to the other
set (platform_VERSION "@platform_VERSION_MAJOR@.@platform_VERSION_MINOR@")
-set (platform_INCLUDE_DIRS @platform_INCLUDE_DIRS@ @CMAKE_INSTALL_PREFIX@/include)
+set (platform_INCLUDE_DIRS ${CMAKE_FIND_ROOT_PATH}/@platform_INCLUDE_DIRS@ ${CMAKE_FIND_ROOT_PATH}/@CMAKE_INSTALL_PREFIX@/include)
set (platform_LIBRARY_DIRS "@CMAKE_LIBRARY_OUTPUT_DIRECTORY@")
set (platform_LINKER_FLAGS "@platform_LINKER_FLAGS@")
set (platform_CONFIG_VARS "@platform_CONFIG_VARS@")
# libraries come from the build tree where this file was generated
if(WIN32)
- set (platform_LIBRARY "@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@/platform.lib")
+ set (platform_LIBRARY "${CMAKE_FIND_ROOT_PATH}/@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@/platform.lib")
else(WIN32)
- set (platform_LIBRARY "-L@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@ -lplatform")
+ set (platform_LIBRARY "-L${CMAKE_FIND_ROOT_PATH}/@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@ -lplatform")
endif(WIN32)
set (platform_LIBRARIES ${platform_LIBRARY} "@platform_LIBRARIES@")
mark_as_advanced (platform_LIBRARY)
--
2.5.0
|
shibajee/buildroot
|
package/libplatform/0001-platform-config.cmake-fix-paths-for-cross-compilatio.patch
|
patch
|
mit
| 1,863 |
config BR2_PACKAGE_LIBPLATFORM
bool
help
Platform support library used by libCEC and binary add-ons for Kodi
https://github.com/Pulse-Eight/platform
|
shibajee/buildroot
|
package/libplatform/Config.in
|
in
|
mit
| 158 |
# Locally computed
sha256 3603ead8b16a48cb35b1e6dea330a693f10552b1a6ea036c5db9ec248cd8baf5 libplatform-feafe68e3e0b02c3261aefb3d711863ef6fadd38.tar.gz
|
shibajee/buildroot
|
package/libplatform/libplatform.hash
|
hash
|
mit
| 153 |
################################################################################
#
# libplatform
#
################################################################################
LIBPLATFORM_VERSION = feafe68e3e0b02c3261aefb3d711863ef6fadd38
LIBPLATFORM_SITE = $(call github,Pulse-Eight,platform,$(LIBPLATFORM_VERSION))
LIBPLATFORM_LICENSE = GPLv2+, PHP license v3.01
LIBPLATFORM_LICENSE_FILES = src/os.h src/util/fstrcmp.c
LIBPLATFORM_INSTALL_STAGING = YES
$(eval $(cmake-package))
|
shibajee/buildroot
|
package/libplatform/libplatform.mk
|
mk
|
mit
| 486 |
Add -fPIC to CFLAGS
-fPIC is needed to build shared library code.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Index: b/src/Makefile
===================================================================
--- a/src/Makefile
+++ b/src/Makefile
@@ -9,6 +9,7 @@
SHARED_LIBNAME_VERSION = $(SHARED_LIBNAME).$(VERSION)
SHARED_LIBNAME_MAJOR = $(SHARED_LIBNAME).$(shell echo $(VERSION) | cut -f1 -d.)
SHARED_LIBNAME_FLAGS = -shared -Wl,-soname,$(SHARED_LIBNAME_MAJOR)
+CFLAGS = -fPIC
ifeq ($(BUILD_STATIC),yes)
BUILD_RULES += lib_static
|
shibajee/buildroot
|
package/libplayer/0001-add-fpic.patch
|
patch
|
mit
| 562 |
From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Subject: [PATCH] libplayer: Fix handling of cflags in configure.
The cflags returned by pkg-config or another config script may consist
of several arguments for the compiler. These should not be quoted together
into a single argument.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
Sent upstream to devel@geexbox.org on July 11, 2012.
---
diff -rup libplayer-2.0.1.orig/configure libplayer-2.0.1/configure
--- libplayer-2.0.1.orig/configure 2010-10-03 19:26:11.000000000 +0200
+++ libplayer-2.0.1/configure 2012-07-10 23:33:02.783701852 +0200
@@ -342,7 +342,7 @@ check_libconfig(){
err=1
if `which "$config" 1>/dev/null 2>&1`; then
cflags=`$config $ccflags`
- [ -n "$cflags" ] && check_cflags "$cflags"
+ [ -n "$cflags" ] && check_cflags $cflags
libs=`$config $clibs`
if [ -n "$libs" ]; then
temp_extralibs "$libs"
@@ -364,7 +364,7 @@ check_libconfig_exists(){
err=1
if `which "$config" 1>/dev/null 2>&1`; then
cflags=`$config $ccflags`
- [ -n "$cflags" ] && temp_cflags "$cflags"
+ [ -n "$cflags" ] && temp_cflags $cflags
libs=`$config $clibs`
if [ -n "$libs" ]; then
temp_extralibs "$libs"
@@ -386,7 +386,7 @@ check_pkgconfig(){
err=1
if `which pkg-config 1>/dev/null 2>&1`; then
cflags=`pkg-config $pkg $ccflags`
- [ -n "$cflags" ] && check_cflags "$cflags"
+ [ -n "$cflags" ] && check_cflags $cflags
libs=`pkg-config $pkg $clibs`
if [ -n "$libs" ]; then
temp_extralibs "$libs"
|
shibajee/buildroot
|
package/libplayer/0002-fix-configure-cflags.patch
|
patch
|
mit
| 1,574 |
config BR2_PACKAGE_LIBPLAYER
depends on BR2_TOOLCHAIN_HAS_THREADS
bool "libplayer"
help
libplayer provides a generic A/V API that relies on various multimedia
player for Linux systems. It currently supports MPlayer, xine VLC and
GStreamer only
http://libplayer.geexbox.org/
if BR2_PACKAGE_LIBPLAYER
config BR2_PACKAGE_LIBPLAYER_MPLAYER
bool "mplayer backend"
depends on BR2_PACKAGE_MPLAYER_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # mplayer
select BR2_PACKAGE_MPLAYER
config BR2_PACKAGE_LIBPLAYER_GSTREAMER
bool "gstreamer backend"
depends on BR2_USE_WCHAR # glib2
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
depends on BR2_USE_MMU # glib2
select BR2_PACKAGE_GSTREAMER
comment "gstreamer backend needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
config BR2_PACKAGE_LIBPLAYER_PYTHON
depends on BR2_PACKAGE_PYTHON
depends on BROKEN # player_init params, builds for host
bool "Libplayer python bindings"
endif
comment "libplayer needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
shibajee/buildroot
|
package/libplayer/Config.in
|
in
|
mit
| 1,106 |
# Locally calculated
sha256 aa5eeb54f773bc9cad2733e4a0b5870208fc7f75024515ea87e55f64653e9d65 libplayer-2.0.1.tar.bz2
|
shibajee/buildroot
|
package/libplayer/libplayer.hash
|
hash
|
mit
| 117 |
################################################################################
#
# libplayer
#
################################################################################
LIBPLAYER_VERSION = 2.0.1
LIBPLAYER_SITE = http://libplayer.geexbox.org/releases
LIBPLAYER_SOURCE = libplayer-$(LIBPLAYER_VERSION).tar.bz2
LIBPLAYER_LICENSE = LGPLv2.1+
LIBPLAYER_LICENSE_FILES = COPYING
# When passing the standard buildroot configure arguments, the configure script
# breaks on --target and --host options. Thus we need to define a configure cmd
# ourselves.
define LIBPLAYER_CONFIGURE_CMDS
(cd $(@D) && rm -rf config.cache && \
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_CONFIGURE_ARGS) \
./configure \
--prefix=/usr \
--cross-compile \
$(SHARED_STATIC_LIBS_OPTS) \
$(LIBPLAYER_CONF_OPTS) \
)
endef
ifeq ($(BR2_PACKAGE_LIBPLAYER_MPLAYER),y)
LIBPLAYER_DEPENDENCIES += mplayer
LIBPLAYER_CONF_OPTS += --enable-mplayer
else
LIBPLAYER_CONF_OPTS += --disable-mplayer
endif
ifeq ($(BR2_PACKAGE_LIBPLAYER_GSTREAMER),y)
LIBPLAYER_DEPENDENCIES += gstreamer
LIBPLAYER_CONF_OPTS += --enable-gstreamer
else
LIBPLAYER_CONF_OPTS += --disable-gstreamer
endif
ifeq ($(BR2_PACKAGE_LIBPLAYER_PYTHON),y)
LIBPLAYER_DEPENDENCIES += python
LIBPLAYER_CONF_OPTS += --enable-binding-python
endif
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libplayer/libplayer.mk
|
mk
|
mit
| 1,307 |
config BR2_PACKAGE_LIBPLIST
bool "libplist"
depends on BR2_INSTALL_LIBSTDCPP
select BR2_PACKAGE_LIBXML2
help
libplist is a client for manipulating Apple Property List
(.plist) files
http://www.libimobiledevice.org/
comment "libplist needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
|
shibajee/buildroot
|
package/libplist/Config.in
|
in
|
mit
| 309 |
# Locally calculated
sha256 0effdedcb3de128c4930d8c03a3854c74c426c16728b8ab5f0a5b6bdc0b644be libplist-1.12.tar.bz2
|
shibajee/buildroot
|
package/libplist/libplist.hash
|
hash
|
mit
| 116 |
################################################################################
#
# libplist
#
################################################################################
LIBPLIST_VERSION = 1.12
LIBPLIST_SOURCE = libplist-$(LIBPLIST_VERSION).tar.bz2
LIBPLIST_SITE = http://www.libimobiledevice.org/downloads
LIBPLIST_DEPENDENCIES = libxml2 host-pkgconf
LIBPLIST_INSTALL_STAGING = YES
LIBPLIST_LICENSE = LGPLv2.1+
LIBPLIST_LICENSE_FILES = COPYING
# Straight out of the git tree:
LIBPLIST_AUTORECONF = YES
# Disable building Python bindings, because it requires host-cython, which
# is not packaged in Buildroot at all.
LIBPLIST_CONF_OPTS = --without-cython
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libplist/libplist.mk
|
mk
|
mit
| 695 |
From 60c3ee917c8e7a4760b1ef7c3dc2b44a615150d3 Mon Sep 17 00:00:00 2001
From: Gustavo Zacarias <gustavo@zacarias.com.ar>
Date: Thu, 26 May 2016 16:26:18 -0300
Subject: [PATCH] Disable pngfix and png-fix-itxt
Disable the new pngfix and png-fix-itxt tools: they take up space, fail
to build on some oddball toolchain configurations and aren't
expected/needed in a non-interactive embedded system.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
Makefile.am | 2 +-
Makefile.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 7212951..3430dca 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -18,7 +18,7 @@ check_PROGRAMS += timepng
endif
# Utilities - installed
-bin_PROGRAMS= pngfix png-fix-itxt
+bin_PROGRAMS=
# This ensures that pnglibconf.h gets built at the start of 'make all' or
# 'make check', but it does not add dependencies to the individual programs,
diff --git a/Makefile.in b/Makefile.in
index a66f6aa..4e67782 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -104,7 +104,7 @@ check_PROGRAMS = pngtest$(EXEEXT) pngunknown$(EXEEXT) \
pngstest$(EXEEXT) pngvalid$(EXEEXT) pngimage$(EXEEXT) \
$(am__EXEEXT_1)
@HAVE_CLOCK_GETTIME_TRUE@am__append_1 = timepng
-bin_PROGRAMS = pngfix$(EXEEXT) png-fix-itxt$(EXEEXT)
+bin_PROGRAMS =
@PNG_ARM_NEON_TRUE@am__append_2 = arm/arm_init.c\
@PNG_ARM_NEON_TRUE@ arm/filter_neon.S arm/filter_neon_intrinsics.c
--
2.7.3
|
shibajee/buildroot
|
package/libpng/0001-Disable-pngfix-and-png-fix-itxt.patch
|
patch
|
mit
| 1,445 |
From 473fdecd9a580b45251480b8ccbbb1927c598310 Mon Sep 17 00:00:00 2001
From: Gustavo Zacarias <gustavo@zacarias.com.ar>
Date: Thu, 26 May 2016 16:27:13 -0300
Subject: [PATCH] Don't append prefix to symbol names in version script
Even if Blackfin GNU toolchain add prefix '_' to all symbols,
symbol prefix is not accepted in the link flag --version-script.
Don't append prefix in the symbols in the version script file.
Original patch by: Sonic Zhang <sonic.zhang@analog.com>
[Gustavo: update for 1.6.22]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
Makefile.am | 2 +-
Makefile.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 3430dca..db6a7a2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -236,7 +236,7 @@ contrib/tools/pngfix.o: pnglibconf.h
# interfering with the symbol file format.
SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0'\
-DPNGLIB_VERSION='@PNGLIB_VERSION@'\
- -DSYMBOL_PREFIX='$(SYMBOL_PREFIX)'\
+ -DSYMBOL_PREFIX=''\
-DPNG_NO_USE_READ_MACROS -DPNG_BUILDING_SYMBOL_TABLE
if DO_PNG_PREFIX
diff --git a/Makefile.in b/Makefile.in
index 4e67782..5f468d9 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -754,7 +754,7 @@ SUFFIXES = .chk .out
# interfering with the symbol file format.
SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0' \
-DPNGLIB_VERSION='@PNGLIB_VERSION@' \
- -DSYMBOL_PREFIX='$(SYMBOL_PREFIX)' -DPNG_NO_USE_READ_MACROS \
+ -DSYMBOL_PREFIX='' -DPNG_NO_USE_READ_MACROS \
-DPNG_BUILDING_SYMBOL_TABLE $(am__append_6)
# EXT_LIST is a list of the possibly library directory extensions, this exists
--
2.7.3
|
shibajee/buildroot
|
package/libpng/0002-Don-t-append-prefix-to-symbol-names-in-version-script.patch
|
patch
|
mit
| 1,727 |
config BR2_PACKAGE_LIBPNG
bool "libpng"
select BR2_PACKAGE_ZLIB
help
Library for handling PNG (Portable Network Graphics)
images.
http://www.libpng.org/
|
shibajee/buildroot
|
package/libpng/Config.in
|
in
|
mit
| 166 |
# From http://sourceforge.net/projects/libpng/files/libpng16/1.6.23/
md5 9b320a05ed4db1f3f0865c8a951fd9aa libpng-1.6.23.tar.xz
sha1 4857fb8dbd5ca7ddacc40c183e340b9ffa34a097 libpng-1.6.23.tar.xz
|
shibajee/buildroot
|
package/libpng/libpng.hash
|
hash
|
mit
| 194 |
################################################################################
#
# libpng
#
################################################################################
LIBPNG_VERSION = 1.6.23
LIBPNG_SERIES = 16
LIBPNG_SOURCE = libpng-$(LIBPNG_VERSION).tar.xz
LIBPNG_SITE = http://downloads.sourceforge.net/project/libpng/libpng${LIBPNG_SERIES}/$(LIBPNG_VERSION)
LIBPNG_LICENSE = libpng license
LIBPNG_LICENSE_FILES = LICENSE
LIBPNG_INSTALL_STAGING = YES
LIBPNG_DEPENDENCIES = host-pkgconf zlib
HOST_LIBPNG_DEPENDENCIES = host-pkgconf host-zlib
LIBPNG_CONFIG_SCRIPTS = libpng$(LIBPNG_SERIES)-config libpng-config
LIBPNG_CONF_OPTS = $(if $(BR2_ARM_CPU_HAS_NEON),--enable-arm-neon=yes,--enable-arm-neon=no)
$(eval $(autotools-package))
$(eval $(host-autotools-package))
|
shibajee/buildroot
|
package/libpng/libpng.mk
|
mk
|
mit
| 776 |
config BR2_PACKAGE_LIBPQXX
bool "libpqxx"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_PACKAGE_POSTGRESQL
help
libpqxx is the official C++ client API for PostgreSQL, the
enterprise-strength open-source relational database.
http://pqxx.org/development/libpqxx/
comment "libpqxx needs toolchain w/ C++ support"
depends on !BR2_INSTALL_LIBSTDCPP
depends on BR2_PACKAGE_POSTGRESQL
|
shibajee/buildroot
|
package/libpqxx/Config.in
|
in
|
mit
| 397 |
# From: http://pqxx.org/download/software/libpqxx/libpqxx-4.0.1.tar.gz.md5sum
md5 6ea888b9ba85dd7cef1b182dc5f223a2 libpqxx-4.0.1.tar.gz
# Locally computed after verifying md5sum:
sha256 097ceda2797761ce517faa5bee186c883df1c407cb2aada613a16773afeedc38 libpqxx-4.0.1.tar.gz
|
shibajee/buildroot
|
package/libpqxx/libpqxx.hash
|
hash
|
mit
| 274 |
################################################################################
#
# libpqxx
#
################################################################################
LIBPQXX_VERSION = 4.0.1
LIBPQXX_SITE = http://pqxx.org/download/software/libpqxx
LIBPQXX_INSTALL_STAGING = YES
LIBPQXX_DEPENDENCIES = postgresql
LIBPQXX_LICENSE = BSD-3c
LIBPQXX_LICENSE_FILES = COPYING
LIBPQXX_CONF_ENV += ac_cv_path_PG_CONFIG=$(STAGING_DIR)/usr/bin/pg_config
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libpqxx/libpqxx.mk
|
mk
|
mit
| 484 |
config BR2_PACKAGE_LIBPTHREAD_STUBS
bool "libpthread-stubs"
depends on BR2_TOOLCHAIN_HAS_THREADS
help
This library provides weak aliases for pthread functions not
provided in libc or otherwise available by default.
http://xcb.freedesktop.org/
comment "libpthread-stubs needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
shibajee/buildroot
|
package/libpthread-stubs/Config.in
|
in
|
mit
| 352 |
# From http://www.x.org/archive/current/src/everything/CHECKSUMS
sha256 35b6d54e3cc6f3ba28061da81af64b9a92b7b757319098172488a660e3d87299 libpthread-stubs-0.3.tar.bz2
|
shibajee/buildroot
|
package/libpthread-stubs/libpthread-stubs.hash
|
hash
|
mit
| 166 |
################################################################################
#
# libpthread-stubs
#
################################################################################
LIBPTHREAD_STUBS_VERSION = 0.3
LIBPTHREAD_STUBS_SOURCE = libpthread-stubs-$(LIBPTHREAD_STUBS_VERSION).tar.bz2
LIBPTHREAD_STUBS_SITE = http://xcb.freedesktop.org/dist
LIBPTHREAD_STUBS_LICENSE = MIT
LIBPTHREAD_STUBS_LICENSE_FILES = COPYING
LIBPTHREAD_STUBS_INSTALL_STAGING = YES
ifeq ($(BR2_STATIC_LIBS),y)
LIBPTHREAD_STUBS_CONF_ENV += LDFLAGS="$(TARGET_LDFLAGS) -pthread"
endif
$(eval $(autotools-package))
$(eval $(host-autotools-package))
|
shibajee/buildroot
|
package/libpthread-stubs/libpthread-stubs.mk
|
mk
|
mit
| 629 |
From 2d0450bfa3fb7003098da1a7fe24c3ae140912dc Mon Sep 17 00:00:00 2001
From: Gregory Hermant <gregory.hermant@calao-systems.com>
Date: Mon, 22 Oct 2012 15:11:53 +0200
Subject: [PATCH] pthsem build on Linux 3.x host
Signed-off-by: Michael Markstaller <mm@elabnet.de>
Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
---
acinclude.m4 | 2 ++
1 file changed, 2 insertions(+)
diff --git a/acinclude.m4 b/acinclude.m4
index 03b42de..fea9bc8 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -892,6 +892,8 @@ case $PLATFORM in
case "x`uname -r`" in
changequote(, )dnl
x2.[23456789]* ) ;;
+changequote(, )dnl
+ x3.* ) ;;
changequote([, ])
* ) braindead=yes ;;
esac
--
1.7.9.5
|
shibajee/buildroot
|
package/libpthsem/0001-fix-build-on-linux-3.x-host.patch
|
patch
|
mit
| 751 |
config BR2_PACKAGE_LIBPTHSEM
bool "libpthsem"
depends on BR2_USE_MMU # fork()
help
GNU pth is a user mode multi threading library. pthsem is an extend
version, with support for semaphores added.
http://www.auto.tuwien.ac.at/~mkoegler/pth/
if BR2_PACKAGE_LIBPTHSEM
config BR2_PACKAGE_LIBPTHSEM_COMPAT
bool "libpth compatibility"
help
This option enables the compatibility with the original
libpth library.
endif
|
shibajee/buildroot
|
package/libpthsem/Config.in
|
in
|
mit
| 435 |
# Locally calculated
sha256 4024cafdd5d4bce2b1778a6be5491222c3f6e7ef1e43971264c451c0012c5c01 pthsem_2.0.8.tar.gz
|
shibajee/buildroot
|
package/libpthsem/libpthsem.hash
|
hash
|
mit
| 114 |
################################################################################
#
# libpthsem
#
################################################################################
LIBPTHSEM_VERSION = 2.0.8
LIBPTHSEM_SOURCE = pthsem_$(LIBPTHSEM_VERSION).tar.gz
LIBPTHSEM_SITE = http://www.auto.tuwien.ac.at/~mkoegler/pth
LIBPTHSEM_LICENSE = LGPLv2.1+
LIBPTHSEM_LICENSE_FILES = COPYING
LIBPTHSEM_AUTORECONF = YES
LIBPTHSEM_INSTALL_STAGING = YES
LIBPTHSEM_CONFIG_SCRIPTS = pthsem-config
# Force the setjmp/longjmp detection, because the test being done in
# the AC_CHECK_SJLJ macro is not cross-compilation safe: it checks the
# running kernel with 'uname -r', and checks the C library version by
# looking at /usr/include/features.h. In terms of kernel version, it
# assumes any version later than 2.2.x is fine, except that it doesn't
# recognize 4.x as a valid kernel version, recognizing such systems as
# "braindead" and therefore falling back to the 'sjljlx' value for
# ac_cv_check_sjlj. In terms of C library version, it wants
# __GLIBC_MINOR to be at least 1. Since both conditions are true for
# all Buildroot systems, we can simply force the setjmp/longjmp
# detection to ssjlj.
LIBPTHSEM_CONF_ENV += \
ac_cv_check_sjlj=ssjlj
ifeq ($(BR2_PACKAGE_LIBPTHSEM_COMPAT),y)
LIBPTHSEM_CONF_OPTS += --enable-compat
LIBPTHSEM_CONFIG_SCRIPTS += pth-config
else
LIBPTHSEM_CONF_OPTS += --disable-compat
endif
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libpthsem/libpthsem.mk
|
mk
|
mit
| 1,436 |
config BR2_PACKAGE_LIBQMI
bool "libqmi"
select BR2_PACKAGE_LIBGLIB2
depends on BR2_USE_WCHAR # libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
depends on BR2_USE_MMU # libglib2
help
libqmi is a glib-based library for talking to WWAN modems and devices
which speak the Qualcomm MSM Interface (QMI) protocol.
http://www.freedesktop.org/wiki/Software/libqmi/
comment "libqmi needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
shibajee/buildroot
|
package/libqmi/Config.in
|
in
|
mit
| 516 |
# Locally computed:
sha256 7ab6bb47fd23bf4d3fa17424e40ea5552d08b19e5ee4f125f21f316c8086ba2a libqmi-1.16.0.tar.xz
|
shibajee/buildroot
|
package/libqmi/libqmi.hash
|
hash
|
mit
| 115 |
################################################################################
#
# libqmi
#
################################################################################
LIBQMI_VERSION = 1.16.0
LIBQMI_SITE = http://www.freedesktop.org/software/libqmi
LIBQMI_SOURCE = libqmi-$(LIBQMI_VERSION).tar.xz
LIBQMI_LICENSE = LGPLv2+ (library), GPLv2+ (programs)
LIBQMI_LICENSE_FILES = COPYING
LIBQMI_INSTALL_STAGING = YES
LIBQMI_DEPENDENCIES = libglib2
# we don't want -Werror
LIBQMI_CONF_OPTS = --enable-more-warnings=no
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libqmi/libqmi.mk
|
mk
|
mit
| 551 |
config BR2_PACKAGE_LIBQRENCODE
bool "libqrencode"
help
libqrencode is a C library for encoding data in a QR Code
symbol, a kind of 2D symbology that can be scanned by handy
terminals such as a mobile phone with CCD. The capacity of
QR Code is up to 7000 digits or 4000 characters, and is
highly robust.
http://fukuchi.org/works/qrencode/index.html
if BR2_PACKAGE_LIBQRENCODE
config BR2_PACKAGE_LIBQRENCODE_TOOLS
bool "libqrencode tools"
select BR2_PACKAGE_LIBPNG
help
Build command-line tools
endif #BR2_PACKAGE_LIBQRENCODE
|
shibajee/buildroot
|
package/libqrencode/Config.in
|
in
|
mit
| 554 |
# From http://fukuchi.org/works/qrencode/qrencode-3.4.2.tar.gz.sha1
sha1 7daaad61f333ff6cdabfb0d925c3ab668d16dee2 qrencode-3.4.2.tar.gz
|
shibajee/buildroot
|
package/libqrencode/libqrencode.hash
|
hash
|
mit
| 136 |
################################################################################
#
# libqrencode
#
################################################################################
LIBQRENCODE_VERSION = 3.4.2
LIBQRENCODE_SOURCE = qrencode-$(LIBQRENCODE_VERSION).tar.gz
LIBQRENCODE_SITE = http://fukuchi.org/works/qrencode
LIBQRENCODE_DEPENDENCIES = host-pkgconf
LIBQRENCODE_INSTALL_STAGING = YES
LIBQRENCODE_LICENSE = LGPLv2.1+
LIBQRENCODE_LICENSE_FILES = COPYING
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
LIBQRENCODE_CONF_ENV += LIBS='-pthread'
else
LIBQRENCODE_CONF_OPTS += --disable-thread-safety
endif
ifeq ($(BR2_PACKAGE_LIBQRENCODE_TOOLS),y)
LIBQRENCODE_CONF_OPTS += --with-tools=yes
LIBQRENCODE_DEPENDENCIES += libpng
else
LIBQRENCODE_CONF_OPTS += --with-tools=no
endif
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libqrencode/libqrencode.mk
|
mk
|
mit
| 805 |
From 1f9c2ebc9c65e8ce7fdbece55d578cf00c6c4b46 Mon Sep 17 00:00:00 2001
From: Bernd Kuhls <bernd.kuhls@t-online.de>
Date: Sat, 30 Jan 2016 17:06:04 +0100
Subject: [PATCH 1/1] Remove paths which break cross-compilation
Patch sent upstream: https://github.com/LibRaw/LibRaw/pull/57
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
configure.ac | 3 ---
1 file changed, 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index 9bb07b2..78064d9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,9 +16,6 @@ AC_SUBST(LIBTOOL_DEPS)
# Config files to generate
-CPPFLAGS="$CPPFLAGS -I/usr/local/include"
-LDFLAGS="$LDFLAGS -L/usr/local/lib"
-
AC_CONFIG_FILES([
Makefile
libraw.pc
--
2.7.0.rc3
|
shibajee/buildroot
|
package/libraw/0001-Remove-paths-which-break-cross-compilation.patch
|
patch
|
mit
| 714 |
From 0f2507bfe30f2df10dfc38b94cdfde5594902b8e Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Date: Fri, 12 Feb 2016 10:00:12 +0100
Subject: [PATCH] libraw_x3f.cpp: remove Byte order mark
The U+FEFF character, which is a Byte order mark, at the beginning of
libraw_x3f.cpp, prevents gcc 4.3.x from building this file:
src/../internal/libraw_x3f.cpp:1: error: stray '\357' in program
src/../internal/libraw_x3f.cpp:1: error: stray '\273' in program
src/../internal/libraw_x3f.cpp:1: error: stray '\277' in program
Support in gcc for the Byte order mark has been added in gcc
4.4.x. Since anyway this Byte order mark is not useful, we simply
remove it.
See https://en.wikipedia.org/wiki/Byte_order_mark for more details.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
Submitted upstream at:
https://github.com/LibRaw/LibRaw/pull/61
internal/libraw_x3f.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/internal/libraw_x3f.cpp b/internal/libraw_x3f.cpp
index dbf28c1..67047ab 100644
--- a/internal/libraw_x3f.cpp
+++ b/internal/libraw_x3f.cpp
@@ -1,4 +1,4 @@
-/* Library for accessing X3F Files
+/* Library for accessing X3F Files
----------------------------------------------------------------
BSD-style License
----------------------------------------------------------------
--
2.6.4
|
shibajee/buildroot
|
package/libraw/0002-libraw_x3f.cpp-remove-Byte-order-mark.patch
|
patch
|
mit
| 1,389 |
config BR2_PACKAGE_LIBRAW
bool "libraw"
depends on BR2_INSTALL_LIBSTDCPP
help
libraw is a raw image manipulation library
http://www.libraw.org/
comment "libraw needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
|
shibajee/buildroot
|
package/libraw/Config.in
|
in
|
mit
| 232 |
# Locally calculated
sha256 e599651a4cc37e00cfc2d2b56be87c3a4e4dae2c360b680fe9ab3f93d07cdea1 LibRaw-0.17.1.tar.gz
sha256 3c09bc4d70268e78798696c5ea3a8cc65fe4e161811d5321fc3ef2ca012d8fd1 0001-Fix_gcc6_narrowing_conversion.patch?id=d890937aaca6359df45a66b35e547c94ca564823
|
shibajee/buildroot
|
package/libraw/libraw.hash
|
hash
|
mit
| 271 |
################################################################################
#
# libraw
#
################################################################################
LIBRAW_VERSION = 0.17.1
LIBRAW_SOURCE = LibRaw-$(LIBRAW_VERSION).tar.gz
LIBRAW_SITE = http://www.libraw.org/data
LIBRAW_PATCH = \
https://anonscm.debian.org/cgit/pkg-phototools/libraw.git/plain/debian/patches/0001-Fix_gcc6_narrowing_conversion.patch?id=d890937aaca6359df45a66b35e547c94ca564823
LIBRAW_INSTALL_STAGING = YES
# we patch configure.ac
LIBRAW_AUTORECONF = YES
LIBRAW_CONF_OPTS += \
--disable-examples \
--disable-openmp \
--disable-demosaic-pack-gpl2 \
--disable-demosaic-pack-gpl3
LIBRAW_LICENSE = LGPLv2.1 or CDDL 1.0 or LibRaw Software License 27032010
LIBRAW_LICENSE_FILES = LICENSE.LGPL LICENSE.CDDL LICENSE.LibRaw.pdf README
LIBRAW_DEPENDENCIES = host-pkgconf
ifeq ($(BR2_PACKAGE_JASPER),y)
LIBRAW_CONF_OPTS += --enable-jasper
LIBRAW_DEPENDENCIES += jasper
else
LIBRAW_CONF_OPTS += --disable-jasper
endif
ifeq ($(BR2_PACKAGE_JPEG),y)
LIBRAW_CONF_OPTS += --enable-jpeg
LIBRAW_DEPENDENCIES += jpeg
else
LIBRAW_CONF_OPTS += --disable-jpeg
endif
ifeq ($(BR2_PACKAGE_LCMS2),y)
LIBRAW_CONF_OPTS += --enable-lcms
LIBRAW_DEPENDENCIES += lcms2 host-pkgconf
else
LIBRAW_CONF_OPTS += --disable-lcms
endif
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libraw/libraw.mk
|
mk
|
mit
| 1,326 |
From 94c66ade15d7fc468b52c72dfe76a8c10b1910a7 Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Date: Fri, 12 Feb 2016 10:13:45 +0100
Subject: [PATCH] testlibraw: build the CLOCK_MONOTONIC_RAW test conditionally
CLOCK_MONOTONIC_RAW is a somewhat recent addition, and some older
toolchains/kernels may not have the support for it. Therefore, we
build the part of the test that uses CLOCK_MONOTONIC_RAW only when
this definition is available.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
tools/testlibraw.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/testlibraw.c b/tools/testlibraw.c
index d8a0702..ae37157 100644
--- a/tools/testlibraw.c
+++ b/tools/testlibraw.c
@@ -211,6 +211,7 @@ read_cycle_timer(raw1394handle_t handle)
printf(" local time from CLOCK_MONOTONIC: %lld us\n",
(unsigned long long)local_time);
+#if defined(CLOCK_MONOTONIC_RAW)
retval = raw1394_read_cycle_timer_and_clock(handle, &ct, &local_time,
CLOCK_MONOTONIC_RAW);
if (retval < 0) {
@@ -221,6 +222,7 @@ read_cycle_timer(raw1394handle_t handle)
ct >> 25, (ct >> 12) & 0x1fff, ct & 0xfff);
printf(" local time from CLOCK_MONOTONIC_RAW: %lld us\n",
(unsigned long long)local_time);
+#endif
}
int test_card(int card)
--
2.6.4
|
shibajee/buildroot
|
package/libraw1394/0001-testlibraw-build-the-CLOCK_MONOTONIC_RAW-test-condit.patch
|
patch
|
mit
| 1,338 |
config BR2_PACKAGE_LIBRAW1394
bool "libraw1394"
help
libraw1394 provides direct access to the IEEE 1394 bus through
the Linux 1394 subsystem's raw1394 user space interface.
http://sourceforge.net/projects/libraw1394/
|
shibajee/buildroot
|
package/libraw1394/Config.in
|
in
|
mit
| 229 |
# From https://www.kernel.org/pub/linux/libs/ieee1394/sha256sums.asc
sha256 1bab9780189f9d1eb4e973df12679c04f979c21e024240fc98e536ff5b680ee9 libraw1394-2.1.1.tar.xz
# Locally computed
sha256 39369c65fbed7fccc2e6d8e645f258f101c414107d67238f10996e6c2009f20d fix-types.patch
|
shibajee/buildroot
|
package/libraw1394/libraw1394.hash
|
hash
|
mit
| 272 |
################################################################################
#
# libraw1394
#
################################################################################
LIBRAW1394_VERSION = 2.1.1
LIBRAW1394_SOURCE = libraw1394-$(LIBRAW1394_VERSION).tar.xz
LIBRAW1394_SITE = $(BR2_KERNEL_MIRROR)/linux/libs/ieee1394
LIBRAW1394_PATCH = http://git.alpinelinux.org/cgit/aports/plain/main/libraw1394/fix-types.patch
LIBRAW1394_INSTALL_STAGING = YES
LIBRAW1394_LICENSE = LGPLv2.1+
LIBRAW1394_LICENSE_FILES = COPYING.LIB
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libraw1394/libraw1394.mk
|
mk
|
mit
| 555 |
config BR2_PACKAGE_LIBREPLAYGAIN
bool "libreplaygain"
help
Replay Gain library from Musepack
http://www.musepack.net/
|
shibajee/buildroot
|
package/libreplaygain/Config.in
|
in
|
mit
| 127 |
# From https://www.musepack.net/index.php?pg=src
md5 e27b3b1249b7fbae92d656d9e3d26633 libreplaygain_r475.tar.gz
# Calculated based on the hash above
sha256 8258bf785547ac2cda43bb195e07522f0a3682f55abe97753c974609ec232482 libreplaygain_r475.tar.gz
|
shibajee/buildroot
|
package/libreplaygain/libreplaygain.hash
|
hash
|
mit
| 247 |
################################################################################
#
# libreplaygain
#
################################################################################
LIBREPLAYGAIN_VERSION = r475
LIBREPLAYGAIN_SITE = http://files.musepack.net/source
LIBREPLAYGAIN_SOURCE = libreplaygain_$(LIBREPLAYGAIN_VERSION).tar.gz
# upstream doesn't ship configure
LIBREPLAYGAIN_AUTORECONF = YES
LIBREPLAYGAIN_INSTALL_STAGING = YES
LIBREPLAYGAIN_LICENSE = LGPLv2.1+
LIBREPLAYGAIN_LICENSE_FILES = src/gain_analysis.c
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libreplaygain/libreplaygain.mk
|
mk
|
mit
| 550 |
config BR2_PACKAGE_LIBROXML
bool "roxml"
depends on BR2_TOOLCHAIN_HAS_THREADS
help
libroxml is a light and powerful xml parsing library with
xpath handling. Roxml is a binary using libroxml to explore
xml file from shell scripts.
http://www.libroxml.net
comment "libroxml needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
shibajee/buildroot
|
package/libroxml/Config.in
|
in
|
mit
| 358 |
# Locally calculated
sha256 1da8f20b530eba4409f2b217587d2f1281ff5d9ba45b24aeac71b94c6c621b78 libroxml-2.3.0.tar.gz
|
shibajee/buildroot
|
package/libroxml/libroxml.hash
|
hash
|
mit
| 115 |
################################################################################
#
# libroxml
#
################################################################################
LIBROXML_VERSION = 2.3.0
LIBROXML_SITE = http://download.libroxml.net/pool/v2.x
LIBROXML_INSTALL_STAGING = YES
LIBROXML_LICENSE = LGPLv2.1+ with static link exception
LIBROXML_LICENSE_FILES = License.txt
LIBROXML_CONF_OPTS = --disable-silent-rules
# libroxml forgets to compile/link with -pthread, even though it uses
# thread functions breaking static linking
LIBROXML_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -pthread" LIBS="-pthread"
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libroxml/libroxml.mk
|
mk
|
mit
| 642 |
config BR2_PACKAGE_LIBRSVG
bool "librsvg"
select BR2_PACKAGE_CAIRO
select BR2_PACKAGE_CAIRO_PNG
select BR2_PACKAGE_GDK_PIXBUF
select BR2_PACKAGE_LIBCROCO
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_PANGO
depends on BR2_USE_WCHAR # glib2
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
depends on BR2_USE_MMU # glib2
depends on BR2_INSTALL_LIBSTDCPP # pango
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pango -> harfbuzz
help
The rsvg library is an efficient renderer for Scalable
Vector Graphics (SVG) pictures.
http://librsvg.sourceforge.net/
comment "librsvg needs a toolchain w/ wchar, threads, C++"
depends on BR2_USE_MMU
depends on BR2_TOOLCHAIN_HAS_SYNC_4
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
|
shibajee/buildroot
|
package/librsvg/Config.in
|
in
|
mit
| 792 |
# From http://ftp.acc.umu.se/pub/gnome/sources/librsvg/2.40/librsvg-2.40.16.sha256sum
sha256 d48bcf6b03fa98f07df10332fb49d8c010786ddca6ab34cbba217684f533ff2e librsvg-2.40.16.tar.xz
|
shibajee/buildroot
|
package/librsvg/librsvg.hash
|
hash
|
mit
| 181 |
################################################################################
#
# librsvg
#
################################################################################
LIBRSVG_VERSION_MAJOR = 2.40
LIBRSVG_VERSION = $(LIBRSVG_VERSION_MAJOR).16
LIBRSVG_SITE = http://ftp.gnome.org/pub/gnome/sources/librsvg/$(LIBRSVG_VERSION_MAJOR)
LIBRSVG_SOURCE = librsvg-$(LIBRSVG_VERSION).tar.xz
LIBRSVG_INSTALL_STAGING = YES
LIBRSVG_CONF_OPTS = --disable-tools --enable-introspection=no
HOST_LIBRSVG_CONF_OPTS = --enable-introspection=no
LIBRSVG_DEPENDENCIES = cairo host-gdk-pixbuf gdk-pixbuf libcroco libglib2 libxml2 pango \
$(if $(BR2_PACKAGE_LIBGTK3),libgtk3)
HOST_LIBRSVG_DEPENDENCIES = host-cairo host-gdk-pixbuf host-libcroco host-libglib2 host-libxml2 host-pango
LIBRSVG_LICENSE = LGPLv2+
LIBRSVG_LICENSE_FILES = COPYING.LIB
$(eval $(autotools-package))
$(eval $(host-autotools-package))
|
shibajee/buildroot
|
package/librsvg/librsvg.mk
|
mk
|
mit
| 894 |
config BR2_PACKAGE_LIBRSYNC
bool "librsync"
select BR2_PACKAGE_ZLIB
select BR2_PACKAGE_BZIP2
select BR2_PACKAGE_POPT
help
librsync implements the rolling-checksum algorithm of
remote file synchronization that was popularized by the
rsync utility and is used in rproxy.
http://sourceforge.net/projects/librsync/
|
shibajee/buildroot
|
package/librsync/Config.in
|
in
|
mit
| 329 |
# Locally computed:
sha256 6633e4605662763a03bb6388529cbdfd3b11a9ec55b8845351c1bd9a92bc41d6 librsync-0.9.7.tar.gz
|
shibajee/buildroot
|
package/librsync/librsync.hash
|
hash
|
mit
| 116 |
################################################################################
#
# librsync
#
################################################################################
LIBRSYNC_VERSION = 0.9.7
LIBRSYNC_SITE = http://downloads.sourceforge.net/project/librsync/librsync/$(LIBRSYNC_VERSION)
LIBRSYNC_LICENSE = LGPLv2.1+
LIBRSYNC_LICENSE_FILES = COPYING
LIBRSYNC_INSTALL_STAGING = YES
LIBRSYNC_DEPENDENCIES = zlib bzip2 popt
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/librsync/librsync.mk
|
mk
|
mit
| 461 |
Add a line to the librtas Makefile to create librtas.so.1 when
performing "make install".
Without this patch programs linked with librtas will fail at run time:
error while loading shared libraries: librtas.so.1: cannot open shared
object file: No such file or directory
A patch has been submitted upstream so it is likely that this patch
can be dropped after the next release of librtas.
Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com>
---
librtas_src/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/librtas_src/Makefile b/librtas_src/Makefile
index 3a10222..deba29d 100644
--- a/librtas_src/Makefile
+++ b/librtas_src/Makefile
@@ -33,6 +33,7 @@ install:
@$(call install_lib,$(LIBRTAS),$(DESTDIR))
@$(call install_inc,$(HEADERS),$(DESTDIR))
@ln -sf $(LIBRTAS) $(DESTDIR)/$(LIB_DIR)$(call is_lib64,$(LIBRTAS))/$(LIBRTAS_SONAME)
+ @ln -sf $(LIBRTAS) $(DESTDIR)/$(LIB_DIR)$(call is_lib64,$(LIBRTAS))/$(LIBRTAS_SONAME).1
uninstall:
@$(call uninstall_lib,$(LIBRTAS),$(DESTDIR))
--
1.7.10.4
|
shibajee/buildroot
|
package/librtas/0001-librtas-install-librtas.so.1-symlink.patch
|
patch
|
mit
| 1,025 |
config BR2_PACKAGE_LIBRTAS
bool "librtas"
depends on BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
depends on BR2_TOOLCHAIN_USES_GLIBC
help
The librtas package provides an interface for Run-Time Abstraction
Services (RTAS) calls on PAPR platforms. The libraries allow users to
examine and manipulate hardware, and parse RTAS events.
http://librtas.sourceforge.net/
comment "librtas needs a glibc toolchain"
depends on BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
depends on !BR2_TOOLCHAIN_USES_GLIBC
|
shibajee/buildroot
|
package/librtas/Config.in
|
in
|
mit
| 525 |
# Locally computed
sha256 d5f2951b0934ffbd82bebf26acfa103cc21d89f4c90c7c41472acf7b4ec6d907 librtas-1.3.13.tar.gz
|
shibajee/buildroot
|
package/librtas/librtas.hash
|
hash
|
mit
| 113 |
################################################################################
#
# librtas
#
################################################################################
LIBRTAS_VERSION = 1.3.13
LIBRTAS_SITE = http://downloads.sourceforge.net/project/librtas
LIBRTAS_LICENSE = Common Public License Version 1.0
LIBRTAS_LICENSE_FILES = COPYRIGHT
LIBRTAS_INSTALL_STAGING = YES
define LIBRTAS_BUILD_CMDS
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
endef
define LIBRTAS_INSTALL_STAGING_CMDS
$(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install
endef
define LIBRTAS_INSTALL_TARGET_CMDS
$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
endef
$(eval $(generic-package))
|
shibajee/buildroot
|
package/librtas/librtas.mk
|
mk
|
mit
| 668 |
librtlsdr: disable shared library target in build
Disable shared library target if BUILD_SHARED_LIBS if OFF.
Signed-off-by: Yuvaraj Patil <yuvaraj.patil@wipro.com>
---
diff -Nurp librtlsdr-v0.5.3_orig/src/CMakeLists.txt librtlsdr-v0.5.3/src/CMakeLists.txt
--- librtlsdr-v0.5.3_orig/src/CMakeLists.txt 2014-09-24 17:31:40.610337074 +0530
+++ librtlsdr-v0.5.3/src/CMakeLists.txt 2014-09-24 17:32:38.838334632 +0530
@@ -20,6 +20,7 @@
########################################################################
# Setup library
########################################################################
+if(BUILD_SHARED_LIBS)
add_library(rtlsdr_shared SHARED
librtlsdr.c
tuner_e4k.c
@@ -37,6 +38,7 @@ set_target_properties(rtlsdr_shared PROP
set_target_properties(rtlsdr_shared PROPERTIES OUTPUT_NAME rtlsdr)
set_target_properties(rtlsdr_shared PROPERTIES SOVERSION ${MAJOR_VERSION})
set_target_properties(rtlsdr_shared PROPERTIES VERSION ${LIBVER})
+endif()
add_library(rtlsdr_static STATIC
librtlsdr.c
@@ -71,6 +73,12 @@ if(NOT WIN32)
set_target_properties(rtlsdr_static PROPERTIES OUTPUT_NAME rtlsdr)
endif()
+if(BUILD_SHARED_LIBS)
+set(rtlsdr_lib rtlsdr_shared)
+else()
+set(rtlsdr_lib rtlsdr_static)
+endif()
+
########################################################################
# Build utility
########################################################################
@@ -81,33 +89,33 @@ add_executable(rtl_fm rtl_fm.c)
add_executable(rtl_eeprom rtl_eeprom.c)
add_executable(rtl_adsb rtl_adsb.c)
add_executable(rtl_power rtl_power.c)
-set(INSTALL_TARGETS rtlsdr_shared rtlsdr_static rtl_sdr rtl_tcp rtl_test rtl_fm rtl_eeprom rtl_adsb rtl_power)
+set(INSTALL_TARGETS ${rtlsdr_lib} rtl_sdr rtl_tcp rtl_test rtl_fm rtl_eeprom rtl_adsb rtl_power)
-target_link_libraries(rtl_sdr rtlsdr_shared convenience_static
+target_link_libraries(rtl_sdr ${rtlsdr_lib} convenience_static
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
-target_link_libraries(rtl_tcp rtlsdr_shared convenience_static
+target_link_libraries(rtl_tcp ${rtlsdr_lib} convenience_static
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
-target_link_libraries(rtl_test rtlsdr_shared convenience_static
+target_link_libraries(rtl_test ${rtlsdr_lib} convenience_static
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
-target_link_libraries(rtl_fm rtlsdr_shared convenience_static
+target_link_libraries(rtl_fm ${rtlsdr_lib} convenience_static
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
-target_link_libraries(rtl_eeprom rtlsdr_shared convenience_static
+target_link_libraries(rtl_eeprom ${rtlsdr_lib} convenience_static
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
-target_link_libraries(rtl_adsb rtlsdr_shared convenience_static
+target_link_libraries(rtl_adsb ${rtlsdr_lib} convenience_static
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
-target_link_libraries(rtl_power rtlsdr_shared convenience_static
+target_link_libraries(rtl_power ${rtlsdr_lib} convenience_static
${LIBUSB_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT}
)
|
shibajee/buildroot
|
package/librtlsdr/0001-disable_shared_library_target_in_build.patch
|
patch
|
mit
| 3,104 |
config BR2_PACKAGE_LIBRTLSDR
bool "librtlsdr"
select BR2_PACKAGE_LIBUSB
depends on BR2_TOOLCHAIN_HAS_THREADS
help
Library and command line programs for accessing
RTL2832U SDR dongles.
http://sdr.osmocom.org/trac/wiki/rtl-sdr/
if BR2_PACKAGE_LIBRTLSDR
config BR2_PACKAGE_LIBRTLSDR_DETACH_DRIVER
bool "Detach kernel driver"
default y
help
Enable this option if you would like librtlsdr to
automatically detach any kernel driver associated to the
RTL2832U USB device on startup if one is loaded.
endif
comment "librtlsdr needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
shibajee/buildroot
|
package/librtlsdr/Config.in
|
in
|
mit
| 617 |
# Locally calculated
sha256 98fb5c34ac94d6f2235a0bb41a08f8bed7949e1d1b91ea57a7c1110191ea58de librtlsdr-v0.5.3.tar.gz
|
shibajee/buildroot
|
package/librtlsdr/librtlsdr.hash
|
hash
|
mit
| 118 |
################################################################################
#
# librtlsdr
#
################################################################################
LIBRTLSDR_VERSION = v0.5.3
LIBRTLSDR_SITE = $(call github,steve-m,librtlsdr,$(LIBRTLSDR_VERSION))
LIBRTLSDR_LICENSE = GPLv2+
LIBRTLSDR_LICENSE_FILES = COPYING
LIBRTLSDR_INSTALL_STAGING = YES
LIBRTLSDR_DEPENDENCIES = libusb
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
LIBRTLSDR_CONF_OPTS += -DINSTALL_UDEV_RULES=ON
endif
ifeq ($(BR2_PACKAGE_LIBRTLSDR_DETACH_DRIVER),y)
LIBRTLSDR_CONF_OPTS += -DDETACH_KERNEL_DRIVER=1
endif
# In case of static-lib-only builds, CMake's FindThreads.cmake code tries to
# get the right flags, checking first for -lpthreads, then -lpthread, and lastly
# for -pthread.
# The 2 first link checks fail because of undefined symbols: __libc_setup_tls.
# In the later check, CMake successfully compiles and links the test program,
# but it also tries to run it, which is wrong when cross-compiling.
#
# The following CMake variable only disables the TRY_RUN call in the -pthread
# test.
LIBRTLSDR_CONF_OPTS += -DTHREADS_PTHREAD_ARG=OFF
$(eval $(cmake-package))
|
shibajee/buildroot
|
package/librtlsdr/librtlsdr.mk
|
mk
|
mit
| 1,155 |
config BR2_PACKAGE_LIBSAMPLERATE
bool "libsamplerate"
help
Secret Rabbit Code (aka libsamplerate) is a Sample Rate
Converter for audio. One example of where such a thing would
be useful is converting audio from the CD sample rate of
44.1kHz to the 48kHz sample rate used by DAT players.
http://www.mega-nerd.com/SRC/
|
shibajee/buildroot
|
package/libsamplerate/Config.in
|
in
|
mit
| 335 |
# Locally calculated after checking pgp signature
sha256 93b54bdf46d5e6d2354b7034395fe329c222a966790de34520702bb9642f1c06 libsamplerate-0.1.8.tar.gz
|
shibajee/buildroot
|
package/libsamplerate/libsamplerate.hash
|
hash
|
mit
| 149 |
################################################################################
#
# libsamplerate
#
################################################################################
LIBSAMPLERATE_VERSION = 0.1.8
LIBSAMPLERATE_SITE = http://www.mega-nerd.com/SRC
LIBSAMPLERATE_INSTALL_STAGING = YES
LIBSAMPLERATE_DEPENDENCIES = host-pkgconf
LIBSAMPLERATE_CONF_OPTS = --disable-fftw --program-transform-name=''
LIBSAMPLERATE_LICENSE = Dual GPLv2+ / libsamplerate commercial use license
LIBSAMPLERATE_LICENSE_FILES = COPYING
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
LIBSAMPLERATE_DEPENDENCIES += libsndfile
endif
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libsamplerate/libsamplerate.mk
|
mk
|
mit
| 636 |
Do not force static link, it breaks build with
# BR2_STATIC_LIBS is not set
BR2_SHARED_LIBS=y
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
diff -uNr libseccomp-2.2.0.org/tests/Makefile.am libseccomp-2.2.0/tests/Makefile.am
--- libseccomp-2.2.0.org/tests/Makefile.am 2015-02-11 21:57:11.000000000 +0100
+++ libseccomp-2.2.0/tests/Makefile.am 2015-03-29 16:03:49.668946652 +0200
@@ -16,7 +16,6 @@
# along with this library; if not, see <http://www.gnu.org/licenses>.
#
-AM_LDFLAGS = -static
LDADD = util.la ../src/libseccomp.la
check_LTLIBRARIES = util.la
diff -uNr libseccomp-2.2.0.org/tools/Makefile.am libseccomp-2.2.0/tools/Makefile.am
--- libseccomp-2.2.0.org/tools/Makefile.am 2015-02-11 21:57:11.000000000 +0100
+++ libseccomp-2.2.0/tools/Makefile.am 2015-03-29 16:03:46.164992302 +0200
@@ -33,8 +33,6 @@
scmp_bpf_sim_SOURCES = scmp_bpf_sim.c bpf.h util.h
scmp_sys_resolver_LDADD = ../src/libseccomp.la
-scmp_sys_resolver_LDFLAGS = -static
scmp_arch_detect_LDADD = ../src/libseccomp.la
-scmp_arch_detect_LDFLAGS = -static
scmp_bpf_disasm_LDADD = util.la
scmp_bpf_sim_LDADD = util.la
|
shibajee/buildroot
|
package/libseccomp/0001-remove-static.patch
|
patch
|
mit
| 1,113 |
config BR2_PACKAGE_LIBSECCOMP
bool "libseccomp"
depends on BR2_aarch64 || BR2_mips || BR2_mipsel || BR2_mips64 || \
BR2_mips64el || BR2_i386 || BR2_x86_64 || BR2_powerpc64 || \
BR2_powerpc
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
help
High level interface to the Linux Kernel's seccomp filter
The libseccomp library provides an easy to use, platform independent,
interface to the Linux Kernel's syscall filtering mechanism: seccomp.
The libseccomp API is designed to abstract away the underlying BPF
based syscall filter language and present a more conventional
function-call based filtering interface that should be familiar to,
and easily adopted by application developers.
https://github.com/seccomp/libseccomp
comment "libseccomp needs a toolchain w/ headers >= 3.12"
depends on BR2_aarch64 || BR2_mips || BR2_mipsel || BR2_mips64 || \
BR2_mips64el || BR2_i386 || BR2_x86_64
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
|
shibajee/buildroot
|
package/libseccomp/Config.in
|
in
|
mit
| 972 |
# Locally calculated
sha256 09864282ae579c34bd5ef75ef3487200adfecaa51f5cffc7c7ad1ed2f89f5d6c libseccomp-v2.3.1.tar.gz
|
shibajee/buildroot
|
package/libseccomp/libseccomp.hash
|
hash
|
mit
| 118 |
################################################################################
#
# libseccomp
#
################################################################################
LIBSECCOMP_VERSION = v2.3.1
LIBSECCOMP_SITE = $(call github,seccomp,libseccomp,$(LIBSECCOMP_VERSION))
LIBSECCOMP_LICENSE = LGPLv2.1
LIBSECCOMP_LICENSE_FILES = LICENSE
LIBSECCOMP_INSTALL_STAGING = YES
LIBSECCOMP_AUTORECONF = YES
# Needed for autoreconf to work properly, see ./autogen.sh
define LIBSECCOMP_FIXUP_M4_DIR
mkdir $(@D)/m4
endef
LIBSECCOMP_POST_EXTRACT_HOOKS += LIBSECCOMP_FIXUP_M4_DIR
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libseccomp/libseccomp.mk
|
mk
|
mit
| 608 |
From 754897490d9478025d174c2b1c1849305f728324 Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Date: Mon, 28 Dec 2015 12:13:07 +0100
Subject: [PATCH] libsecret.pc: add Libs.private field for libgcrypt
When libgcrypt is available, libsecret links with it. When dynamic
linking is used, there is no problem: libsecret.so has a NEEDED
pointing to libgcrypt, so linking an application with -lsecret works
fine. However, when doing static linking, you must specify the entire
chain of libraries, otherwise you get unresolved symbols errors, such
as:
host/usr/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/lib/libsecret-1.a(libsecret_1_la-secret-session.o): In function `request_open_session_aes':
build/libsecret-0.18.3/libsecret/secret-session.c:99: undefined reference to `gcry_mpi_release'
build/libsecret-0.18.3/libsecret/secret-session.c:101: undefined reference to `gcry_mpi_aprint'
build/libsecret-0.18.3/libsecret/secret-session.c:107: undefined reference to `gcry_free'
In order to solve this, we simply need to indicate in the Libs.private
field of the .pc file that we depend on libgcrypt.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
libsecret/libsecret.pc.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/libsecret/libsecret.pc.in b/libsecret/libsecret.pc.in
index 0c342ef..d99cf44 100644
--- a/libsecret/libsecret.pc.in
+++ b/libsecret/libsecret.pc.in
@@ -11,4 +11,5 @@ Description: GObject bindings for Secret Service API
Version: @VERSION@
Requires: glib-2.0 gobject-2.0 gio-2.0
Libs: -L${libdir} -lsecret-@SECRET_MAJOR@
+Libs.private: @LIBGCRYPT_LIBS@
Cflags: -I${includedir}/libsecret-@SECRET_MAJOR@
--
2.6.4
|
shibajee/buildroot
|
package/libsecret/0001-libsecret.pc-add-Libs.private-field-for-libgcrypt.patch
|
patch
|
mit
| 1,705 |
config BR2_PACKAGE_LIBSECRET
bool "libsecret"
select BR2_PACKAGE_LIBGLIB2
depends on BR2_USE_WCHAR # gettext dep in libglib2
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
depends on BR2_USE_MMU # libglib2
help
libsecret is a library for storing and retrieving passwords and other
secrets. It communicates with the "Secret Service" using DBus.
gnome-keyring and ksecretservice are both implementations of a Secret
Service.
https://wiki.gnome.org/Libsecret
comment "libsecret needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
shibajee/buildroot
|
package/libsecret/Config.in
|
in
|
mit
| 617 |
# From http://ftp.gnome.org/pub/GNOME/sources/libsecret/0.18/libsecret-0.18.5.sha256sum
sha256 9ce7bd8dd5831f2786c935d82638ac428fa085057cc6780aba0e39375887ccb3 libsecret-0.18.5.tar.xz
|
shibajee/buildroot
|
package/libsecret/libsecret.hash
|
hash
|
mit
| 184 |
################################################################################
#
# libsecret
#
################################################################################
LIBSECRET_VERSION_MAJOR = 0.18
LIBSECRET_VERSION = $(LIBSECRET_VERSION_MAJOR).5
LIBSECRET_SITE = http://ftp.gnome.org/pub/GNOME/sources/libsecret/$(LIBSECRET_VERSION_MAJOR)
LIBSECRET_SOURCE = libsecret-$(LIBSECRET_VERSION).tar.xz
LIBSECRET_INSTALL_STAGING = YES
LIBSECRET_DEPENDENCIES = libglib2 host-intltool
LIBSECRET_CONF_OPTS = \
--disable-manpages \
--disable-strict \
--disable-coverage \
--enable-introspection=no \
--enable-vala=no
LIBSECRET_LICENSE = LGPLv2.1+
LIBSECRET_LICENSE_FILES = COPYING
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
LIBSECRET_DEPENDENCIES += libgcrypt
LIBSECRET_CONF_OPTS += --enable-gcrypt \
--with-libgcrypt-prefix=$(STAGING_DIR)/usr
else
LIBSECRET_CONF_OPTS += --disable-gcrypt
endif
$(eval $(autotools-package))
|
shibajee/buildroot
|
package/libsecret/libsecret.mk
|
mk
|
mit
| 925 |
Do not make symbols hidden on Blackfin
The libselinux logic to hide internal symbols from the DSO doesn't
work properly on Blackfin due to the USER_LABEL_PREFIX not being
handled properly. A real fix is not that simple, so this patch simply
disables the internal symbol hiding mechanism. This means that those
symbols are visible in the final DSO, which is not a problem for
proper execution, it just isn't as clean.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Index: b/src/dso.h
===================================================================
--- a/src/dso.h
+++ b/src/dso.h
@@ -1,7 +1,7 @@
#ifndef _SELINUX_DSO_H
#define _SELINUX_DSO_H 1
-#ifdef SHARED
+#if defined(SHARED) && !defined(__bfin__)
# define hidden __attribute__ ((visibility ("hidden")))
# define hidden_proto(fct) __hidden_proto (fct, fct##_internal)
# define __hidden_proto(fct, internal) \
|
shibajee/buildroot
|
package/libselinux/0001-workaround-blackfin-issue.patch
|
patch
|
mit
| 899 |
fix undefined macros in musl
musl does not define glibc-specific macros, so use a simple version of
the macro when it is not defined.
This is very inefficient, however, but copying the code from glibc is
not really possible because it is LGPL while libselinux in Public
Domain, and we want to avoid license propagation, so this macro is
completely written from scratch, and non-optimal.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
diff -durN libselinux-2.1.13.orig/src/booleans.c libselinux-2.1.13/src/booleans.c
--- libselinux-2.1.13.orig/src/booleans.c 2013-02-06 02:43:22.000000000 +0100
+++ libselinux-2.1.13/src/booleans.c 2015-07-26 20:40:41.311801914 +0200
@@ -62,6 +62,14 @@
goto bad;
}
+/* Simple (but inefficient) version of _D_ALLOC_NAMLEN when
+ * building with a C library that misses it (e.g. musl).
+ * Note: glibc does a strlen on (d)->d_name, so assume it is safe.
+ */
+#ifndef _D_ALLOC_NAMLEN
+#define _D_ALLOC_NAMLEN(d) (strlen((d)->d_name)+1)
+#endif
+
for (i = 0; i < *len; i++) {
n[i] = (char *)malloc(_D_ALLOC_NAMLEN(namelist[i]));
if (!n[i]) {
|
shibajee/buildroot
|
package/libselinux/0002-fix-musl-build.patch
|
patch
|
mit
| 1,101 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.