diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-01-22 14:50:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-01-22 14:50:44 +0000 |
commit | e9bd0b7819799f7c8da2e91f297302888470fb12 (patch) | |
tree | 00f41e6008c1e0dccc96c6ed90d4367965e27612 /dev-libs/libtomcrypt/files | |
parent | changed to ~ppc and only require app-arch/rar if x86 (diff) | |
download | gentoo-2-e9bd0b7819799f7c8da2e91f297302888470fb12.tar.gz gentoo-2-e9bd0b7819799f7c8da2e91f297302888470fb12.tar.bz2 gentoo-2-e9bd0b7819799f7c8da2e91f297302888470fb12.zip |
version bump
Diffstat (limited to 'dev-libs/libtomcrypt/files')
-rw-r--r-- | dev-libs/libtomcrypt/files/digest-libtomcrypt-0.80 | 1 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/files/digest-libtomcrypt-0.81 | 1 | ||||
-rw-r--r-- | dev-libs/libtomcrypt/files/makefile-path.patch | 31 |
3 files changed, 1 insertions, 32 deletions
diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.80 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.80 deleted file mode 100644 index 93c19855decf..000000000000 --- a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.80 +++ /dev/null @@ -1 +0,0 @@ -MD5 f03712894efa0b8a8e781b607fc166b6 crypt-0.80.tar.bz2 524529 diff --git a/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.81 b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.81 new file mode 100644 index 000000000000..60f1d8f3a82b --- /dev/null +++ b/dev-libs/libtomcrypt/files/digest-libtomcrypt-0.81 @@ -0,0 +1 @@ +MD5 dbc24e140108e0bed24474b513fcc5a9 crypt-0.81.tar.bz2 485351 diff --git a/dev-libs/libtomcrypt/files/makefile-path.patch b/dev-libs/libtomcrypt/files/makefile-path.patch deleted file mode 100644 index 074da6bb8d5e..000000000000 --- a/dev-libs/libtomcrypt/files/makefile-path.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- 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. |