diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/delegate |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/delegate')
-rw-r--r-- | community/delegate/ChangeLog | 3 | ||||
-rw-r--r-- | community/delegate/PKGBUILD | 31 | ||||
-rw-r--r-- | community/delegate/delegate.install | 11 |
3 files changed, 45 insertions, 0 deletions
diff --git a/community/delegate/ChangeLog b/community/delegate/ChangeLog new file mode 100644 index 000000000..d22a5592c --- /dev/null +++ b/community/delegate/ChangeLog @@ -0,0 +1,3 @@ +2007-07-02 tardo <tardo@nagi-fanboi.net> +* Built for x86_64 + diff --git a/community/delegate/PKGBUILD b/community/delegate/PKGBUILD new file mode 100644 index 000000000..450698d29 --- /dev/null +++ b/community/delegate/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 18941 2010-06-17 16:25:05Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=delegate +pkgver=9.9.7 +pkgrel=1 +pkgdesc="Caching and converting multyprotocol proxy. For example, you may use it as NNTP web interface" +arch=('i686' 'x86_64') +url="http://www.delegate.org/" +license=('GPL') +depends=('pam') +options=(!strip) +install=delegate.install +source=(ftp://ftp:ps790809%40inbox%2Eru@ftp.delegate.org/pub/DeleGate/delegate$pkgver.tar.gz) +md5sums=('86c833e95cd16a54d54fa3c7e4ab7929') + +build() { + cd $srcdir/$pkgname$pkgver + make ADMIN="root@localhost" || return 1 + + install -D -m0755 src/delegated $pkgdir/usr/bin/delegated || return 1 + + install -D -m0755 subin/dgbind $pkgdir/usr/sbin/dgbind || return 1 + install -D -m0755 subin/dgchroot $pkgdir/usr/sbin/dgchroot || return 1 + install -D -m0755 subin/dgcpnod $pkgdir/usr/sbin/dgcpnod || return 1 + install -D -m0755 subin/dgpam $pkgdir/usr/sbin/dgpam || return 1 + + install -D -m0644 doc/Manual.htm $pkgdir/usr/share/delegate/manual.htm || return 1 + install -D -m0644 doc/tutor-en.htm $pkgdir/usr/share/delegate/tutor-en.htm || return 1 +} diff --git a/community/delegate/delegate.install b/community/delegate/delegate.install new file mode 100644 index 000000000..f7c7096b4 --- /dev/null +++ b/community/delegate/delegate.install @@ -0,0 +1,11 @@ +pre_install() { + /bin/true +} + +post_install() { + echo "--" + echo "-- Delegate supports too many protocols, so I did not write any rc-script" + echo "-- Please read documentation in /usr/share/delegate/" + echo "--" + /bin/true +} |