diff options
author | Julian Ospald <hasufell@gentoo.org> | 2012-11-28 17:48:43 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2012-11-28 17:48:43 +0000 |
commit | 93a071ef424bd513f452bc8c0220f9d90e9e7bc5 (patch) | |
tree | c6e6e9126270c859f407ebb36d7ba36af706474d /www-misc/profile-sync-daemon | |
parent | Fix the difference between snapshot and release builds in the version string.... (diff) | |
download | gentoo-2-93a071ef424bd513f452bc8c0220f9d90e9e7bc5.tar.gz gentoo-2-93a071ef424bd513f452bc8c0220f9d90e9e7bc5.tar.bz2 gentoo-2-93a071ef424bd513f452bc8c0220f9d90e9e7bc5.zip |
version bump
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'www-misc/profile-sync-daemon')
-rw-r--r-- | www-misc/profile-sync-daemon/ChangeLog | 8 | ||||
-rw-r--r-- | www-misc/profile-sync-daemon/profile-sync-daemon-5.04.ebuild | 38 |
2 files changed, 45 insertions, 1 deletions
diff --git a/www-misc/profile-sync-daemon/ChangeLog b/www-misc/profile-sync-daemon/ChangeLog index f13d07754045..1f46a8529c85 100644 --- a/www-misc/profile-sync-daemon/ChangeLog +++ b/www-misc/profile-sync-daemon/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-misc/profile-sync-daemon # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog,v 1.5 2012/10/29 18:53:30 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/ChangeLog,v 1.6 2012/11/28 17:48:43 hasufell Exp $ + +*profile-sync-daemon-5.04 (28 Nov 2012) + + 28 Nov 2012; Julian Ospald <hasufell@gentoo.org> + +profile-sync-daemon-5.04.ebuild: + version bump *profile-sync-daemon-4.02 (29 Oct 2012) diff --git a/www-misc/profile-sync-daemon/profile-sync-daemon-5.04.ebuild b/www-misc/profile-sync-daemon/profile-sync-daemon-5.04.ebuild new file mode 100644 index 000000000000..a28b71552728 --- /dev/null +++ b/www-misc/profile-sync-daemon/profile-sync-daemon-5.04.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-misc/profile-sync-daemon/profile-sync-daemon-5.04.ebuild,v 1.1 2012/11/28 17:48:43 hasufell Exp $ + +EAPI=4 + +inherit eutils vcs-snapshot + +DESCRIPTION="Symlinks and syncs browser profile dirs to RAM" +HOMEPAGE="https://wiki.archlinux.org/index.php/Profile-sync-daemon" +SRC_URI="https://github.com/hasufell/${PN}/tarball/v${PV} -> ${P}.tar.gz" + +LICENSE="GPL-2 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="cron" + +RDEPEND=" + app-shells/bash + net-misc/rsync + cron? ( virtual/cron )" + +src_install() { + emake DESTDIR="${D}" $(usex cron "install" "install-bin install-doc install-man") +} + +pkg_postinst() { + eerror "IMPORTANT NOTICE!" + elog "Usage of the \"mozilla\" variable in the BROWSERS array is" + elog "deprecated starting with profile-sync-daemon v4.02." + elog "It has been replaced with the \"firefox\" variable." + elog + elog "In order to safely upgrade, you must run an unsync to" + elog "rotate your firefox profile back to disk using verion 3.x" + elog + elog "As usual, watch for any changes in the newly provided" + elog "/etc/conf.d/psd as well and be sure to incorporate them." +} |