blob: 0486a48daf07e5f0a49c7791f4e6fc8a35166289 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/cli-crypt/cli-crypt-1.0.ebuild,v 1.2 2002/07/25 15:31:24 seemant Exp $
DESCRIPTION="Command-line interface to crypt(3)"
HOMEPAGE="http://freshmeat.net/projects/cli-crypt/"
SRC_URI="http://www.xjack.org/downloads/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="virtual/glibc"
src_compile() {
set ${CC:=gcc}
make CC="${CC}" CFLAGS="${CFLAGS} -lcrypt"
}
src_install() {
insinto /usr
dobin crypt
}
|