app-backup/mirdir: bump to EAPI version 6.
authorcharIes17 <charles17@arcor.de>
Tue, 15 Aug 2017 12:01:31 +0000 (14:01 +0200)
committerPatrice Clement <monsieurp@gentoo.org>
Thu, 5 Oct 2017 21:10:49 +0000 (23:10 +0200)
Closes: https://bugs.gentoo.org/621514
Closes: https://github.com/gentoo/gentoo/pull/5428
Package-Manager: Portage-2.3.6, Repoman-2.3.3

app-backup/mirdir/mirdir-2.1-r2.ebuild [new file with mode: 0644]

diff --git a/app-backup/mirdir/mirdir-2.1-r2.ebuild b/app-backup/mirdir/mirdir-2.1-r2.ebuild
new file mode 100644 (file)
index 0000000..97c44d1
--- /dev/null
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Synchronize two directory trees in a fast way"
+HOMEPAGE="https://sourceforge.net/projects/mirdir/"
+SRC_URI="mirror://sourceforge/${PN}/${P}-Unix.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${P}-UNIX"
+
+src_prepare() {
+       default
+       # Disable stripping, bug 239939
+       sed -i -e 's:strip .*::' Makefile.in || die
+}
+
+src_install() {
+       dobin "bin/${PN}"
+       doman "${PN}.1"
+       einstalldocs
+}