diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2018-04-21 17:35:58 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2018-04-21 17:39:02 +0300 |
commit | 169215c01481634acc6d4d8757ca46b5386851ee (patch) | |
tree | 7fc0a0f09a5f1dc5e4da15713c31b8184eb2358a /sys-freebsd | |
parent | mp3gain was fixed (diff) | |
download | gentoo-169215c01481634acc6d4d8757ca46b5386851ee.tar.gz gentoo-169215c01481634acc6d4d8757ca46b5386851ee.tar.bz2 gentoo-169215c01481634acc6d4d8757ca46b5386851ee.zip |
sys-freebsd/virtio-kmod: remove last rited package
Closes: https://bugs.gentoo.org/586344
Closes: https://bugs.gentoo.org/612848
Closes: https://bugs.gentoo.org/494002
Diffstat (limited to 'sys-freebsd')
-rw-r--r-- | sys-freebsd/virtio-kmod/Manifest | 1 | ||||
-rw-r--r-- | sys-freebsd/virtio-kmod/files/pkg-message | 22 | ||||
-rw-r--r-- | sys-freebsd/virtio-kmod/metadata.xml | 4 | ||||
-rw-r--r-- | sys-freebsd/virtio-kmod/virtio-kmod-0.228301-r1.ebuild | 70 |
4 files changed, 0 insertions, 97 deletions
diff --git a/sys-freebsd/virtio-kmod/Manifest b/sys-freebsd/virtio-kmod/Manifest deleted file mode 100644 index cbda8da0388e..000000000000 --- a/sys-freebsd/virtio-kmod/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST virtio-0.228301.tar.gz 47262 BLAKE2B 251c8c2612384999c33e2c3ca509ff782b25c05b058e41048bc473517ce29cea3396784ca091d7e2d07e1c04221c1fa7979348d9b437b8dfd93e7b4b2732cff6 SHA512 675b2fbb13be4e77597c8221a10aa8a87f53f642882cd7534f76f9928452bcd0f914acbbe70a43d1550caa148b8944e6587481d2a599bcccaf3a4486dc69016e diff --git a/sys-freebsd/virtio-kmod/files/pkg-message b/sys-freebsd/virtio-kmod/files/pkg-message deleted file mode 100644 index 6b628d3de91a..000000000000 --- a/sys-freebsd/virtio-kmod/files/pkg-message +++ /dev/null @@ -1,22 +0,0 @@ -To use these modules, add loading lines in /boot/loader.conf: - -virtio_load="YES" -virtio_pci_load="YES" -virtio_blk_load="YES" -if_vtnet_load="YES" -virtio_balloon_load="YES" - -Also, edit fstab and make openrc start vtnet0 instead of em0: - -# sed -i.bak -Ee 's|/dev/ada?|/dev/vtbd|' /etc/fstab -# mv /etc/init.d/em0 /etc/init.d/vtnet0 - -and enable virtio devices in host's domain.xml: - -- <target dev='hda' bus='ide'/> -+ <target dev='vda' bus='virtio'/> -... -- <model type='e1000'/> -- <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> -+ <model type='virtio'/> -+ <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/> diff --git a/sys-freebsd/virtio-kmod/metadata.xml b/sys-freebsd/virtio-kmod/metadata.xml deleted file mode 100644 index 097975e3adc2..000000000000 --- a/sys-freebsd/virtio-kmod/metadata.xml +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -</pkgmetadata> diff --git a/sys-freebsd/virtio-kmod/virtio-kmod-0.228301-r1.ebuild b/sys-freebsd/virtio-kmod/virtio-kmod-0.228301-r1.ebuild deleted file mode 100644 index 841048382ed4..000000000000 --- a/sys-freebsd/virtio-kmod/virtio-kmod-0.228301-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit bsdmk flag-o-matic - -DESCRIPTION="Virtio drivers from FreeBSD Ports' emulators/virtio-kmod" -HOMEPAGE="http://www.freshports.org/emulators/virtio-kmod/" -SRC_URI="mirror://freebsd/ports/local-distfiles/kuriyama/virtio-${PV}.tar.gz" - -SLOT="0" -KEYWORDS="~x86-fbsd ~amd64-fbsd" -IUSE="custom-cflags +debug" -LICENSE="BSD-2" - -DEPEND=">=sys-freebsd/freebsd-sources-8.2 - app-arch/cpio" -RDEPEND="" - -QA_TEXTRELS="*" -RESTRICT="strip" -S="${WORKDIR}" - -NEEDSUBDIRS="conf contrib dev/pci geom kern net netinet netinet6 sys tools vm - x86 i386 amd64" - -src_unpack() { - default - CPIO_ARGS="-dump" - - # When hardlinks are possible, use them to avoid copies when FEATURES=userpriv - test $UID != 0 && export CPIO_ARGS+=l - - cd /usr/src/sys/ - for d in $NEEDSUBDIRS; do - find $d ! -name @ | cpio --quiet "${CPIO_ARGS}" "${WORKDIR}" - done - -} - -src_compile() { - - use debug && export DEBUG_FLAGS="-g" - use custom-cflags || strip-flags - append-cflags "-I${WORKDIR}" - - cd "${WORKDIR}/modules/virtio" - mkmake SYSDIR="${WORKDIR}" LDFLAGS="$(raw-ldflags)" || die "mkmake failed" - -} - -src_install() { - # Upstream does not provide an install target - dodir /boot/modules - cp "${WORKDIR}"/modules/virtio/*/*.ko{,.symbols} "${ED}/boot/modules" -} - -pkg_postinst() { - # Update linker.hints file - /usr/sbin/kldxref "${EPREFIX}/boot/modules" - - # Print message from FreeBSD Ports - elog "$(cat "${FILESDIR}/pkg-message")" -} - -pkg_postrm() { - # Update linker.hints file - /usr/sbin/kldxref "${EPREFIX}/boot/modules" -} |