mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
aur/lio-utils to 4.1-8
This commit is contained in:
parent
38e01b8c1c
commit
762b67f3d7
3 changed files with 35 additions and 12 deletions
|
@ -1,10 +1,7 @@
|
|||
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
||||
|
||||
plugrel=1
|
||||
|
||||
pkgname=lio-utils
|
||||
pkgver=4.1
|
||||
pkgrel=7
|
||||
pkgrel=8
|
||||
epoch=
|
||||
pkgdesc="a simple low-level configuration tool set for LIO (Target and iSCSI)"
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -20,9 +17,9 @@ replaces=()
|
|||
backup=('etc/target/tcm_start.sh' 'etc/target/lio_start.sh')
|
||||
options=()
|
||||
install=
|
||||
source=(rc-arch.patch)
|
||||
md5sums=('1afad3e324d0bdde01d0383b482fac5f')
|
||||
|
||||
source=(rc-arch.patch logfile.patch)
|
||||
md5sums=('1afad3e324d0bdde01d0383b482fac5f'
|
||||
'43ab5e1a31f6d331dceef5bfa41a91a6')
|
||||
|
||||
build() {
|
||||
if [ ! -e "$pkgname-$pkgver.tgz" ]; then
|
||||
|
@ -31,6 +28,7 @@ build() {
|
|||
bsdtar -xf "$srcdir/$pkgname-$pkgver.tgz"
|
||||
|
||||
cd "$srcdir/$pkgname/"
|
||||
patch -p1 < "$srcdir/logfile.patch"
|
||||
patch -p1 < "$srcdir/rc-arch.patch"
|
||||
|
||||
cd "$srcdir/$pkgname/"
|
||||
|
|
28
aur/lio-utils/logfile.patch
Normal file
28
aur/lio-utils/logfile.patch
Normal file
|
@ -0,0 +1,28 @@
|
|||
commit 4f87d08987ab6332154cc37f81019de15a4af894
|
||||
Author: Ritesh Raj Sarraf <rrs@researchut.com>
|
||||
Date: Fri Mar 16 01:23:40 2012 +0530
|
||||
|
||||
tighter checks
|
||||
|
||||
Please see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654262 for
|
||||
details. Thanks to Aurelien Jarno
|
||||
|
||||
Signed-off-by: Ritesh Raj Sarraf <rrs@researchut.com>
|
||||
Signed-off-by: Nicholas Bellinger <nab@risingtidesystems.com>
|
||||
|
||||
diff --git a/scripts/rc.target b/scripts/rc.target
|
||||
index 22c0350..7ad75a3 100644
|
||||
--- a/scripts/rc.target
|
||||
+++ b/scripts/rc.target
|
||||
@@ -51,9 +51,9 @@ LIO_CONFIGFS_SCRIPT="/etc/target/lio_start.sh"
|
||||
# Enable: Set DEBUG=1 Disable: Set DEBUG=0
|
||||
|
||||
DEBUG=0
|
||||
-LOGFILE=/tmp/tgtctl.dbug
|
||||
+LOGFILE=/var/log/tgtctl.dbug
|
||||
|
||||
-if [ $DEBUG ]; then
|
||||
+if [ $DEBUG != 0 ]; then
|
||||
echo "$0 $*" >> $LOGFILE
|
||||
fi
|
||||
#########################################################################
|
|
@ -1,9 +1,7 @@
|
|||
# Contributor : xav <xav at ethertricks dot net>
|
||||
|
||||
plugrel=1
|
||||
|
||||
pkgname=umurmur
|
||||
pkgver=0.2.8
|
||||
pkgver=0.2.10
|
||||
pkgrel=1
|
||||
pkgdesc="A minimalistic Mumble server"
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -14,7 +12,7 @@ source=(http://umurmur.googlecode.com/files/${pkgname}-${pkgver}.tar.gz \
|
|||
umurmur.rc.d \
|
||||
umurmur.conf.d \
|
||||
umurmur.1)
|
||||
sha1sums=('4e497663d0612efb1b61f61663a8d4c27e90777f'
|
||||
sha1sums=('5a53b021078dfbdf001c9af9ff207ea84bcf8222'
|
||||
'c4f91846a6ee16437452c024652d2f5eca0c0c2a'
|
||||
'21749181b742154a3be984caa5e29ab62410e9cf'
|
||||
'07e1f5082faced4610ef97af2aacd52f583b9a5f')
|
||||
|
@ -30,4 +28,3 @@ build() {
|
|||
install -Dm644 ${srcdir}/umurmur.conf.d ${pkgdir}/etc/conf.d/umurmur
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue