diff options
author | charIes17 <charles17@arcor.de> | 2017-08-15 14:01:31 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-10-05 23:10:49 +0200 |
commit | b4ab30f8709ec719d676eacaf936d4fac55b4d84 (patch) | |
tree | 94fb22eb306c6f89a774f558b62e7ed75cef6041 /app-backup | |
parent | app-text/referencer: fix bug 601174. (diff) | |
download | gentoo-b4ab30f8709ec719d676eacaf936d4fac55b4d84.tar.gz gentoo-b4ab30f8709ec719d676eacaf936d4fac55b4d84.tar.bz2 gentoo-b4ab30f8709ec719d676eacaf936d4fac55b4d84.zip |
app-backup/mirdir: bump to EAPI version 6.
Closes: https://bugs.gentoo.org/621514
Closes: https://github.com/gentoo/gentoo/pull/5428
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/mirdir/mirdir-2.1-r2.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-backup/mirdir/mirdir-2.1-r2.ebuild b/app-backup/mirdir/mirdir-2.1-r2.ebuild new file mode 100644 index 000000000000..97c44d1b6321 --- /dev/null +++ b/app-backup/mirdir/mirdir-2.1-r2.ebuild @@ -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 +} |