diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2011-11-14 21:23:35 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2011-11-14 21:23:35 +0000 |
commit | 2d4217d65d12de24d547d3d5809058e00c2b8377 (patch) | |
tree | b102dda7f0fb63ca83650de66fdb5b852154393b /app-admin/lsyncd | |
parent | Fix use flag descriptions. Replace gs with ps use flag. Allow neither fam and... (diff) | |
download | gentoo-2-2d4217d65d12de24d547d3d5809058e00c2b8377.tar.gz gentoo-2-2d4217d65d12de24d547d3d5809058e00c2b8377.tar.bz2 gentoo-2-2d4217d65d12de24d547d3d5809058e00c2b8377.zip |
Version bump, upstream fixes and enhancements
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'app-admin/lsyncd')
-rw-r--r-- | app-admin/lsyncd/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/lsyncd/lsyncd-2.0.5.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/app-admin/lsyncd/ChangeLog b/app-admin/lsyncd/ChangeLog index 56c3e0adcca8..d21b00cf5ea7 100644 --- a/app-admin/lsyncd/ChangeLog +++ b/app-admin/lsyncd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/lsyncd # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/lsyncd/ChangeLog,v 1.17 2011/07/26 15:41:16 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/lsyncd/ChangeLog,v 1.18 2011/11/14 21:23:35 darkside Exp $ + +*lsyncd-2.0.5 (14 Nov 2011) + + 14 Nov 2011; Jeremy Olexa <darkside@gentoo.org> +lsyncd-2.0.5.ebuild: + Version bump, upstream fixes and enhancements *lsyncd-2.0.4-r1 (26 Jul 2011) diff --git a/app-admin/lsyncd/lsyncd-2.0.5.ebuild b/app-admin/lsyncd/lsyncd-2.0.5.ebuild new file mode 100644 index 000000000000..a1e4e21eca7c --- /dev/null +++ b/app-admin/lsyncd/lsyncd-2.0.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/lsyncd/lsyncd-2.0.5.ebuild,v 1.1 2011/11/14 21:23:35 darkside Exp $ + +EAPI=4 + +inherit multilib + +DESCRIPTION="Live Syncing (Mirror) Daemon" +HOMEPAGE="http://code.google.com/p/lsyncd/" +SRC_URI="http://lsyncd.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="dev-lang/lua" +RDEPEND="${DEPEND} + net-misc/rsync" + +src_configure() { + econf \ + --with-runner="${EPREFIX}/usr/$(get_libdir)/${PN}" \ + --docdir="${EPREFIX}"/usr/share/doc/${P} +} |