diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-08-20 21:33:52 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-08-20 21:33:52 -0400 |
commit | abea971649ac7e7e72893eb53aae2a6389a66106 (patch) | |
tree | d4c1fa1dcd7f4699c1ddbd100f6064b514a5fbe0 /libre/vhba-module-parabola-grsec | |
parent | 92f0fa3c89a53b4034a5928bb57935279ceeae68 (diff) | |
download | abslibre-abea971649ac7e7e72893eb53aae2a6389a66106.tar.gz abslibre-abea971649ac7e7e72893eb53aae2a6389a66106.tar.bz2 abslibre-abea971649ac7e7e72893eb53aae2a6389a66106.zip |
Rename all the kernel-depending packages.
Diffstat (limited to 'libre/vhba-module-parabola-grsec')
-rw-r--r-- | libre/vhba-module-parabola-grsec/60-vhba.rules | 1 | ||||
-rw-r--r-- | libre/vhba-module-parabola-grsec/PKGBUILD | 61 | ||||
-rw-r--r-- | libre/vhba-module-parabola-grsec/vhba-module.install | 20 |
3 files changed, 82 insertions, 0 deletions
diff --git a/libre/vhba-module-parabola-grsec/60-vhba.rules b/libre/vhba-module-parabola-grsec/60-vhba.rules new file mode 100644 index 000000000..39ae3a4ec --- /dev/null +++ b/libre/vhba-module-parabola-grsec/60-vhba.rules @@ -0,0 +1 @@ +ACTION=="add", KERNEL=="vhba_ctl", NAME="vhba_ctl", MODE="0660", OWNER="root", GROUP="cdemu", TAG+="uaccess" diff --git a/libre/vhba-module-parabola-grsec/PKGBUILD b/libre/vhba-module-parabola-grsec/PKGBUILD new file mode 100644 index 000000000..ec010b212 --- /dev/null +++ b/libre/vhba-module-parabola-grsec/PKGBUILD @@ -0,0 +1,61 @@ +# $Id: PKGBUILD 116828 2014-08-04 07:19:43Z tpowa $ +# Maintainer (Arch): Ray Rashif <schiv@archlinux.org> +# Contributor (Arch): Mateusz Herych <heniekk@gmail.com> +# Contributor (Arch): Charles Lindsay <charles@chaoslizard.org> +# Maintainer: André Silva <emulatorman@parabola.nu> +# Contributor: Luke Shumaker <lukeshu@sbcglobal.net> + +# Kernel info +_basekernel=3.15 +_kernelname=-grsec + +# Source info +_pkgname=vhba-module +pkgver=20140629 +pkgdesc="Kernel module that emulates SCSI devices (built for the linux-libre${_kernelname} kernel package)" +url="http://cdemu.sourceforge.net/" +license=('GPL') +source=("http://downloads.sourceforge.net/cdemu/$_pkgname-$pkgver.tar.bz2" + '60-vhba.rules') +md5sums=('6b307a80df9c163768cc7ecb3ccebb71' + '4dc37dc348b5a2c83585829bde790dcc') + +# Package info +pkgrel=7.${_basekernel/./} +arch=('i686' 'x86_64') +options=(!makeflags) +install=$_pkgname.install + +# Generic (you shouldn't have to modify any of these variables) +pkgname=${_pkgname}-parabola${_kernelname} +_toohigh=$(IFS=. read a b <<<$_basekernel; echo $a.$((b+1))) +_extramodules=extramodules-${_basekernel}${_kernelname:--PARABOLA} +depends=("linux-libre${_kernelname}>=${_basekernel}" "linux-libre${_kernelname}<${_toohigh}") +makedepends=("linux-libre${_kernelname}-headers>=${_basekernel}" "linux-libre${_kernelname}-headers<${_toohigh}") +replaces=( "${_pkgname}${_kernelname}") # for Arch-compatability +conflicts=("${_pkgname}${_kernelname}") # for Arch-compatability +provides=( "${_pkgname}${_kernelname}=${pkgver}") # for Arch-compatability +if [[ -n "${_kernelname}" ]]; then + provides+=("${_pkgname}-parabola=${pkgver}") # pkgname without _kernelname +fi + +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + _kernver="$(cat /usr/lib/modules/${_extramodules}/version)" + + make KDIR=/usr/lib/modules/$_kernver/build +} + +package() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + # Set the correct extramodules directory for install + cp -f "${startdir}/${install}" "${startdir}/${install}.pkg" + true && install=${install}.pkg + sed -r "s/(_extramodules=).*/\1${_extramodules}/" -i "${startdir}/${install}" + + # Actually install + install -Dm644 vhba.ko "$pkgdir/usr/lib/modules/$_extramodules/vhba.ko" + install -Dm644 ../60-vhba.rules "$pkgdir/usr/lib/udev/rules.d/60-vhba.rules" +} diff --git a/libre/vhba-module-parabola-grsec/vhba-module.install b/libre/vhba-module-parabola-grsec/vhba-module.install new file mode 100644 index 000000000..04d26b27b --- /dev/null +++ b/libre/vhba-module-parabola-grsec/vhba-module.install @@ -0,0 +1,20 @@ +_updatemod() { + _extramodules=THIS_IS_AUTOMATICALLY_SET_BY_PKGBUILD + depmod $(cat /usr/lib/modules/${_extramodules}/version) +} + +post_install() { + getent group cdemu &>/dev/null || groupadd -r cdemu + _updatemod +} + +post_upgrade() { + post_install +} + +post_remove() { + _updatemod + groupdel cdemu +} + +# vim:set ts=2 sw=2 et: |