summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-12-17 18:37:08 +0000
committerMike Frysinger <vapier@gentoo.org>2002-12-17 18:37:08 +0000
commite0425dd4779f81d5689f64400b51a36d3c0a046f (patch)
tree5c027ac43404d80b0e90be412783afe94dd102fd /dev-libs/libtomcrypt
parentminor bork will be back (diff)
downloadgentoo-2-e0425dd4779f81d5689f64400b51a36d3c0a046f.tar.gz
gentoo-2-e0425dd4779f81d5689f64400b51a36d3c0a046f.tar.bz2
gentoo-2-e0425dd4779f81d5689f64400b51a36d3c0a046f.zip
update
Diffstat (limited to 'dev-libs/libtomcrypt')
-rw-r--r--dev-libs/libtomcrypt/ChangeLog7
-rw-r--r--dev-libs/libtomcrypt/files/digest-libtomcrypt-0.741
-rw-r--r--dev-libs/libtomcrypt/files/digest-libtomcrypt-0.781
-rw-r--r--dev-libs/libtomcrypt/files/digest-libtomcrypt-0.801
-rw-r--r--dev-libs/libtomcrypt/files/makefile-path.patch31
-rw-r--r--dev-libs/libtomcrypt/libtomcrypt-0.78.ebuild21
-rw-r--r--dev-libs/libtomcrypt/libtomcrypt-0.80.ebuild (renamed from dev-libs/libtomcrypt/libtomcrypt-0.74.ebuild)9
7 files changed, 43 insertions, 28 deletions
diff --git a/dev-libs/libtomcrypt/ChangeLog b/dev-libs/libtomcrypt/ChangeLog
index d1cdaec0cbf9..c895f7aacd27 100644
--- a/dev-libs/libtomcrypt/ChangeLog
+++ b/dev-libs/libtomcrypt/ChangeLog
@@ -1,6 +1,11 @@
# 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.2 2002/12/05 20:57:31 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/ChangeLog,v 1.3 2002/12/17 18:36:33 vapier Exp $
+
+*libtomcrypt-0.80 (17 Dec 2002)
+
+ 17 Dec 2002; Mike Frysinger <vapier@gentoo.org> :
+ Author notified me of an update ;)
*libtomcrypt-0.78 (05 Dec 2002)
diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.74 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.74
deleted file mode 100644
index 3ee2e89bc3f6..000000000000
--- a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.74
+++ /dev/null
@@ -1 +0,0 @@
-MD5 76fd0c21ad468572b3d8a8c2485a83c5 crypt-0.74.tar.bz2 531110
diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.78 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.78
deleted file mode 100644
index 95b8a18de58b..000000000000
--- a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.78
+++ /dev/null
@@ -1 +0,0 @@
-MD5 75005826e6b5d2d4aab083346739b0e6 crypt-0.78.tar.bz2 511456
diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.80 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.80
new file mode 100644
index 000000000000..93c19855decf
--- /dev/null
+++ b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.80
@@ -0,0 +1 @@
+MD5 f03712894efa0b8a8e781b607fc166b6 crypt-0.80.tar.bz2 524529
diff --git a/dev-libs/libtomcrypt/files/makefile-path.patch b/dev-libs/libtomcrypt/files/makefile-path.patch
new file mode 100644
index 000000000000..074da6bb8d5e
--- /dev/null
+++ b/dev-libs/libtomcrypt/files/makefile-path.patch
@@ -0,0 +1,31 @@
+--- makefile.orig 2002-12-17 11:39:35.000000000 -0500
++++ makefile 2002-12-17 11:39:17.000000000 -0500
+@@ -224,8 +224,11 @@
+
+ #LIBPATH-The directory for libtomcrypt to be installed to.
+ #INCPATH-The directory to install the header files for libtomcrypt.
++#DATAPATH-The directory to install the pdf docs.
++DESTDIR=
+ LIBPATH=/usr/lib
+ INCPATH=/usr/include
++DATAPATH=/usr/share/doc/libtomcrypt/pdf
+
+ #List of objects to compile.
+ OBJECTS=keyring.o gf.o mem.o sprng.o ecc.o base64.o dh.o rsa.o \
+@@ -286,10 +289,12 @@
+ #as root in order to have a high enough permission to write to the correct
+ #directories and to set the owner and group to root.
+ install: library docs
+- install -g root -o root $(LIBNAME) $(LIBPATH)
+- install -g root -o root $(HEADERS) $(INCPATH)
+- mkdir -p /usr/doc/libtomcrypt/pdf
+- cp crypt.pdf /usr/doc/libtomcrypt/pdf/
++ install -d -g root -o root $(DESTDIR)$(LIBPATH)
++ install -d -g root -o root $(DESTDIR)$(INCPATH)
++ install -d -g root -o root $(DESTDIR)$(DATAPATH)
++ install -g root -o root $(LIBNAME) $(DESTDIR)$(LIBPATH)
++ install -g root -o root $(HEADERS) $(DESTDIR)$(INCPATH)
++ install -g root -o root crypt.pdf $(DESTDIR)$(DATAPATH)
+
+ #This rule cleans the source tree of all compiled code, not including the pdf
+ #documentation.
diff --git a/dev-libs/libtomcrypt/libtomcrypt-0.78.ebuild b/dev-libs/libtomcrypt/libtomcrypt-0.78.ebuild
deleted file mode 100644
index b1778306e1f8..000000000000
--- a/dev-libs/libtomcrypt/libtomcrypt-0.78.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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.78.ebuild,v 1.1 2002/12/05 20:57:31 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"
-
-src_compile() {
- emake || die
-}
-
-src_install() {
- dodir /usr/include/${PN}
- dodir /usr/lib
- make LIBPATH=${D}/usr/lib INCPATH=${D}/usr/include/${PN} install
-}
diff --git a/dev-libs/libtomcrypt/libtomcrypt-0.74.ebuild b/dev-libs/libtomcrypt/libtomcrypt-0.80.ebuild
index 39bcb5753f6d..0d156ccdc86e 100644
--- a/dev-libs/libtomcrypt/libtomcrypt-0.74.ebuild
+++ b/dev-libs/libtomcrypt/libtomcrypt-0.80.ebuild
@@ -1,6 +1,6 @@
# 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.2 2002/12/05 20:57:31 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtomcrypt/libtomcrypt-0.80.ebuild,v 1.1 2002/12/17 18:36:33 vapier Exp $
DESCRIPTION="http://libtomcrypt.iahu.ca/"
HOMEPAGE="http://libtomcrypt.iahu.ca/"
@@ -10,12 +10,13 @@ LICENSE="public-domain"
SLOT="0"
KEYWORDS="x86"
+DEPEND="app-text/tetex"
+
src_compile() {
emake || die
}
src_install() {
- dodir /usr/include/${PN}
- dodir /usr/lib
- make LIBPATH=${D}/usr/lib INCPATH=${D}/usr/include/${PN} install
+ patch -p0 < ${FILESDIR}/makefile-path.patch
+ make DESTDIR=${D} install || die
}