summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-02-23 16:06:30 -0300
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-02-23 16:06:30 -0300
commit6344d6a8f72cd5457d8bfcd0903139660ff316f7 (patch)
tree34f3c01b08d35815e960db4e6888423d383a732d
parent435a5936c6abedbd2ed102d22fccb4117b0ef3d1 (diff)
not going to port pcmciautils...
-rw-r--r--core/pcmciautils/PKGBUILD33
-rw-r--r--core/pcmciautils/initcpio-install-pcmcia22
2 files changed, 0 insertions, 55 deletions
diff --git a/core/pcmciautils/PKGBUILD b/core/pcmciautils/PKGBUILD
deleted file mode 100644
index b83d8cc50..000000000
--- a/core/pcmciautils/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 185562 2013-05-15 07:34:58Z tpowa $
-# Maintainer: Tom Gundersen <teg@jklm.no>
-# Contributor: Tobias Powalowski <tpowa@archlinux.org>
-pkgname=pcmciautils
-pkgver=018
-pkgrel=7
-pkgdesc="Utilities for inserting and removing PCMCIA cards"
-arch=('i686' 'x86_64')
-url="http://kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html"
-license=('GPL')
-groups=('base')
-depends=('systemd')
-conflicts=('pcmcia-cs')
-# source=(http://kernel.org/pub/linux/utils/kernel/pcmcia/${pkgname}-${pkgver}.tar.bz2) broken due to breakin
-source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.xz
- initcpio-install-pcmcia)
-options=(!makeflags)
-
-build() {
- cd "$pkgname-$pkgver"
- sed -i -e 's,/lib/udev,/usr/lib/udev,g' Makefile
- sed -i -e 's,/sbin,/usr/bin,g' Makefile
- make
-}
-
-package() {
- make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install
-
- # install the mkinitpcio hook
- install -Dm644 initcpio-install-pcmcia "$pkgdir/usr/lib/initcpio/install/pcmcia"
-}
-md5sums=('2e9469c44dcb790d2b497723c2fa0566'
- '041af04025daee5b3b05812ac3896c8f')
diff --git a/core/pcmciautils/initcpio-install-pcmcia b/core/pcmciautils/initcpio-install-pcmcia
deleted file mode 100644
index af89c4c9c..000000000
--- a/core/pcmciautils/initcpio-install-pcmcia
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-build() {
- if add_checked_modules -f 'sound|net' '/drivers/pcmcia/'; then
- add_module 'sd_mod?'
- fi
-
- add_binary "/usr/lib/udev/pcmcia-socket-startup"
- add_binary "/usr/lib/udev/pcmcia-check-broken-cis"
- add_file "/usr/lib/udev/rules.d/60-pcmcia.rules"
- add_file "/etc/pcmcia/config.opts"
-}
-
-help() {
- cat <<HELPEOF
-This hook loads the necessary modules for a pcmcia root device. Detection will
-take place at runtime. To minimize the modules in the image, add the autodetect
-hook too.
-HELPEOF
-}
-
-# vim: set ft=sh ts=4 sw=4 et: