aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2016-05-11 13:38:06 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2016-05-11 13:38:06 +0000
commit9b7f016e3e8d180896dbc356723b4717ff8bc3d6 (patch)
tree0dc583e2e3ee4e700c1af0b7ca4d35737cc48594 /testing
parent77339ea531ef0dc66e1b269d86da4f92ba954b94 (diff)
downloadaports-9b7f016e3e8d180896dbc356723b4717ff8bc3d6.tar.bz2
aports-9b7f016e3e8d180896dbc356723b4717ff8bc3d6.tar.xz
community/opensp: move to community
Diffstat (limited to 'testing')
-rw-r--r--testing/opensp/APKBUILD65
-rw-r--r--testing/opensp/opensp-1.5-InternalInputSource-fix.patch11
-rw-r--r--testing/opensp/opensp-1.5-install.patch19
-rw-r--r--testing/opensp/opensp-1.5-wideCharMax-fix.patch10
4 files changed, 0 insertions, 105 deletions
diff --git a/testing/opensp/APKBUILD b/testing/opensp/APKBUILD
deleted file mode 100644
index ab05fe2120..0000000000
--- a/testing/opensp/APKBUILD
+++ /dev/null
@@ -1,65 +0,0 @@
-# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
-# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
-# Maintainer:
-pkgname=opensp
-_realname=OpenSP
-pkgver=1.5.1
-pkgrel=0
-pkgdesc="Implementation of the DSSSL style language"
-url="http://openjade.sourceforge.net"
-arch="all"
-license="custom"
-depends=""
-depends_dev=""
-makedepends="$depends_dev"
-install=""
-subpackages="$pkgname-dev $pkgname-doc $pkgname-lang"
-source="http://prdownloads.sourceforge.net/openjade/$_realname-$pkgver.tar.gz
- opensp-1.5-wideCharMax-fix.patch
- opensp-1.5-InternalInputSource-fix.patch
- opensp-1.5-install.patch"
-
-_builddir="$srcdir"/$_realname-$pkgver
-prepare() {
- cd "$_builddir"
- update_config_sub || return 1
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
- --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --localstatedir=/var \
- || return 1
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install || return 1
- install -Dm644 "$_builddir"/COPYING \
- "$pkgdir"/usr/share/licenses/$pkgname/COPYING || return 1
-}
-
-md5sums="f46fe0a04b76a4454ec27b7fcc84ec54 OpenSP-1.5.1.tar.gz
-dd5e3d89995dea240c36ce0bad1bddf6 opensp-1.5-wideCharMax-fix.patch
-a8b5378b8501a50f78366bf819176435 opensp-1.5-InternalInputSource-fix.patch
-cfa9bf5850bafea0c2d2ac01a615b929 opensp-1.5-install.patch"
-sha256sums="3f0649840dc3d6ec432e3c8d933b178208f3feccb6db111d22c8995ad07c736b OpenSP-1.5.1.tar.gz
-8f25c56dc58ba6293fe5ef4c860eacfea122d945aa7ecbc5b1ffe54fab62a6c8 opensp-1.5-wideCharMax-fix.patch
-3a1f328c94b49eae2d4c3051b6d2550092d1ebbf3c1ce4399fe97f5adcd7abb1 opensp-1.5-InternalInputSource-fix.patch
-32570cedb02dbaa8fc544cb3706f73c4065b19dcb1dd41fdadc5e7af1fb080fd opensp-1.5-install.patch"
-sha512sums="c89c256d384001d73669181e0894e7ca083bedc3f8bfd77eb7c2d1e9fc5a7c91a33a0bc5ca50491e3a644bb1f58224b027d996e111e5d82d518f5d9f41c8546a OpenSP-1.5.1.tar.gz
-7634358bd5bd2a567a6d449e904e9f95045a83dc45da378adbb551677b25e46c2525484d3c64c31a735acfbacf7af88b348791192ed29610a8166dc69cba962a opensp-1.5-wideCharMax-fix.patch
-4da57ece0246d66bb5d5b71df6f7b01699012a0cc52f6a1cb26af9689277ac9e393b2e3c418ad211e90eba92fe966e2f19d71c611345a69268296be9cfc5e23c opensp-1.5-InternalInputSource-fix.patch
-6d4cddb3c98313643ef7ab57ce154dd8a188b7ea8edc608a62ff25e4f995ab4167be94e40c2a62ae568e22e1ada4bd9bf0c9687e4dfa43dafde4d87e8b73fdf8 opensp-1.5-install.patch"
diff --git a/testing/opensp/opensp-1.5-InternalInputSource-fix.patch b/testing/opensp/opensp-1.5-InternalInputSource-fix.patch
deleted file mode 100644
index 0e8e393457..0000000000
--- a/testing/opensp/opensp-1.5-InternalInputSource-fix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/include/InternalInputSource.h
-+++ b/include/InternalInputSource.h
-@@ -34,7 +34,7 @@
- void pushCharRef(Char ch, const NamedCharRef &);
- Boolean rewind(Messenger &);
- const StringC *contents();
-- InternalInputSource *InternalInputSource::asInternalInputSource();
-+ InternalInputSource *asInternalInputSource();
- ~InternalInputSource();
- private:
- InternalInputSource(const InternalInputSource &); // undefined
diff --git a/testing/opensp/opensp-1.5-install.patch b/testing/opensp/opensp-1.5-install.patch
deleted file mode 100644
index aea321854e..0000000000
--- a/testing/opensp/opensp-1.5-install.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/intl/Makefile.in
-+++ b/intl/Makefile.in
-@@ -153,11 +153,11 @@
- : ; \
- fi
- if test '@USE_INCLUDED_LIBINTL@' = yes; then \
-- test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \
-- temp=$(DESTDIR)$(libdir)/t-charset.alias; \
-- dest=$(DESTDIR)$(libdir)/charset.alias; \
-- if test -f $(DESTDIR)$(libdir)/charset.alias; then \
-- orig=$(DESTDIR)$(libdir)/charset.alias; \
-+ test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(datadir); \
-+ temp=$(DESTDIR)$(datadir)/t-charset.alias; \
-+ dest=$(DESTDIR)$(datadir)/charset.alias; \
-+ if test -f $(DESTDIR)$(datadir)/charset.alias; then \
-+ orig=$(DESTDIR)$(datadir)/charset.alias; \
- sed -f ref-add.sed $$orig > $$temp; \
- $(INSTALL_DATA) $$temp $$dest; \
- rm -f $$temp; \
diff --git a/testing/opensp/opensp-1.5-wideCharMax-fix.patch b/testing/opensp/opensp-1.5-wideCharMax-fix.patch
deleted file mode 100644
index 2d45217c3c..0000000000
--- a/testing/opensp/opensp-1.5-wideCharMax-fix.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- a/include/RangeMap.cxx
-+++ b/include/RangeMap.cxx
-@@ -7,6 +7,7 @@
- #include "RangeMap.h"
- #include "ISet.h"
- #include "types.h"
-+#include "constant.h"
-
- #ifdef SP_NAMESPACE
- namespace SP_NAMESPACE {