summaryrefslogtreecommitdiff
path: root/community/smalltalk
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/smalltalk
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/smalltalk')
-rw-r--r--community/smalltalk/PKGBUILD60
-rw-r--r--community/smalltalk/smalltalk.install22
2 files changed, 0 insertions, 82 deletions
diff --git a/community/smalltalk/PKGBUILD b/community/smalltalk/PKGBUILD
deleted file mode 100644
index edc92f438..000000000
--- a/community/smalltalk/PKGBUILD
+++ /dev/null
@@ -1,60 +0,0 @@
-# $Id: PKGBUILD 88644 2013-04-20 23:03:17Z arodseth $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: Kaiting Chen <kaitocracy@gmail.com>
-# Contributor: mrshpot <mrshpot at gmail dot com>
-# Contributor: Michael Fellinger <m.fellinger@gmail.com>
-
-pkgname=smalltalk
-pkgver=3.2.5
-pkgrel=1
-pkgdesc='Implementation of Smalltalk-80'
-url='http://smalltalk.gnu.org/'
-license=('GPL' 'LGPL')
-arch=('x86_64' 'i686')
-options=('!libtool' '!emptydirs')
-depends=('gmp' 'libffi' 'libsigsegv' 'readline' 'libltdl')
-makedepends=('gdbm' 'gtk2' 'sqlite' 'tk>=8.6' 'zip')
-install="$pkgname.install"
-source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz")
-sha256sums=('06e574e818ec49f0555d948ae53b1453d8c1df59ef597dad911a4fd1ffba1cce')
-optdepends=('tk: for gst-blox'
- 'sqlite: database in a file'
- 'sed: for examples'
- 'gtk2: GUI toolkit')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- ./configure \
- --prefix=/usr \
- --libexecdir=/usr/lib/smalltalk \
- --with-imagedir=/var/lib/smalltalk \
- --enable-gtk=yes \
- --with-system-libffi \
- --with-system-libsigsegv \
- --with-readline \
- --with-tcl \
- --with-tk \
- --with-x \
- --without-emacs
- echo '#define USE_INTERP_RESULT 1' >> config.h
- make
-}
-
-check() {
- cd "$srcdir/$pkgname-$pkgver"
-
- #make check
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make DESTDIR="$pkgdir" install
-
- # Fix manpage symlink
- rm -f "$pkgdir/usr/share/man/man1/gst-reload.1"
- ln -s gst-load.1 "$pkgdir/usr/share/man/man1/gst-reload.1"
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/smalltalk/smalltalk.install b/community/smalltalk/smalltalk.install
deleted file mode 100644
index 3f7150d67..000000000
--- a/community/smalltalk/smalltalk.install
+++ /dev/null
@@ -1,22 +0,0 @@
-infodir=usr/share/info
-filelist=(gst-base.info{,-1,-2,-3,-4,-5}.gz gst-libs.info{,-1,-2,-3}.gz gst.info{,-1,-2}.gz)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-# vim:set ts=2 sw=2 et: