1
0
forked from ports/opt

hotplug-perl: dropped port

This commit is contained in:
Jukka Heino 2005-11-23 20:48:08 +00:00
parent 924a80a998
commit 4497f8c0ca
4 changed files with 0 additions and 73 deletions

View File

@ -1,31 +0,0 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/hotplug-perl/
-rw-r--r-- root/root etc/hotplug-perl/Hotplug.pm
drwxr-xr-x root/root etc/hotplug-perl/Hotplug/
-rw-r--r-- root/root etc/hotplug-perl/Hotplug/IDE.pm
-rw-r--r-- root/root etc/hotplug-perl/Hotplug/IEEE1394.pm
-rw-r--r-- root/root etc/hotplug-perl/Hotplug/INPUT.pm
-rw-r--r-- root/root etc/hotplug-perl/Hotplug/ISAPNP.pm
-rw-r--r-- root/root etc/hotplug-perl/Hotplug/PCI.pm
-rw-r--r-- root/root etc/hotplug-perl/Hotplug/SCSI.pm
-rw-r--r-- root/root etc/hotplug-perl/Hotplug/USB.pm
-rw-r--r-- root/root etc/hotplug-perl/blacklist
drwxr-xr-x root/root etc/hotplug-perl/blacklist.d/
-rwxr-xr-x root/root etc/hotplug-perl/list-detected-modules
-rwxr-xr-x root/root etc/hotplug-perl/start-hotplug
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/hotplug-perl
drwxr-xr-x root/root sbin/
-rwxr-xr-x root/root sbin/hotplug-perl
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man3/
-rw-r--r-- root/root usr/man/man3/Hotplug.3.gz
-rw-r--r-- root/root usr/man/man3/Hotplug::IDE.3.gz
-rw-r--r-- root/root usr/man/man3/Hotplug::IEEE1394.3.gz
-rw-r--r-- root/root usr/man/man3/Hotplug::INPUT.3.gz
-rw-r--r-- root/root usr/man/man3/Hotplug::ISAPNP.3.gz
-rw-r--r-- root/root usr/man/man3/Hotplug::PCI.3.gz
-rw-r--r-- root/root usr/man/man3/Hotplug::SCSI.3.gz
-rw-r--r-- root/root usr/man/man3/Hotplug::USB.3.gz

View File

@ -1,2 +0,0 @@
6570f77fd0f388c6ba4188dceef4e3de hotplug-perl.rc
1a2baa432f3a1532ee6b56002c882897 hotplug-perl_1.1-1.tar.gz

View File

@ -1,20 +0,0 @@
# Description: Perl hotplug implementation with a focus on boot speed
# URL: http://opensource.idealcorp.com/hotplug-perl/
# Maintainer: Jukka Heino, jukka at karsikkopuu dot net
# Packager: Jukka Heino, jukka at karsikkopuu dot net
# Depends on:
name=hotplug-perl
version=1.1
release=1
source=(http://opensource.idealcorp.com/debian/${name}_$version-1.tar.gz \
$name.rc)
build() {
cd $name-$version
mkdir -p $PKG/{sbin,usr/man/man3}
find -type f | xargs -i sed -i s:share/man:man:g {}
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
install -D -m 0755 $SRC/$name.rc $PKG/etc/rc.d/$name
}

View File

@ -1,20 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/hotplug-perl: start/stop hotplug-perl
#
case $1 in
start)
/etc/hotplug-perl/start-hotplug
echo /sbin/hotplug-perl > /proc/sys/kernel/hotplug
;;
stop)
;;
restart)
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file