summaryrefslogtreecommitdiff
blob: c3f8b824ae975d07be8bdec93577cc499ce3589e (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/aes-crypt/aes-crypt-1.0.7.ebuild,v 1.3 2003/08/15 06:58:39 seemant Exp $

At="${PN/-crypt/}-${PV}"
DESCRIPTION="Command line program ('aes') to encrypt and decrypt data using the Rijndael algorythm"
HOMEPAGE="http://my.cubic.ch/users/timtas/aes/"
SRC_URI="http://my.cubic.ch/users/timtas/aes/${At}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="x86 ppc sparc alpha"
IUSE=""
DEPEND="virtual/glibc"

src_unpack() {
	unpack ${At}.tar.gz
}

src_compile() {
	cd ${WORKDIR}/${At}
	sed -e "s:CFLAGS=-g -Wall:CFLAGS=-g -Wall ${CFLAGS}:" Makefile.linux > Makefile
	make || die
}

src_install() {
	cd ${WORKDIR}/${At}
	dobin aes
	dodoc CHANGES INSTALL LICENSE README TODO
}