summaryrefslogtreecommitdiff
path: root/community/haveged
diff options
context:
space:
mode:
Diffstat (limited to 'community/haveged')
-rw-r--r--community/haveged/PKGBUILD39
-rw-r--r--community/haveged/service11
2 files changed, 0 insertions, 50 deletions
diff --git a/community/haveged/PKGBUILD b/community/haveged/PKGBUILD
deleted file mode 100644
index e764207f8..000000000
--- a/community/haveged/PKGBUILD
+++ /dev/null
@@ -1,39 +0,0 @@
-# $Id: PKGBUILD 100564 2013-11-05 21:52:50Z heftig $
-# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com>
-# Contributor: kfgz <kfgz at interia dot pl>
-# Contributor: pootzko <pootzko at gmail dot com>
-
-pkgname=haveged
-pkgver=1.7.c
-_pkgver=${pkgver/.c/c}
-pkgrel=3
-pkgdesc='Entropy harvesting daemon using CPU timings'
-arch=('i686' 'x86_64' 'mips64el')
-url='http://www.issihosts.com/haveged'
-license=('GPL')
-depends=('glibc')
-source=($url/$pkgname-$_pkgver.tar.gz
- service cleanexit.patch)
-sha256sums=('40397eded96fc0d624a6a81c8e888ab023e46f3114f1ee699994e645531bf121'
- 'badf8ceb5484d45888a089fabdfba5f44f6ec2930bca203c50200051a4d83e12'
- 'be896659dd96cb85915ac5a9c2bd8d81d1ff348508362d1b71d64b207f69fa5c')
-
-prepare() {
- cd $pkgname-$_pkgver
- patch -Np1 -i ../cleanexit.patch
-}
-
-build() {
- cd $pkgname-$_pkgver
- ./configure --prefix=/usr --bindir=/usr/bin --sbindir=/usr/bin
- make
-}
-
-package() {
- cd $pkgname-$_pkgver
- make DESTDIR="$pkgdir" install
-
- rm -rf "$pkgdir"/etc/init.d
- install -D -m644 "$srcdir"/service \
- "$pkgdir"/usr/lib/systemd/system/haveged.service
-}
diff --git a/community/haveged/service b/community/haveged/service
deleted file mode 100644
index 676fb1893..000000000
--- a/community/haveged/service
+++ /dev/null
@@ -1,11 +0,0 @@
-[Unit]
-Description=Entropy Harvesting Daemon
-Documentation=man:haveged(8)
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/haveged -w 1024 -v 1
-PIDFile=/var/run/haveged.pid
-
-[Install]
-WantedBy=multi-user.target