aboutsummaryrefslogtreecommitdiffstats
path: root/core/beecrypt
diff options
context:
space:
mode:
Diffstat (limited to 'core/beecrypt')
-rw-r--r--core/beecrypt/APKBUILD39
-rw-r--r--core/beecrypt/beecrypt-4.1.2-base64.patch11
2 files changed, 0 insertions, 50 deletions
diff --git a/core/beecrypt/APKBUILD b/core/beecrypt/APKBUILD
deleted file mode 100644
index b11cba439f..0000000000
--- a/core/beecrypt/APKBUILD
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=beecrypt
-pkgver=4.1.2
-pkgrel=1
-pkgdesc="general-purpose cryptography library"
-url="http://sourceforge.net/projects/beecrypt"
-license="LGPL"
-# TODO: figure out why we link libgcc_s.so.1 and do something about gcc dep
-depends="uclibc uclibc++ gcc"
-makedepends="uclibc++-dev libtool"
-
-subpackages="$pkgname-dev"
-source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
- $pkgname-4.1.2-base64.patch
- "
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- export CXX=g++-uc
-
- for i in ../*.patch; do
- msg "Applying $i..."
- patch -p1 < $i || return 1
- done
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --disable-threads \
- --enable-shared \
- --without-java \
- --without-python \
- --with-cplusplus=no
-
- make || return 1
- make DESTDIR="$pkgdir" install
-}
-md5sums="820d26437843ab0a6a8a5151a73a657c beecrypt-4.1.2.tar.gz
-01444edbffee71c2d8818fa66a3a8555 beecrypt-4.1.2-base64.patch"
diff --git a/core/beecrypt/beecrypt-4.1.2-base64.patch b/core/beecrypt/beecrypt-4.1.2-base64.patch
deleted file mode 100644
index c6c370bd07..0000000000
--- a/core/beecrypt/beecrypt-4.1.2-base64.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-Fix b64encode() for data starting with NUL from Miloslav Trmac <mitr@redhat.com>
---- beecrypt-4.1.2/base64.c.b64 2005-04-26 21:46:27.000000000 +0200
-+++ beecrypt-4.1.2/base64.c 2005-04-26 21:47:48.000000000 +0200
-@@ -253,7 +253,6 @@
- unsigned c;
-
- if (s == NULL) return NULL;
-- if (*s == '\0') return calloc(1, sizeof(*t));
-
- if (ns == 0) ns = strlen((const char*) s);
- nt = ((ns + 2) / 3) * 4;