blob: f2fdc8f2f0dda7e1e14a4fd2feb7b5968745cca6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/mirdir/mirdir-2.1-r1.ebuild,v 1.3 2011/12/21 08:58:13 phajdan.jr Exp $
EAPI=3
DESCRIPTION="Mirdir allows to synchronize two directory trees in a fast way"
HOMEPAGE="http://sf.net/projects/mirdir"
SRC_URI="mirror://sourceforge/${PN}/${P}-Unix.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND=""
S="${WORKDIR}/${P}-UNIX"
src_prepare() {
# Disable stripping, bug 239939
sed -i -e 's:strip .*::' Makefile.in || die
}
src_install() {
dobin bin/mirdir || die
doman mirdir.1
dodoc AUTHORS
}
|