blob: 6fcd7aa7dc818cd74fbc56f2de239811315ab7bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/migrationtools/migrationtools-44-r1.ebuild,v 1.6 2003/12/12 21:08:22 weeve Exp $
PN0=MigrationTools
S=${WORKDIR}/${PN0}-${PV}
DESCRIPTION="PADL migration tools (scripts) for openldap"
SRC_URI="ftp://ftp.padl.com/pub/${PN0}-${PV}.tar.gz"
HOMEPAGE="http://www.padl.com/OSS/MigrationTools.html"
SLOT="0"
KEYWORDS="x86 sparc"
LICENSE="as-is"
DEPEND=""
RDEPEND="net-nds/openldap"
src_install() {
dodoc README
dodir /usr/share/migrationtools
cp -a ${S}/migrate_* ${D}/usr/share/migrationtools
}
|