diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-12-03 02:18:44 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-12-03 02:18:44 +0000 |
commit | 12adb495d22e832d6940328e69b29544ff6e2ade (patch) | |
tree | 10f325e95c04fcf013e6e769e07e0f022f7cc944 /sys-fs/vhba | |
parent | Use virtual/udev instead of sys-fs/udev wrt #444398 (diff) | |
download | gentoo-2-12adb495d22e832d6940328e69b29544ff6e2ade.tar.gz gentoo-2-12adb495d22e832d6940328e69b29544ff6e2ade.tar.bz2 gentoo-2-12adb495d22e832d6940328e69b29544ff6e2ade.zip |
old
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'sys-fs/vhba')
-rw-r--r-- | sys-fs/vhba/ChangeLog | 5 | ||||
-rw-r--r-- | sys-fs/vhba/vhba-20120422.ebuild | 85 |
2 files changed, 4 insertions, 86 deletions
diff --git a/sys-fs/vhba/ChangeLog b/sys-fs/vhba/ChangeLog index 5d8f630778a7..691f92e405a5 100644 --- a/sys-fs/vhba/ChangeLog +++ b/sys-fs/vhba/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-fs/vhba # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.41 2012/11/21 10:12:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/ChangeLog,v 1.42 2012/12/03 02:18:44 ssuominen Exp $ + + 03 Dec 2012; Samuli Suominen <ssuominen@gentoo.org> -vhba-20120422.ebuild: + old 21 Nov 2012; Agostino Sarubbo <ago@gentoo.org> vhba-20120422-r1.ebuild: Stable for x86, wrt bug #441534 diff --git a/sys-fs/vhba/vhba-20120422.ebuild b/sys-fs/vhba/vhba-20120422.ebuild deleted file mode 100644 index 8b6e20d29992..000000000000 --- a/sys-fs/vhba/vhba-20120422.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/vhba/vhba-20120422.ebuild,v 1.4 2012/08/11 07:50:49 mgorny Exp $ - -EAPI="4" - -inherit linux-mod user - -MY_P=vhba-module-${PV} -DESCRIPTION="Virtual (SCSI) Host Bus Adapter kernel module for the CDEmu suite" -HOMEPAGE="http://cdemu.org" -SRC_URI="mirror://sourceforge/cdemu/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~x86" -IUSE="" - -RDEPEND=">=sys-fs/udev-125" -DEPEND="" - -S=${WORKDIR}/${MY_P} -MODULE_NAMES="vhba(block:${S})" -BUILD_TARGETS=all - -pkg_setup() { - CONFIG_CHECK="~BLK_DEV_SR ~CHR_DEV_SG" - check_extra_config - BUILD_PARAMS="KDIR=${KV_DIR}" - linux-mod_pkg_setup - - enewgroup cdemu -} - -src_prepare() { - # Avoid "make jobserver unavailable" warning and -Werror problems - sed -e 's:\t$(KMAKE):\t+$(KMAKE):g' \ - -e '/EXTRA_CFLAGS/s/-Werror$/-Wall/' \ - -i Makefile || die "sed failed" -} - -src_install() { - dodoc AUTHORS ChangeLog README - linux-mod_src_install - - einfo "Generating udev rules ..." - dodir /lib/udev/rules.d/ - cat > "${D}"/lib/udev/rules.d/70-vhba.rules <<-EOF || die - # do not edit this file, it will be overwritten on update - # - KERNEL=="vhba_ctl", MODE="0660", OWNER="root", GROUP="cdemu" - EOF -} - -pkg_postinst() { - elog "Don't forget to add your user to the cdemu group if you want to" - elog "be able to use virtual cdemu devices." - - # Older versions of vhba installed their rule file in /etc/udev/rules.d, - # which overrides rules in /lib/udev/rules.d. We remove the old file - # automatically if it is identical to the default one installed by - # vhba-1.2.1 or 20101015-r1. Note that the comment at the top of the rules - # file states that it can be automatically overwritten by the system. - old_rules="${ROOT}etc/udev/rules.d/70-vhba.rules" - if [[ -f "${old_rules}" ]]; then - case "$(md5sum ${old_rules})" in - 2959b3cf61cfe6e466cc3516a7bc19de* | 1e7a7e5d6d28c811eeec98ec26ed5d28* ) - elog - elog "Removing old ${old_rules} ..." - rm -f "${old_rules}" || - eerror "Failed, please remove ${old_rules} manually." - ;; - * ) - ewarn - ewarn "The ${old_rules} file from a previous" - ewarn "installation of ${PN} is overriding ${P}'s" - ewarn "udev rules. Unless you had deliberately customized it," - ewarn "you should remove it." - ewarn - ;; - esac - fi - - linux-mod_pkg_postinst -} |