diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2007-01-27 22:08:16 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2007-01-27 22:08:16 +0000 |
commit | 00952a129f3f4cf0d0431e3dbb4f3a0cb8960825 (patch) | |
tree | aade5f39cff7326137673d0f070dc43f7d9627f1 /app-crypt/truecrypt/files | |
parent | Removed version that has full bundled deps (diff) | |
download | gentoo-2-00952a129f3f4cf0d0431e3dbb4f3a0cb8960825.tar.gz gentoo-2-00952a129f3f4cf0d0431e3dbb4f3a0cb8960825.tar.bz2 gentoo-2-00952a129f3f4cf0d0431e3dbb4f3a0cb8960825.zip |
Cleanup
(Portage version: 2.1.2-r4)
Diffstat (limited to 'app-crypt/truecrypt/files')
4 files changed, 0 insertions, 150 deletions
diff --git a/app-crypt/truecrypt/files/digest-truecrypt-4.2-r1 b/app-crypt/truecrypt/files/digest-truecrypt-4.2-r1 deleted file mode 100644 index 9951f54d3da9..000000000000 --- a/app-crypt/truecrypt/files/digest-truecrypt-4.2-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 8ea4464f3f89fe8c367dc19982a8f611 truecrypt-4.2-source-code.tar.gz 1076093 -RMD160 74ba185bad9952ea9b3b0e358e9fee6f2080e6b9 truecrypt-4.2-source-code.tar.gz 1076093 -SHA256 54f54cd68c99efe3fd2c0899174b38d4cfe1ad576112672aabd2ac64e336cd1f truecrypt-4.2-source-code.tar.gz 1076093 diff --git a/app-crypt/truecrypt/files/digest-truecrypt-4.2a b/app-crypt/truecrypt/files/digest-truecrypt-4.2a deleted file mode 100644 index 6aac1268b685..000000000000 --- a/app-crypt/truecrypt/files/digest-truecrypt-4.2a +++ /dev/null @@ -1,3 +0,0 @@ -MD5 6e60ead403fe23355f61341ccce68ff1 truecrypt-4.2a-source-code.tar.gz 1088418 -RMD160 8d5b142f9cc7de5693b527f8d708d9e1ebd1e2b3 truecrypt-4.2a-source-code.tar.gz 1088418 -SHA256 ba1892584bf52b5a12eef185563705774566a70537d139aef8770477dfe9636f truecrypt-4.2a-source-code.tar.gz 1088418 diff --git a/app-crypt/truecrypt/files/truecrypt-4.2-makefile.patch b/app-crypt/truecrypt/files/truecrypt-4.2-makefile.patch deleted file mode 100644 index 8b4017f6bc09..000000000000 --- a/app-crypt/truecrypt/files/truecrypt-4.2-makefile.patch +++ /dev/null @@ -1,67 +0,0 @@ ---- Linux/Cli/Makefile.orig 2006-03-26 06:29:38.000000000 +1100 -+++ Linux/Cli/Makefile 2006-06-05 17:57:29.000000000 +1000 -@@ -3,27 +3,16 @@ - TC_COMMON := ../../Common - TC_CRYPTO := ../../Crypto - --CC := gcc -+CC ?= gcc - - ifneq ($(MAKECMDGOALS),clean) - -include ../Common/.platform - endif - --ifdef NO_WARNINGS --CFLAGS := -w --else --CFLAGS := -W --endif - CFLAGS += -I../../Crypto -I../../Common -I../Kernel - CFLAGS += -D_cdecl="" -DBOOL=int -DTRUE=1 -DFALSE=0 -DMAX_PATH=260 - CFLAGS += $(TYPES) - --ifndef DEBUG --CFLAGS += -O2 -fno-strict-aliasing --else --CFLAGS += -ggdb --endif -- - KERNEL_OBJS_F := ../.kernel-objs - USER_OBJS_F := ../.user-objs - -@@ -61,18 +50,18 @@ - @echo Compiling $(<F) - @$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -MMD -o $@ -c $< - --all: objclean truecrypt -+all: $(USER_OBJS_F) truecrypt - @echo Done. - - ../Common/.platform: ../Common/Platform.c -- @$(CC) -o ../Common/platform $< -+ $(CC) -o ../Common/platform $< - @../Common/platform >../Common/.platform - - -include $(OBJS:.o=.d) - - truecrypt: $(OBJS) - @echo Linking $@ -- @$(CC) -o $@ $(OBJS) -+ $(CC) -o $@ $(OBJS) - ifndef DEBUG - @strip $@ - endif -@@ -82,9 +71,11 @@ - truecrypt.1: objclean truecrypt - help2man -N -i Man/help2man.inc ./truecrypt >Man/truecrypt.1 - --objclean: -- @if [ -f $(KERNEL_OBJS_F) ]; then rm -f ${OBJS} $(KERNEL_OBJS_F); fi -+$(USER_OBJS_F): -+ @[ -f $(KERNEL_OBJS_F) ] && rm -f ${OBJS} $(KERNEL_OBJS_F) - @>$(USER_OBJS_F) - - clean: - -rm -f truecrypt ${OBJS} *.d $(TC_COMMON)/*.d $(TC_CRYPTO)/*.d ../Common/platform ../Common/.platform -+ -+.PHONY: man clean diff --git a/app-crypt/truecrypt/files/truecrypt-4.2-nosectorformat.patch b/app-crypt/truecrypt/files/truecrypt-4.2-nosectorformat.patch deleted file mode 100644 index 4c5bc7c82c21..000000000000 --- a/app-crypt/truecrypt/files/truecrypt-4.2-nosectorformat.patch +++ /dev/null @@ -1,77 +0,0 @@ ---- ./Linux/Kernel/Dm-target.c.orig 2006-06-06 21:31:51.000000000 +1000 -+++ ./Linux/Kernel/Dm-target.c 2006-06-06 21:45:08.000000000 +1000 -@@ -161,7 +161,7 @@ - goto err; - } - -- if (sscanf (argv[ARG_SEC], SECTOR_FORMAT, &tc->start) != 1) -+ if (sscanf (argv[ARG_SEC], "%Lu", &tc->start) != 1) - { - ti->error = "truecrypt: Invalid device sector"; - goto err; -@@ -224,14 +224,14 @@ - } - - // Read-only start sector -- if (sscanf (argv[ARG_RO_START], SECTOR_FORMAT, &tc->read_only_start) != 1) -+ if (sscanf (argv[ARG_RO_START], "%Lu", &tc->read_only_start) != 1) - { - ti->error = "truecrypt: Invalid read-only start sector"; - goto err; - } - - // Read-only end sector -- if (sscanf (argv[ARG_RO_END], SECTOR_FORMAT, &tc->read_only_end) != 1) -+ if (sscanf (argv[ARG_RO_END], "%Lu", &tc->read_only_end) != 1) - { - ti->error = "truecrypt: Invalid read-only end sector"; - goto err; -@@ -375,8 +375,8 @@ - int seg_no; - - trace (3, "truecrypt_endio (%p, %d, %d)\n", bio, bytes_done, error); -- trace (1, "end: sc=" SECTOR_FORMAT " fl=%ld rw=%ld sz=%d ix=%hd vc=%hd dn=%d er=%d\n", -- bio->bi_sector, bio->bi_flags, bio->bi_rw, bio->bi_size, bio->bi_idx, bio->bi_vcnt, bytes_done, error); -+ trace (1, "end: sc=%llu fl=%ld rw=%ld sz=%d ix=%hd vc=%hd dn=%d er=%d\n", -+ (unsigned long long) bio->bi_sector, bio->bi_flags, bio->bi_rw, bio->bi_size, bio->bi_idx, bio->bi_vcnt, bytes_done, error); - - if (error != 0) - bc->error = error; -@@ -420,8 +420,8 @@ - int seg_no; - - trace (3, "truecrypt_map (%p, %p, %p)\n", ti, bio, map_context); -- trace (1, "map: sc=" SECTOR_FORMAT " fl=%ld rw=%ld sz=%d ix=%hd vc=%hd\n", -- bio->bi_sector, bio->bi_flags, bio->bi_rw, bio->bi_size, bio->bi_idx, bio->bi_vcnt); -+ trace (1, "map: sc=%llu fl=%ld rw=%ld sz=%d ix=%hd vc=%hd\n", -+ (unsigned long long) bio->bi_sector, bio->bi_flags, bio->bi_rw, bio->bi_size, bio->bi_idx, bio->bi_vcnt); - - // Write protection - if (bio_data_dir (bio) == WRITE && READ_ONLY (tc)) -@@ -547,7 +547,7 @@ - - atomic_inc (&bc->ref_count); - -- trace (3, "generic_make_request (rw=%ld sc=" SECTOR_FORMAT ")\n", bion->bi_rw, bion->bi_sector); -+ trace (3, "generic_make_request (rw=%ld sc=%llu )\n", bion->bi_rw,(unsigned long long) bion->bi_sector); - generic_make_request (bion); - - dereference_bio_ctx (bc); -@@ -569,13 +569,13 @@ - { - char name[32]; - format_dev_t (name, tc->dev->bdev->bd_dev); -- snprintf (result, maxlen, "%d %d 0 0 %s " SECTOR_FORMAT " " SECTOR_FORMAT " " SECTOR_FORMAT " %Ld %Ld %d %s", -+ snprintf (result, maxlen, "%d %d 0 0 %s %llu %llu %llu %Ld %Ld %d %s", - tc->ci->ea, - tc->ci->mode, - name, -- tc->start, -- tc->read_only_start, -- tc->read_only_end, -+ (unsigned long long) tc->start, -+ (unsigned long long) tc->read_only_start, -+ (unsigned long long) tc->read_only_end, - tc->mtime, - tc->atime, - tc->flags, |