summaryrefslogtreecommitdiff
path: root/community/extrema
diff options
context:
space:
mode:
Diffstat (limited to 'community/extrema')
-rw-r--r--community/extrema/PKGBUILD43
-rw-r--r--community/extrema/extrema.desktop8
-rw-r--r--community/extrema/gcc46.patch15
3 files changed, 0 insertions, 66 deletions
diff --git a/community/extrema/PKGBUILD b/community/extrema/PKGBUILD
deleted file mode 100644
index 233b55fa3..000000000
--- a/community/extrema/PKGBUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# $Id: PKGBUILD 58786 2011-11-18 14:18:33Z andrea $
-# Maintainer:
-# Contributor: Thomas Dziedzic < gostrc at gmail >
-# Contributor: Marcelo Avalos Tejeda <marcelo.avalos@gmail.com>
-
-pkgname=extrema
-pkgver=4.4.5
-pkgrel=2
-pkgdesc='A powerful visualization and data analysis tool'
-arch=('i686' 'x86_64')
-url='http://exsitewebware.com/extrema/index.html'
-license=('GPL')
-depends=('wxgtk')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz"
- 'extrema.desktop'
- 'gcc46.patch')
-md5sums=('8a1e82b34874db2bfa64d9a2956677b1'
- '0f4d310d230e28436dff20e77aed71bb'
- 'be85114cee4c677d33f1522d958e76db')
-
-build() {
- cd "${srcdir}"/${pkgname}-${pkgver}
-
- patch -p1 -i "${srcdir}"/gcc46.patch
-
- ./configure --prefix=/usr
- make
-
- tar xf extrema_icons.tar.bz2
-}
-
-package() {
- cd "${srcdir}"/${pkgname}-${pkgver}
-
- make DESTDIR=${pkgdir} install
-
- install -D -m644 32x32/apps/extrema.png \
- ${pkgdir}/usr/share/pixmaps/extrema.png
-
- install -D -m644 ${srcdir}/extrema.desktop \
- ${pkgdir}/usr/share/applications/extrema.desktop
-}
diff --git a/community/extrema/extrema.desktop b/community/extrema/extrema.desktop
deleted file mode 100644
index c3bfb9f65..000000000
--- a/community/extrema/extrema.desktop
+++ /dev/null
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Name=eXtrema
-Comment=Visualization and Data Analysis Tool
-Exec=extrema
-Icon=extrema.png
-Terminal=0
-Type=Application
-Categories=Science;Math; \ No newline at end of file
diff --git a/community/extrema/gcc46.patch b/community/extrema/gcc46.patch
deleted file mode 100644
index 45a804292..000000000
--- a/community/extrema/gcc46.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Fix building with gcc-4.6
-
-https://bugs.gentoo.org/show_bug.cgi?id=363467
-
-Patch written by Kacper Kowalik <xarthisius@gentoo.org>
---- a/src/Graphics/GRA_thiessenTriangulation.h
-+++ b/src/Graphics/GRA_thiessenTriangulation.h
-@@ -19,6 +19,7 @@
- #define GRA_THIESSENTRIANGULATION
-
- #include <vector>
-+#include <cstddef>
-
- class GRA_thiessenTriangulation
- {