diff options
author | Tilman Klar <phoenix@gentoo.org> | 2002-08-11 13:22:59 +0000 |
---|---|---|
committer | Tilman Klar <phoenix@gentoo.org> | 2002-08-11 13:22:59 +0000 |
commit | 9cdb75ae47e081007777b87b018248cb12734e4c (patch) | |
tree | 60f970cd72caa53afb09c8178015c76225e94fcb /sys-apps | |
parent | new masked version of koffice (diff) | |
download | gentoo-2-9cdb75ae47e081007777b87b018248cb12734e4c.tar.gz gentoo-2-9cdb75ae47e081007777b87b018248cb12734e4c.tar.bz2 gentoo-2-9cdb75ae47e081007777b87b018248cb12734e4c.zip |
Fixed bug 6183
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/hotplug/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/hotplug/hotplug-20020401.ebuild | 21 |
2 files changed, 14 insertions, 12 deletions
diff --git a/sys-apps/hotplug/ChangeLog b/sys-apps/hotplug/ChangeLog index 408aaab17d51..72719aadd45e 100644 --- a/sys-apps/hotplug/ChangeLog +++ b/sys-apps/hotplug/ChangeLog @@ -1,10 +1,11 @@ # ChangeLog for sys-apps/hotplug # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hotplug/ChangeLog,v 1.4 2002/07/21 19:40:26 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hotplug/ChangeLog,v 1.5 2002/08/11 13:22:59 phoenix Exp $ *hotplug-200200401 (5 May 2002) - 11 May 2002; Wout Mertens <wmertens@gentoo.org> hotplug-20020401.ebuild : + 11 Aug 2002; phoen][x <phoenix@gentoo.org> hotplug-20020401.ebuild : + Fixed bug 6183. 21 Jul 2002; Mark Guertin <gerk@gentoo.org>: updated keywords (ppc) diff --git a/sys-apps/hotplug/hotplug-20020401.ebuild b/sys-apps/hotplug/hotplug-20020401.ebuild index 3e4fc4ce3ed3..b5210e7f92d6 100644 --- a/sys-apps/hotplug/hotplug-20020401.ebuild +++ b/sys-apps/hotplug/hotplug-20020401.ebuild @@ -1,13 +1,12 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hotplug/hotplug-20020401.ebuild,v 1.3 2002/07/14 19:20:18 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hotplug/hotplug-20020401.ebuild,v 1.4 2002/08/11 13:22:59 phoenix Exp $ # source maintainers named it hotplug-YYYY_MM_DD instead of hotplug-YYYYMMDD -OLDP="$P" -P=`echo $P|sed 's/-\(....\)\(..\)\(..\)/-\1_\2_\3/'` -S=${WORKDIR}/${P} +MY_P=`echo ${P}|sed 's/-\(....\)\(..\)\(..\)/-\1_\2_\3/'` +S=${WORKDIR}/${MY_P} DESCRIPTION="USB and PCI hotplug scripts" -SRC_URI="http://unc.dl.sourceforge.net/sourceforge/linux-hotplug/${P}.tar.gz" +SRC_URI="http://unc.dl.sourceforge.net/sourceforge/linux-hotplug/${MY_P}.tar.gz" HOMEPAGE="http://linux-hotplug.sourceforge.net" KEYWORDS="x86" SLOT="0" @@ -22,8 +21,8 @@ src_unpack () { unpack ${A} cd ${S}/etc/hotplug - patch -p0 < ${FILESDIR}/${OLDP}-pci.rc-gentoo.diff - patch -p0 < ${FILESDIR}/${OLDP}-usb.rc-gentoo.diff + patch -p0 < ${FILESDIR}/${P}-pci.rc-gentoo.diff + patch -p0 < ${FILESDIR}/${P}-usb.rc-gentoo.diff } src_install () { @@ -34,7 +33,7 @@ src_install () { cd ${S}/etc/hotplug insinto /etc/hotplug - doins * + doins blacklist hotplug.functions usb.distmap usb.handmap usb.usermap exeinto /etc/hotplug doexe *.agent *.rc dodir /etc/hotplug/usb /etc/hotplug/pci @@ -44,7 +43,9 @@ src_install () { insinto /etc/conf.d newins ${FILESDIR}/usb.conf usb +} - echo WARNING: The fxload program was spliced off this package. - echo WARNING: emerge fxload if you need it. +pkg_postinst () { + einfo WARNING: The fxload program was spliced off this package. + einfo WARNING: emerge fxload if you need it. } |