diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2022-07-08 13:17:00 +0200 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2022-07-08 13:18:03 +0200 |
commit | 46a7b2acad0b8650e9a285cce9795c4f24720230 (patch) | |
tree | 6ae0149a903e82cd57628478712255be4cdf50eb /media-gfx/argyllcms | |
parent | media-sound/picard: fixed discid dep (diff) | |
download | gentoo-46a7b2acad0b8650e9a285cce9795c4f24720230.tar.gz gentoo-46a7b2acad0b8650e9a285cce9795c4f24720230.tar.bz2 gentoo-46a7b2acad0b8650e9a285cce9795c4f24720230.zip |
media-gfx/argyllcms: complete fix for udev_reload
This also modifies AR variable as this package require ar binary and
options in that variable
Closes: https://bugs.gentoo.org/739988
Closes: https://bugs.gentoo.org/856994
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'media-gfx/argyllcms')
-rw-r--r-- | media-gfx/argyllcms/argyllcms-2.3.1.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/media-gfx/argyllcms/argyllcms-2.3.1.ebuild b/media-gfx/argyllcms/argyllcms-2.3.1.ebuild index 5347599202e0..b500de7c28eb 100644 --- a/media-gfx/argyllcms/argyllcms-2.3.1.ebuild +++ b/media-gfx/argyllcms/argyllcms-2.3.1.ebuild @@ -48,10 +48,10 @@ src_compile() { sed \ -e 's:CCFLAGS:CFLAGS:g' \ - -e "s:ar rusc:$(tc-getAR) rusc:g" \ -i Jambase || die tc-export CC RANLIB + export AR="$(tc-getAR) ruscU" jam -dx -fJambase "-j$(makeopts_jobs)" || die } @@ -91,3 +91,7 @@ pkg_postinst() { elog "http://www.argyllcms.com/doc/Installing_Linux.html" echo } + +pkg_postrm() { + udev_reload +} |