blob: 97e1fddc8c1df6b6bf4385708540b68ffda0ad63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/libtomcrypt-0.81.ebuild,v 1.1 2003/01/22 14:50:44 vapier Exp $
DESCRIPTION="http://libtomcrypt.iahu.ca/"
HOMEPAGE="http://libtomcrypt.iahu.ca/"
SRC_URI="http://iahu.ca:8080/download/crypt-${PV}.tar.bz2"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="x86"
DEPEND="app-text/tetex"
src_compile() {
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|