Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/lsyncd/files/, app-admin/lsyncd/
Date: Sun, 25 Sep 2016 19:43:56
Message-Id: 1474832623.fc093b700face76248b696cf1558581455ad4777.jer@gentoo
1 commit: fc093b700face76248b696cf1558581455ad4777
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 25 19:33:15 2016 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 25 19:43:43 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc093b70
7
8 app-admin/lsyncd: Install man page in the right place.
9
10 Package-Manager: portage-2.3.1
11
12 app-admin/lsyncd/files/lsyncd-2.1.6-mandir.patch | 8 +++++++
13 app-admin/lsyncd/lsyncd-2.1.6-r1.ebuild | 29 ++++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/app-admin/lsyncd/files/lsyncd-2.1.6-mandir.patch b/app-admin/lsyncd/files/lsyncd-2.1.6-mandir.patch
17 new file mode 100644
18 index 00000000..c78df89
19 --- /dev/null
20 +++ b/app-admin/lsyncd/files/lsyncd-2.1.6-mandir.patch
21 @@ -0,0 +1,8 @@
22 +--- a/CMakeLists.txt
23 ++++ b/CMakeLists.txt
24 +@@ -92,4 +92,4 @@
25 + target_link_libraries( lsyncd ${LUA_LIBRARIES} )
26 +
27 + install( TARGETS lsyncd RUNTIME DESTINATION bin )
28 +-install( FILES doc/lsyncd.1 DESTINATION man)
29 ++install( FILES doc/lsyncd.1 DESTINATION share/man/man1)
30
31 diff --git a/app-admin/lsyncd/lsyncd-2.1.6-r1.ebuild b/app-admin/lsyncd/lsyncd-2.1.6-r1.ebuild
32 new file mode 100644
33 index 00000000..d8152bf
34 --- /dev/null
35 +++ b/app-admin/lsyncd/lsyncd-2.1.6-r1.ebuild
36 @@ -0,0 +1,29 @@
37 +# Copyright 1999-2016 Gentoo Foundation
38 +# Distributed under the terms of the GNU General Public License v2
39 +# $Id$
40 +
41 +EAPI=6
42 +
43 +CMAKE_IN_SOURCE_BUILD="YES_PLEASE_OMG"
44 +inherit cmake-utils
45 +
46 +DESCRIPTION="Live Syncing (Mirror) Daemon"
47 +HOMEPAGE="https://github.com/axkibe/lsyncd"
48 +SRC_URI="https://github.com/axkibe/lsyncd/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="GPL-2"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~arm-linux ~x86-linux"
53 +
54 +CDEPEND=">=dev-lang/lua-5.1[deprecated]"
55 +DEPEND="${CDEPEND}
56 + app-text/asciidoc
57 + virtual/pkgconfig"
58 +RDEPEND="${CDEPEND}
59 + net-misc/rsync"
60 +
61 +PATCHES=(
62 + "${FILESDIR}"/${P}-mandir.patch
63 +)
64 +
65 +S=${WORKDIR}/${PN}-release-${PV}