diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-09-06 22:56:57 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-09-06 23:22:36 +0200 |
commit | 8d2b5b2a2cd05561ad4bc5a9026a2897b20a5918 (patch) | |
tree | 0938ba25d2710dc14afc6497ea5198003a6f4767 /sys-apps/uam | |
parent | sys-apps/uam: Copy stable keywords to the EAPI bump (diff) | |
download | gentoo-8d2b5b2a2cd05561ad4bc5a9026a2897b20a5918.tar.gz gentoo-8d2b5b2a2cd05561ad4bc5a9026a2897b20a5918.tar.bz2 gentoo-8d2b5b2a2cd05561ad4bc5a9026a2897b20a5918.zip |
sys-apps/uam: Clean old up
Diffstat (limited to 'sys-apps/uam')
-rw-r--r-- | sys-apps/uam/uam-0.3.2.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/sys-apps/uam/uam-0.3.2.ebuild b/sys-apps/uam/uam-0.3.2.ebuild deleted file mode 100644 index e0bf0ed9eeff..000000000000 --- a/sys-apps/uam/uam-0.3.2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools-utils udev user - -DESCRIPTION="Simple udev-based automounter for removable USB media" -HOMEPAGE="https://github.com/mgorny/uam/" -SRC_URI="https://github.com/mgorny/uam/releases/download/${P}/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="virtual/udev" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_postinst() { - # The plugdev group is created by pam, pmount and many other ebuilds - # in gx86. As we don't want to depend on any of them (even pmount is - # optional), we create it ourself too. - enewgroup plugdev - - elog "To be able to access uam-mounted filesystems, you have to be" - elog "a member of the 'plugdev' group." - elog - elog "Note that uam doesn't provide any way to allow unprivileged user" - elog "to manually umount devices. The upstream suggested solution" - elog "is to use [sys-apps/pmount]. If you don't feel like installing" - elog "additional tools, remember to sync before removing your USB stick." - elog - elog "If you'd like uam to mount ejectable media like CDs/DVDs, you need" - elog "to enable in-kernel media polling, e.g.:" - elog " echo 5000 > /sys/module/block/parameters/events_dfl_poll_msecs" - elog "where 5000 would mean a poll will occur every 5 seconds." - elog - elog "If you'd like to receive libnotify-based notifications, you need" - elog "to install the [x11-misc/sw-notify-send] tool." - - udev_reload -} |