summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2020-02-03 15:16:55 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2020-02-03 15:16:55 -0500
commit9aa489802cacd2e248a3dcb21c981c06cdd9cfe2 (patch)
treea0f137e3783b6f30c5f3c7bd6897a3b08b73f17e
parent001ff9e67cd9f81195b1d6ff71082ede2365421d (diff)
Removing log4cxx: This package is in [community] repo
-rw-r--r--pcr/log4cxx/PKGBUILD31
-rw-r--r--pcr/log4cxx/log4cxx-0.10.0-missing_includes.patch38
2 files changed, 0 insertions, 69 deletions
diff --git a/pcr/log4cxx/PKGBUILD b/pcr/log4cxx/PKGBUILD
deleted file mode 100644
index 0f2266831..000000000
--- a/pcr/log4cxx/PKGBUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-# Contributor: ?
-# Maintainer : Parabola GNU / Linux-libre Aurélien DESBRIÈRES <aurelien@hackers.camp>
-
-pkgname=log4cxx
-pkgver=0.10.0
-pkgrel=3.1
-pkgdesc="A C++ port of Log4j"
-url="http://logging.apache.org/log4cxx"
-license=("APACHE")
-depends=('apr-util' 'libxml2')
-arch=('i686' 'x86_64')
-makedepends=('autoconf' 'automake' 'libtool' 'patch' 'zip' 'gzip' 'sed')
-
-source=(http://archive.apache.org/dist/logging/$pkgname/$pkgver/apache-$pkgname-$pkgver.tar.gz
- log4cxx-0.10.0-missing_includes.patch)
-md5sums=('b30ffb8da3665178e68940ff7a61084c'
- 'dfa17719a57b19f12cbef94419a2aac8')
-
-build() {
- cd "$srcdir/apache-$pkgname-$pkgver"
-
- patch -p1 < $startdir/log4cxx-0.10.0-missing_includes.patch
-
- ./configure --prefix=/usr --disable-static
- make
-}
-
-package() {
- cd "$srcdir/apache-$pkgname-$pkgver"
- make DESTDIR="$pkgdir/" install
-}
diff --git a/pcr/log4cxx/log4cxx-0.10.0-missing_includes.patch b/pcr/log4cxx/log4cxx-0.10.0-missing_includes.patch
deleted file mode 100644
index 9f3534ccc..000000000
--- a/pcr/log4cxx/log4cxx-0.10.0-missing_includes.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff -Naur apache-log4cxx-0.10.0.orig/src/examples/cpp/console.cpp apache-log4cxx-0.10.0/src/examples/cpp/console.cpp
---- apache-log4cxx-0.10.0.orig/src/examples/cpp/console.cpp 2008-04-01 00:34:52.000000000 +0200
-+++ apache-log4cxx-0.10.0/src/examples/cpp/console.cpp 2008-05-06 05:40:52.000000000 +0200
-@@ -15,7 +15,10 @@
- * limitations under the License.
- */
-
--#include <stdlib.h>
-+#include <cstdio>
-+#include <cstdlib>
-+#include <cstring>
-+#include <stdint.h>
- #include <log4cxx/logger.h>
- #include <log4cxx/consoleappender.h>
- #include <log4cxx/simplelayout.h>
-diff -Naur apache-log4cxx-0.10.0.orig/src/main/cpp/inputstreamreader.cpp apache-log4cxx-0.10.0/src/main/cpp/inputstreamreader.cpp
---- apache-log4cxx-0.10.0.orig/src/main/cpp/inputstreamreader.cpp 2008-04-01 00:34:09.000000000 +0200
-+++ apache-log4cxx-0.10.0/src/main/cpp/inputstreamreader.cpp 2008-05-06 05:32:31.000000000 +0200
-@@ -21,6 +21,8 @@
- #include <log4cxx/helpers/pool.h>
- #include <log4cxx/helpers/bytebuffer.h>
-
-+#include <cstring>
-+
- using namespace log4cxx;
- using namespace log4cxx::helpers;
-
-diff -Naur apache-log4cxx-0.10.0.orig/src/main/cpp/socketoutputstream.cpp apache-log4cxx-0.10.0/src/main/cpp/socketoutputstream.cpp
---- apache-log4cxx-0.10.0.orig/src/main/cpp/socketoutputstream.cpp 2008-04-01 00:34:09.000000000 +0200
-+++ apache-log4cxx-0.10.0/src/main/cpp/socketoutputstream.cpp 2008-05-06 05:35:55.000000000 +0200
-@@ -20,6 +20,8 @@
- #include <log4cxx/helpers/socket.h>
- #include <log4cxx/helpers/bytebuffer.h>
-
-+#include <cstring>
-+
- using namespace log4cxx;
- using namespace log4cxx::helpers;