summaryrefslogtreecommitdiff
path: root/community-testing/open-vm-tools-modules
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-17 19:27:42 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-17 19:27:42 +0000
commit049af7a95b01eba14d33586ad5852dddaf107e53 (patch)
tree3f89f26ef1ec32f03b8842f97077b7d3459ba6d0 /community-testing/open-vm-tools-modules
parent84837d89991e1e82e5aef8e297541c572ebf2efa (diff)
Fixed
Diffstat (limited to 'community-testing/open-vm-tools-modules')
-rw-r--r--community-testing/open-vm-tools-modules/PKGBUILD38
-rw-r--r--community-testing/open-vm-tools-modules/open-vm-tools-modules.install34
2 files changed, 0 insertions, 72 deletions
diff --git a/community-testing/open-vm-tools-modules/PKGBUILD b/community-testing/open-vm-tools-modules/PKGBUILD
deleted file mode 100644
index 7c9125ade..000000000
--- a/community-testing/open-vm-tools-modules/PKGBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 44312 2011-04-05 15:06:23Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Contributor: Krzysztof Raczkowski <raczkow@gmail.com>
-
-pkgname=open-vm-tools-modules
-pkgver=2011.03.28
-_pkgsubver=387002
-pkgrel=1
-pkgdesc="The Open Virtual Machine Tools (open-vm-tools) are the open source implementation of VMware Tools."
-arch=('i686' 'x86_64')
-url="http://open-vm-tools.sourceforge.net/"
-license=('GPL')
-makedepends=('libdnet' 'icu' 'uriparser' 'kernel26-headers')
-depends=("kernel26")
-install=$pkgname.install
-source=(http://easynews.dl.sourceforge.net/sourceforge/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz)
-md5sums=('a9c72ab0b8f7778d444e69e9d3b95527')
-
-build() {
- cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
- sed -i 's#-lproc-3.2.7#-lproc-3.2.8#' configure
- [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr
- (cd modules && make modules)
-}
-
-package() {
- _kernver=`pacman -Q kernel26 | cut -d . -f 3 | cut -f 1 -d -`
- depends=("kernel26>=2.6.${_kernver}" "kernel26<2.6.`expr ${_kernver} + 1`")
- KERNEL_VERSION="2.6.${_kernver}-ARCH"
- msg "Kernel = $KERNEL_VERSION"
-
- cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}"
- mkdir -p $pkgdir/lib/modules/$KERNEL_VERSION/misc/
- for MOD in `find -type f -name '*.ko'`; do
- install -D -m644 $MOD $pkgdir/lib/modules/$KERNEL_VERSION/misc/
- done
- sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='$KERNEL_VERSION'/" $startdir/$pkgname.install
-}
diff --git a/community-testing/open-vm-tools-modules/open-vm-tools-modules.install b/community-testing/open-vm-tools-modules/open-vm-tools-modules.install
deleted file mode 100644
index 7f44b03ef..000000000
--- a/community-testing/open-vm-tools-modules/open-vm-tools-modules.install
+++ /dev/null
@@ -1,34 +0,0 @@
-KERNEL_VERSION='2.6.38-ARCH'
-
-post_install() {
- depmod -a -v $KERNEL_VERSION > /dev/null 2>&1
-
- VMXNET="install pcnet32 /sbin/modprobe -q --ignore-install vmxnet;"
- VMXNET="$VMXNET /sbin/modprobe -q --ignore-install pcnet32 $CMDLINE_OPTS;"
- VMXNET="$VMXNET /bin/true;"
-
- echo ">>> Enabling vmxnet driver in /etc/modprobe.d/modprobe.conf"
- echo ">>> (this will disable pcnet32 driver)"
- sed "$ a \\\n#VMware net driver\n$VMXNET" -i /etc/modprobe.d/modprobe.conf
- echo
-
- echo ">>>"
- echo ">>> If vmxnet driver doesn't handle your NIC, you have to manually"
- echo ">>> disable loading of pcnet32 driver by blacklisting it in /etc/rc.conf."
- echo ">>>"
-}
-
-post_upgrade() {
- depmod -a -v $KERNEL_VERSION > /dev/null 2>&1
-}
-
-post_remove() {
- depmod -a -v $KERNEL_VERSION > /dev/null 2>&1
-
- echo ">>> Disabling vmxnet driver in /etc/modprobe.d/modprobe.conf"
- sed "/VMware net driver/,+1 d" -i /etc/modprobe.d/modprobe.conf
-
- echo ">>>"
- echo ">>> Remember to un-blacklist pcnet32 driver in /etc/rc.conf."
- echo ">>>"
-}