diff options
author | hasufell <julian.ospald@googlemail.com> | 2012-01-10 20:30:07 +0000 |
---|---|---|
committer | hasufell <julian.ospald@googlemail.com> | 2012-01-10 20:30:07 +0000 |
commit | 08fcbf82b1b80ade71ff5bd04d1143cd96ca463f (patch) | |
tree | 3f2b0e148658ab5554d8e70bb115805bdd73fcdf /www-misc/profile-sync-daemon/profile-sync-daemon-2.6.ebuild | |
parent | net-print/epson-inkjet-printer-escpr: New ebuild for bug 337953. Thanks to To... (diff) | |
download | sunrise-reviewed-08fcbf82b1b80ade71ff5bd04d1143cd96ca463f.tar.gz sunrise-reviewed-08fcbf82b1b80ade71ff5bd04d1143cd96ca463f.tar.bz2 sunrise-reviewed-08fcbf82b1b80ade71ff5bd04d1143cd96ca463f.zip |
www-misc/profile-sync-daemon: New Ebuild for bug 398431
svn path=/sunrise/; revision=12645
Diffstat (limited to 'www-misc/profile-sync-daemon/profile-sync-daemon-2.6.ebuild')
-rw-r--r-- | www-misc/profile-sync-daemon/profile-sync-daemon-2.6.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/www-misc/profile-sync-daemon/profile-sync-daemon-2.6.ebuild b/www-misc/profile-sync-daemon/profile-sync-daemon-2.6.ebuild new file mode 100644 index 000000000..f93d93b33 --- /dev/null +++ b/www-misc/profile-sync-daemon/profile-sync-daemon-2.6.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" + +inherit eutils + +MY_PN="psd" +DESCRIPTION="Symlinks and syncs browser profile dirs to RAM thus reducing HDD/SDD calls and speeding-up browsers" +HOMEPAGE="https://wiki.archlinux.org/index.php/Profile-sync-daemon" +SRC_URI="http://repo-ck.com/source/${PN}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-arch/xz-utils" +RDEPEND="net-misc/rsync" + +src_prepare() { + # fix manpage/readme for proper gentoo instructions + epatch "${FILESDIR}"/${MY_PN}-manreadme.patch + # fix script to work with our daemon + epatch "${FILESDIR}"/${MY_PN}-pid.patch +} + +src_install() { + # install script + dobin ${PN} + + # install conf + insinto /etc + doins ${MY_PN}.conf + + # install optional cronjob + insinto /usr/share/${PN} + doins "${FILESDIR}"/cronjob + + # install our daemon + newinitd "${FILESDIR}"/daemon ${MY_PN} + + # manpage, readme + dodoc README* + newman ${MY_PN}.manpage ${PN}.1 +} + +pkg_postinst() { + elog "For adding a cronjob use the file" + elog "/usr/share/${PN}/cronjob" +} |