blob: 4441b6f147321e0df85b64ea576a0c0e42f3a507 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/migrationtools/migrationtools-45.ebuild,v 1.4 2004/10/15 19:35:02 pvdabeel Exp $
PN0=MigrationTools
S=${WORKDIR}/${PN0}-${PV}
DESCRIPTION="PADL migration tools (scripts) for openldap"
SRC_URI="http://www.padl.com/download/${PN0}-${PV}.tar.gz"
HOMEPAGE="http://www.padl.com/OSS/MigrationTools.html"
SLOT="0"
KEYWORDS="~x86 ~sparc ~amd64 hppa ppc"
LICENSE="as-is"
IUSE=""
DEPEND=""
RDEPEND="net-nds/openldap
dev-lang/perl"
src_install() {
dodoc README
dodir /usr/share/migrationtools
cp -a ${S}/migrate_* ${D}/usr/share/migrationtools
dodir /usr/share/migrationtools/ads
cp -a ${S}/ads/* ${D}/usr/share/migrationtools/ads
}
|