From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 40EC515808E for ; Thu, 28 Apr 2022 03:38:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A1E5CE08AD; Thu, 28 Apr 2022 03:38:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F1F3E08A0 for ; Thu, 28 Apr 2022 03:38:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7A15E3418C3 for ; Thu, 28 Apr 2022 03:38:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A154435 for ; Thu, 28 Apr 2022 03:38:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1651117086.d3e7ca77bc65f5233877f9e611a194b07c153bcd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/svgalib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/svgalib/svgalib-1.9.25-r8.ebuild X-VCS-Directories: media-libs/svgalib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: d3e7ca77bc65f5233877f9e611a194b07c153bcd X-VCS-Branch: master Date: Thu, 28 Apr 2022 03:38:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c28d99a9-1c9a-48ae-8aa5-516e8c33df68 X-Archives-Hash: 7bd69a30dafa4b90164fd4216fea7d51 commit: d3e7ca77bc65f5233877f9e611a194b07c153bcd Author: Sam James gentoo org> AuthorDate: Thu Apr 28 03:38:06 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 28 03:38:06 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e7ca77 media-libs/svgalib: use udev.eclass; call udev_reload Signed-off-by: Sam James gentoo.org> media-libs/svgalib/svgalib-1.9.25-r8.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/media-libs/svgalib/svgalib-1.9.25-r8.ebuild b/media-libs/svgalib/svgalib-1.9.25-r8.ebuild index 4199e5163324..437e486ad5aa 100644 --- a/media-libs/svgalib/svgalib-1.9.25-r8.ebuild +++ b/media-libs/svgalib/svgalib-1.9.25-r8.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit flag-o-matic linux-mod toolchain-funcs +inherit flag-o-matic linux-mod toolchain-funcs udev DESCRIPTION="A library for running svga graphics on the console" HOMEPAGE="http://www.svgalib.org/" @@ -89,8 +89,7 @@ src_install() { doins src/vga.h gl/vgagl.h src/mouse/vgamouse.h src/joystick/vgajoystick.h doins src/keyboard/vgakeyboard.h kernel/svgalib_helper/svgalib_helper.h - insinto /lib/udev/rules.d - newins "${FILESDIR}"/svgalib.udev.rules.d.2 30-svgalib.rules + udev_newrules "${FILESDIR}"/svgalib.udev.rules.d.2 30-svgalib.rules exeinto /usr/lib/svgalib/demos for x in "${S}"/demos/* ; do @@ -122,5 +121,7 @@ src_install() { } pkg_postinst() { + udev_reload + ! use build && use kernel-helper && linux-mod_pkg_postinst }