blob: 95d3788df97e2f654b5130947b451436e29f5428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.8 2002/05/30 01:54:49 sandymac Exp
DESCRIPTION="Random password generator"
LICENSE="GPL2"
DEPEND=""
RDEPEND="perl"
SRC_URI="http://ftp.debian.org/debian/dists/stable/main/source/admin/makepasswd_${PV}.orig.tar.gz"
src_install () {
into /usr
dobin makepasswd
doman makepasswd.1
dodoc README CHANGES COPYING-2.0
}
|