Christian Wiese
12 years ago
committed by
Christian Wiese
3 changed files with 131 additions and 0 deletions
@ -0,0 +1,73 @@ |
|||||||
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
||||||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||||||
|
#
|
||||||
|
# Filename: package/.../aespipe/aespipe-2.4c-opensde-compile.patch
|
||||||
|
# Copyright (C) 2013 The OpenSDE Project
|
||||||
|
#
|
||||||
|
# More information can be found in the files COPYING and README.
|
||||||
|
#
|
||||||
|
# This patch file is dual-licensed. It is available under the license the
|
||||||
|
# patched project is licensed under, as long as it is an OpenSource license
|
||||||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
|
||||||
|
# of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation; either version 2 of the License, or (at your option) any later
|
||||||
|
# version.
|
||||||
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
||||||
|
|
||||||
|
--- a/Makefile.in 2013-05-03 17:32:25.890545010 +0200
|
||||||
|
+++ b/Makefile.in 2013-05-03 17:36:50.626852208 +0200
|
||||||
|
@@ -7,7 +7,11 @@
|
||||||
|
# Redistribution of this file is permitted under the GNU Public License.
|
||||||
|
#
|
||||||
|
|
||||||
|
-CC = @CC@ @CPPFLAGS@ @CFLAGS@ @DEFS@
|
||||||
|
+CC = @CC@
|
||||||
|
+CPPFLAGS = @CPPFLAGS@
|
||||||
|
+CFLAGS = @CFLAGS@
|
||||||
|
+DEFS = @DEFS@
|
||||||
|
+COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS) $(DEFS)
|
||||||
|
LINK = @CC@ @LDFLAGS@
|
||||||
|
STRIP = @STRIP_PROG@
|
||||||
|
MD5SUM = @MD5SUM_PROG@
|
||||||
|
@@ -24,29 +28,29 @@
|
||||||
|
aespipe: aespipe.o @OPTIMIZED_OBJS@ sha512.o rmd160.o
|
||||||
|
$(LINK) -o aespipe aespipe.o @OPTIMIZED_OBJS@ sha512.o rmd160.o @LIBS@
|
||||||
|
aespipe.o: $(srcdir)/aespipe.c $(srcdir)/aes.h $(srcdir)/md5.h $(srcdir)/sha512.h $(srcdir)/rmd160.h
|
||||||
|
- $(CC) -o aespipe.o -c $(srcdir)/aespipe.c
|
||||||
|
+ $(COMPILE) -o aespipe.o -c $(srcdir)/aespipe.c
|
||||||
|
aes.o: $(srcdir)/aes.c $(srcdir)/aes.h
|
||||||
|
- $(CC) -DCONFIGURE_DETECTS_BYTE_ORDER=1 -DDATA_ALWAYS_ALIGNED=1 -o aes.o -c $(srcdir)/aes.c
|
||||||
|
+ $(COMPILE) -DCONFIGURE_DETECTS_BYTE_ORDER=1 -DDATA_ALWAYS_ALIGNED=1 -o aes.o -c $(srcdir)/aes.c
|
||||||
|
aes-x86.o: $(srcdir)/aes-x86.S $(srcdir)/aes.h
|
||||||
|
- $(CC) -o aes-x86.o -c $(srcdir)/aes-x86.S
|
||||||
|
+ $(COMPILE) -o aes-x86.o -c $(srcdir)/aes-x86.S
|
||||||
|
aes-amd64.o: $(srcdir)/aes-amd64.S $(srcdir)/aes.h
|
||||||
|
- $(CC) -o aes-amd64.o -c $(srcdir)/aes-amd64.S
|
||||||
|
+ $(COMPILE) -o aes-amd64.o -c $(srcdir)/aes-amd64.S
|
||||||
|
aes-intel32.o: $(srcdir)/aes-intel32.S $(srcdir)/aes.h
|
||||||
|
- $(CC) -o aes-intel32.o -c $(srcdir)/aes-intel32.S
|
||||||
|
+ $(COMPILE) -o aes-intel32.o -c $(srcdir)/aes-intel32.S
|
||||||
|
aes-intel64.o: $(srcdir)/aes-intel64.S $(srcdir)/aes.h
|
||||||
|
- $(CC) -o aes-intel64.o -c $(srcdir)/aes-intel64.S
|
||||||
|
+ $(COMPILE) -o aes-intel64.o -c $(srcdir)/aes-intel64.S
|
||||||
|
md5.o: $(srcdir)/md5.c $(srcdir)/md5.h
|
||||||
|
- $(CC) -o md5.o -c $(srcdir)/md5.c
|
||||||
|
+ $(COMPILE) -o md5.o -c $(srcdir)/md5.c
|
||||||
|
md5-x86.o: $(srcdir)/md5-x86.S $(srcdir)/md5.h
|
||||||
|
- $(CC) -o md5-x86.o -c $(srcdir)/md5-x86.S
|
||||||
|
+ $(COMPILE) -o md5-x86.o -c $(srcdir)/md5-x86.S
|
||||||
|
md5-amd64.o: $(srcdir)/md5-amd64.S $(srcdir)/md5.h
|
||||||
|
- $(CC) -o md5-amd64.o -c $(srcdir)/md5-amd64.S
|
||||||
|
+ $(COMPILE) -o md5-amd64.o -c $(srcdir)/md5-amd64.S
|
||||||
|
md5-2x-amd64.o: $(srcdir)/md5-2x-amd64.S $(srcdir)/md5.h
|
||||||
|
- $(CC) -o md5-2x-amd64.o -c $(srcdir)/md5-2x-amd64.S
|
||||||
|
+ $(COMPILE) -o md5-2x-amd64.o -c $(srcdir)/md5-2x-amd64.S
|
||||||
|
sha512.o: $(srcdir)/sha512.c $(srcdir)/sha512.h
|
||||||
|
- $(CC) -o sha512.o -c $(srcdir)/sha512.c
|
||||||
|
+ $(COMPILE) -o sha512.o -c $(srcdir)/sha512.c
|
||||||
|
rmd160.o: $(srcdir)/rmd160.c $(srcdir)/rmd160.h
|
||||||
|
- $(CC) -o rmd160.o -c $(srcdir)/rmd160.c
|
||||||
|
+ $(COMPILE) -o rmd160.o -c $(srcdir)/rmd160.c
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.o aespipe test-file[12345] config.log config.status configure.lineno
|
@ -0,0 +1,24 @@ |
|||||||
|
|
||||||
|
[TIMESTAMP] 1367595674 Fri May 3 17:41:14 2013 |
||||||
|
[BUILDTIME] 0 (5) |
||||||
|
[SIZE] 0.09 MB, 8 files |
||||||
|
|
||||||
|
[DEP] bash |
||||||
|
[DEP] binutils |
||||||
|
[DEP] bzip2 |
||||||
|
[DEP] coreutils |
||||||
|
[DEP] diffutils |
||||||
|
[DEP] fhs |
||||||
|
[DEP] findutils |
||||||
|
[DEP] gawk |
||||||
|
[DEP] gcc |
||||||
|
[DEP] glibc |
||||||
|
[DEP] grep |
||||||
|
[DEP] linux-header |
||||||
|
[DEP] make |
||||||
|
[DEP] patch |
||||||
|
[DEP] runit |
||||||
|
[DEP] sed |
||||||
|
[DEP] sysfiles |
||||||
|
[DEP] tar |
||||||
|
[DEP] util-linux |
@ -0,0 +1,34 @@ |
|||||||
|
[COPY] --- SDE-COPYRIGHT-NOTE-BEGIN --- |
||||||
|
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
||||||
|
[COPY] |
||||||
|
[COPY] Filename: package/.../aespipe/aespipe.desc |
||||||
|
[COPY] Copyright (C) 2013 The OpenSDE Project |
||||||
|
[COPY] |
||||||
|
[COPY] More information can be found in the files COPYING and README. |
||||||
|
[COPY] |
||||||
|
[COPY] This program is free software; you can redistribute it and/or modify |
||||||
|
[COPY] it under the terms of the GNU General Public License as published by |
||||||
|
[COPY] the Free Software Foundation; version 2 of the License. A copy of the |
||||||
|
[COPY] GNU General Public License can be found in the file COPYING. |
||||||
|
[COPY] --- SDE-COPYRIGHT-NOTE-END --- |
||||||
|
|
||||||
|
[I] An AES encrypting or decrypting pipe |
||||||
|
|
||||||
|
[T] aespipe is an AES encrypting or decrypting pipe. It reads from standard |
||||||
|
[T] input and writes to standard output. It can be used to create and restore |
||||||
|
[T] encrypted tar or cpio archives. It can be used to encrypt and decrypt |
||||||
|
[T] loop-AES compatible encrypted disk images. |
||||||
|
|
||||||
|
[U] http://loop-aes.sourceforge.net/ |
||||||
|
|
||||||
|
[A] Jari Ruusu <jariruusu@users.sourceforge.net> |
||||||
|
[M] Christian Wiese <chris@opensde.org> |
||||||
|
|
||||||
|
[C] extra/tool |
||||||
|
|
||||||
|
[L] GPL |
||||||
|
[S] Stable |
||||||
|
[V] 2.4c |
||||||
|
[P] X -----5---9 800.000 |
||||||
|
|
||||||
|
[D] 2709645025 aespipe-v2.4c.tar.bz2 http://loop-aes.sourceforge.net/aespipe/ |
Loading…
Reference in new issue