diff options
author | Ian Stakenvicius <axs@gentoo.org> | 2012-12-11 18:26:24 +0000 |
---|---|---|
committer | Ian Stakenvicius <axs@gentoo.org> | 2012-12-11 18:26:24 +0000 |
commit | f8ee4910ad46cd826a8c9b7e81d9061b25f8596d (patch) | |
tree | 2c6907ede03da9daa842a008a1fc9705f8bbd0bc /sys-fs/fuse-exfat | |
parent | Removed old (diff) | |
download | gentoo-2-f8ee4910ad46cd826a8c9b7e81d9061b25f8596d.tar.gz gentoo-2-f8ee4910ad46cd826a8c9b7e81d9061b25f8596d.tar.bz2 gentoo-2-f8ee4910ad46cd826a8c9b7e81d9061b25f8596d.zip |
install udev rules with udev.eclass, to support virtual/udev
(Portage version: 2.1.11.33/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)
Diffstat (limited to 'sys-fs/fuse-exfat')
-rw-r--r-- | sys-fs/fuse-exfat/ChangeLog | 5 | ||||
-rw-r--r-- | sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild | 9 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sys-fs/fuse-exfat/ChangeLog b/sys-fs/fuse-exfat/ChangeLog index 11f438eca3a2..a22a03793964 100644 --- a/sys-fs/fuse-exfat/ChangeLog +++ b/sys-fs/fuse-exfat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-fs/fuse-exfat # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/ChangeLog,v 1.5 2012/10/19 09:27:42 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/ChangeLog,v 1.6 2012/12/11 18:26:24 axs Exp $ + + 11 Dec 2012; Ian Stakenvicius <axs@gentoo.org> fuse-exfat-0.9.8-r1.ebuild: + install udev rules with udev.eclass, to support virtual/udev *fuse-exfat-0.9.8-r1 (19 Oct 2012) diff --git a/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild b/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild index 34f0376480fb..39d84322686f 100644 --- a/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild +++ b/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild,v 1.2 2012/10/19 09:30:05 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/fuse-exfat/fuse-exfat-0.9.8-r1.ebuild,v 1.3 2012/12/11 18:26:24 axs Exp $ EAPI=4 -inherit scons-utils toolchain-funcs +inherit scons-utils udev toolchain-funcs DESCRIPTION="exFAT filesystem FUSE module" HOMEPAGE="http://code.google.com/p/exfat/" @@ -30,8 +30,5 @@ src_install() { doman */*.8 dodoc ChangeLog - local udevdir=/lib/udev - has_version sys-fs/udev && udevdir="$($(tc-getPKG_CONFIG) --variable=udevdir udev)" - insinto "${udevdir}"/rules.d - doins "${FILESDIR}"/99-exfat.rules + udev_dorules "${FILESDIR}"/99-exfat.rules } |