aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/hexcurse
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
committerJakub Jirutka <jakub@jirutka.cz>2017-12-01 17:26:53 +0100
commit3ce3c4fd596debefbad77328a9b62a39eccf753c (patch)
tree8ea8842d946335dbd124e71336a11b928481c544 /unmaintained/hexcurse
parent62b8ba5f8fe6d62d56b2d078b4f12f72830ee4af (diff)
downloadaports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.bz2
aports-3ce3c4fd596debefbad77328a9b62a39eccf753c.tar.xz
unmaintained/*: purge aports not touched since v3.5.0
We agreed with ncopa on #alpine-devel (2017-12-01 16:20 UTC) to periodically purge aports in unmaintained that haven't been touched in last 1 year (2 releases).
Diffstat (limited to 'unmaintained/hexcurse')
-rw-r--r--unmaintained/hexcurse/APKBUILD46
-rw-r--r--unmaintained/hexcurse/hexcurse-alloca.patch14
2 files changed, 0 insertions, 60 deletions
diff --git a/unmaintained/hexcurse/APKBUILD b/unmaintained/hexcurse/APKBUILD
deleted file mode 100644
index 7bf023913b..0000000000
--- a/unmaintained/hexcurse/APKBUILD
+++ /dev/null
@@ -1,46 +0,0 @@
-# Contributor: Carlo Landmeter <clandmeter@gmail.com>
-# Maintainer:
-pkgname=hexcurse
-pkgver=1.55
-pkgrel=0
-pkgdesc="Versatile ncurses-based hex editor"
-url="http://directory.fsf.org/project/HexCurse"
-arch="all"
-license="GPL"
-depends=
-depends_dev="ncurses-dev"
-makedepends="$depends_dev"
-install=""
-subpackages="$pkgname-doc"
-source="http://gd.tuwien.ac.at/opsys/linux/gentoo/distfiles/hexcurse-$pkgver.tar.gz
- hexcurse-alloca.patch"
-
-_builddir="$srcdir"/hexcurse-$pkgver
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- ./configure --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
-}
-
-md5sums="c9f9485490300b5111aa429eabfef789 hexcurse-1.55.tar.gz
-5aae74a76923ee8e4fe033e0aa381a82 hexcurse-alloca.patch"
diff --git a/unmaintained/hexcurse/hexcurse-alloca.patch b/unmaintained/hexcurse/hexcurse-alloca.patch
deleted file mode 100644
index 2ea060f2d8..0000000000
--- a/unmaintained/hexcurse/hexcurse-alloca.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- hexcurse/src/getopt.c 2002-03-21 17:55:54.000000000 +0100
-+++ hexcurse/src/getopt.c 2004-08-09 12:52:39.592951560 +0200
-@@ -36,8 +36,8 @@
- * enables hexcurse to be compiled with SGI's proprietary compiler */
- #ifdef _SGIAPI
- #include <alloca.h>
--#else
--char *alloca ();
-+//#else
-+//char *alloca ();
- #endif
- #define __alloca alloca
- /* end of modification */
-