diff options
Diffstat (limited to 'app-misc/pcmanfm/pcmanfm-0.2.4.ebuild')
-rw-r--r-- | app-misc/pcmanfm/pcmanfm-0.2.4.ebuild | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/app-misc/pcmanfm/pcmanfm-0.2.4.ebuild b/app-misc/pcmanfm/pcmanfm-0.2.4.ebuild index 8769141a8..6cdf4b580 100644 --- a/app-misc/pcmanfm/pcmanfm-0.2.4.ebuild +++ b/app-misc/pcmanfm/pcmanfm-0.2.4.ebuild @@ -27,13 +27,15 @@ src_install() { } pkg_postinst() { - einfo "If you are using fam as your file alteration monitor, you must" - einfo "have famd started before running pcmanfm." - einfo - einfo "To add famd to the default runlevel:" - einfo "# rc-update add famd default" - einfo "To start the famd daemon now:" - einfo "# /etc/init.d/famd start" - einfo - einfo "It is recommended you use gamin instead of fam." + if has_version app-admin/fam ; then + einfo "You are using fam as your file alteration monitor," + einfo "so you must have famd started before running pcmanfm." + einfo + einfo "To add famd to the default runlevel and start it, run:" + einfo + einfo "# rc-update add famd default" + einfo "# /etc/init.d/famd start" + einfo + einfo "It is recommended you use gamin instead of fam." + fi } |