summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-08-20 00:02:06 +0000
committerroot <root@rshg054.dnsready.net>2012-08-20 00:02:06 +0000
commit524da814660fa35bca4a24d0faa0a10b7eab5c6f (patch)
tree1bcbd03b3e06e28d9fa0d461e72d4964830e9c05 /community
parent07455ea1de16867b168628e8a9f7f5bffc169a5f (diff)
Mon Aug 20 00:02:06 UTC 2012
Diffstat (limited to 'community')
-rw-r--r--community/fcgiwrap/PKGBUILD8
-rw-r--r--community/fcgiwrap/fcgiwrap.service13
-rw-r--r--community/ngircd/PKGBUILD11
-rw-r--r--community/ngircd/ngircd.service11
-rw-r--r--community/ntop/PKGBUILD2
-rw-r--r--community/openttd/PKGBUILD6
-rw-r--r--community/redshift/PKGBUILD2
7 files changed, 42 insertions, 11 deletions
diff --git a/community/fcgiwrap/PKGBUILD b/community/fcgiwrap/PKGBUILD
index e3c68122d..2237fc3a7 100644
--- a/community/fcgiwrap/PKGBUILD
+++ b/community/fcgiwrap/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 57830 2011-11-03 10:18:16Z lfleischer $
+# $Id: PKGBUILD 75304 2012-08-18 12:28:57Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Aaron Bull Schaefer <aaron@elasticdog.com>
# Contributor: Ron Huang <ronhuang+aur at gmail dot com>
@@ -6,7 +6,7 @@
pkgname=fcgiwrap
pkgver=1.0.3
_gitrev='2e301c8'
-pkgrel=2
+pkgrel=3
pkgdesc='A simple server for running CGI applications over FastCGI.'
arch=('i686' 'x86_64')
url='http://nginx.localdomain.pl/wiki/FcgiWrap'
@@ -16,10 +16,12 @@ backup=('etc/conf.d/fcgiwrap')
source=("https://github.com/downloads/gnosek/fcgiwrap/${pkgname}-${pkgver}.tar.gz"
'fcgiwrap.conf.d'
'fcgiwrap.rc.d'
+ 'fcgiwrap.service'
'LICENSE')
md5sums=('be73d90df7c4442084463e2815fc213d'
'9fbb5b0e861ffea74e655143a4c1a8f9'
'71ea12f43aebca39f73ff2e0b684f361'
+ 'fda6e50f609ede7c599caac8a7bb127a'
'5aee62c27b4308f25ab32f05da387366')
build() {
@@ -37,4 +39,6 @@ package() {
install -Dm0644 ../fcgiwrap.conf.d "${pkgdir}/etc/conf.d/${pkgname}"
install -Dm0755 ../fcgiwrap.rc.d "${pkgdir}/etc/rc.d/${pkgname}"
install -Dm0644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+
+ install -Dm0644 "${srcdir}/fcgiwrap.service" "${pkgdir}/usr/lib/systemd/system/fcgiwrap.service"
}
diff --git a/community/fcgiwrap/fcgiwrap.service b/community/fcgiwrap/fcgiwrap.service
new file mode 100644
index 000000000..f59f18db2
--- /dev/null
+++ b/community/fcgiwrap/fcgiwrap.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Simple server for running CGI applications over FastCGI
+After=syslog.target network.target remote-fs.target nss-lookup.target
+
+[Service]
+Type=forking
+Restart=on-abort
+PIDFile=/var/run/fcgiwrap.pid
+ExecStart=/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9001 -u http -g http -- /usr/sbin/fcgiwrap
+ExecStop=/usr/bin/kill -15 $MAINPID
+
+[Install]
+WantedBy=multi-user.target
diff --git a/community/ngircd/PKGBUILD b/community/ngircd/PKGBUILD
index c2001c2dc..a5f0f490c 100644
--- a/community/ngircd/PKGBUILD
+++ b/community/ngircd/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 72683 2012-06-19 13:44:28Z kkeen $
+# $Id: PKGBUILD 75302 2012-08-18 11:54:08Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Mateusz Herych <heniekk@gmail.com>
# Contributor: Alexander Rødseth <rodseth@gmail.com>
pkgname=ngircd
pkgver=19.2
-pkgrel=1
+pkgrel=2
pkgdesc="Next Generation IRC Daemon"
arch=('x86_64' 'i686')
backup=(etc/ngircd.conf)
@@ -13,9 +13,11 @@ url="http://ngircd.barton.de/"
license=('GPL')
depends=('openssl' 'libident')
source=("http://ngircd.barton.de/pub/ngircd/ngircd-$pkgver.tar.gz"
- ngircd.sh)
+ ngircd.sh
+ ngircd.service)
sha256sums=('bf1d5bc7554863e295d3175483f5bb01ccb0acf06a64ba9bb222150b808cf34d'
- 'f8c28546090af8ce67471b9b4d577f6926007615356dd11afd2bc16f61d698d5')
+ 'f8c28546090af8ce67471b9b4d577f6926007615356dd11afd2bc16f61d698d5'
+ '13ffad9647ef42d1a9c8f01f6208bef9dfe9e0f86dce9a01f72711d813d720a0')
build() {
cd "$srcdir/$pkgname-$pkgver"
@@ -34,6 +36,7 @@ package() {
make DESTDIR="$pkgdir" install
install -Dm 755 ../ngircd.sh "$pkgdir/etc/rc.d/ngircd"
+ install -Dm 755 ../ngircd.service "$pkgdir/usr/lib/systemd/system/ngircd.service"
}
# vim:set ts=2 sw=2 et:
diff --git a/community/ngircd/ngircd.service b/community/ngircd/ngircd.service
new file mode 100644
index 000000000..b5bab060b
--- /dev/null
+++ b/community/ngircd/ngircd.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Next Generation IRC Daemon
+After=network.target
+
+[Service]
+# don't daemonize to simplify stuff
+ExecStart=/usr/sbin/ngircd -n
+ExecReload=/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target
diff --git a/community/ntop/PKGBUILD b/community/ntop/PKGBUILD
index 98584e1ce..ef13c23d1 100644
--- a/community/ntop/PKGBUILD
+++ b/community/ntop/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 75281 2012-08-17 18:35:49Z lfleischer $
+# $Id: PKGBUILD 75300 2012-08-18 10:30:18Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
diff --git a/community/openttd/PKGBUILD b/community/openttd/PKGBUILD
index 27c2d5890..22cf19d4f 100644
--- a/community/openttd/PKGBUILD
+++ b/community/openttd/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 71703 2012-06-01 13:23:48Z lcarlier $
+# $Id: PKGBUILD 75307 2012-08-18 21:49:24Z lcarlier $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
pkgname=openttd
-pkgver=1.2.1
+pkgver=1.2.2
pkgrel=1
pkgdesc='An engine for running Transport Tycoon Deluxe.'
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ install=openttd.install
optdepends=('openttd-opengfx: free graphics'
'openttd-opensfx: free soundset')
source=("http://binaries.openttd.org/releases/${pkgver}/${pkgname}-${pkgver}-source.tar.xz")
-md5sums=('66b54e0293594aab90085db113cc2dd3')
+sha256sums=('57b105ab03d0275e190107fd1d54255f0c25d8b24d41d15ed2702534bab31f95')
build() {
cd ${pkgname}-${pkgver}
diff --git a/community/redshift/PKGBUILD b/community/redshift/PKGBUILD
index 4296079e6..1e6d9d7b4 100644
--- a/community/redshift/PKGBUILD
+++ b/community/redshift/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 75276 2012-08-17 13:33:29Z lfleischer $
+# $Id: PKGBUILD 75297 2012-08-18 10:08:06Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Geoffrey Teale <tealeg@stop-squark>
# Contributor: Mark, Huo Mian <markhuomian[at]gmail[dot]com>