diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-23 20:30:46 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-23 20:30:46 +0000 |
commit | 7992c33d1384f982d8715caa54796b6177970e28 (patch) | |
tree | 5c7760ff64188f3a6a556468dfab720d8724f067 /dev-libs/libtomcrypt | |
parent | added ~ppc to keywords (diff) | |
download | gentoo-2-7992c33d1384f982d8715caa54796b6177970e28.tar.gz gentoo-2-7992c33d1384f982d8715caa54796b6177970e28.tar.bz2 gentoo-2-7992c33d1384f982d8715caa54796b6177970e28.zip |
initial ebuild
Diffstat (limited to 'dev-libs/libtomcrypt')
-rw-r--r-- | dev-libs/libtomcrypt/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/files/digest-libtomcrypt-0.74 | 1 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/libtomcrypt-0.74.ebuild | 21 |
3 files changed, 30 insertions, 0 deletions
diff --git a/dev-libs/libtomcrypt/ChangeLog b/dev-libs/libtomcrypt/ChangeLog new file mode 100644 index 000000000000..d8a5808bd950 --- /dev/null +++ b/dev-libs/libtomcrypt/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-libs/libtomcrypt +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/ChangeLog,v 1.1 2002/11/23 20:30:46 vapier Exp $ + +*libtomcrypt-0.74 (23 Nov 2002) + + 23 Nov 2002; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.74 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.74 new file mode 100644 index 000000000000..3ee2e89bc3f6 --- /dev/null +++ b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.74 @@ -0,0 +1 @@ +MD5 76fd0c21ad468572b3d8a8c2485a83c5 crypt-0.74.tar.bz2 531110 diff --git a/dev-libs/libtomcrypt/libtomcrypt-0.74.ebuild b/dev-libs/libtomcrypt/libtomcrypt-0.74.ebuild new file mode 100644 index 000000000000..f8b20848a96e --- /dev/null +++ b/dev-libs/libtomcrypt/libtomcrypt-0.74.ebuild @@ -0,0 +1,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.74.ebuild,v 1.1 2002/11/23 20:30:46 vapier Exp $ + +DESCRIPTION="http://libtomcrypt.iahu.ca/" +HOMEPAGE="http://libtomcrypt.iahu.ca/" +SRC_URI="http://iahu.ca:8080/crypt-${PV}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="x86" + +src_compile() { + emake || die +} + +src_install() { + dodir /usr/include/${PN} + dodir /usr/lib + make LIBPATH=${D}/usr/lib INCPATH=${D}/usr/include/${PN} install +} |