summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Bar-Lev <alonbl@gentoo.org>2006-10-09 06:33:50 +0000
committerAlon Bar-Lev <alonbl@gentoo.org>2006-10-09 06:33:50 +0000
commit56b4b6eafb5450bcd2a53fed48b8523f8c4e2110 (patch)
tree1b4b9e70bb7f3d52bba5b4536cbdd5dcc5c34f75 /app-crypt
parentAdded QA_TEXTRELS for ppc64. (diff)
downloadgentoo-2-56b4b6eafb5450bcd2a53fed48b8523f8c4e2110.tar.gz
gentoo-2-56b4b6eafb5450bcd2a53fed48b8523f8c4e2110.tar.bz2
gentoo-2-56b4b6eafb5450bcd2a53fed48b8523f8c4e2110.zip
Fixed kernel location. Added no strip support, thanks to Tristan Heaven for reporting this
(Portage version: 2.1.1)
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/truecrypt/ChangeLog6
-rw-r--r--app-crypt/truecrypt/truecrypt-4.2a.ebuild10
2 files changed, 10 insertions, 6 deletions
diff --git a/app-crypt/truecrypt/ChangeLog b/app-crypt/truecrypt/ChangeLog
index 57008d7b1aae..002b115fa45c 100644
--- a/app-crypt/truecrypt/ChangeLog
+++ b/app-crypt/truecrypt/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-crypt/truecrypt
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/truecrypt/ChangeLog,v 1.7 2006/08/22 13:18:47 tcort Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/truecrypt/ChangeLog,v 1.8 2006/10/09 06:33:50 alonbl Exp $
+
+ 09 Oct 2006; Alon Bar-Lev <alonbl@gentoo.org> truecrypt-4.2a.ebuild:
+ Fixed kernel location. Added no strip support, thanks to Tristan Heaven for
+ reporting this
22 Aug 2006; Thomas Cort <tcort@gentoo.org> truecrypt-4.2a.ebuild:
Added ~amd64 keyword wrt Bug #135866.
diff --git a/app-crypt/truecrypt/truecrypt-4.2a.ebuild b/app-crypt/truecrypt/truecrypt-4.2a.ebuild
index f27dd15be7fb..0b269cd8a3e8 100644
--- a/app-crypt/truecrypt/truecrypt-4.2a.ebuild
+++ b/app-crypt/truecrypt/truecrypt-4.2a.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/truecrypt/truecrypt-4.2a.ebuild,v 1.4 2006/08/22 13:18:47 tcort Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/truecrypt/truecrypt-4.2a.ebuild,v 1.5 2006/10/09 06:33:50 alonbl Exp $
inherit linux-mod toolchain-funcs
@@ -18,7 +18,7 @@ DEPEND="virtual/linux-sources
RDEPEND="sys-fs/device-mapper"
-BUILD_PARAMS="KSRC=${KV_DIR} NO_WARNINGS=1"
+BUILD_PARAMS="KERNEL_SRC=${KERNEL_DIR} NO_WARNINGS=1"
BUILD_TARGETS="truecrypt"
MODULE_NAMES="truecrypt(block:${S}/Linux/Kernel)"
@@ -30,10 +30,10 @@ pkg_setup() {
src_unpack() {
unpack ${A}
- epatch "${FILESDIR}/${P}"_kernel-2.6.18-rc1_fix.patch
cd "${S}"
- linux-mod_pkg_setup
+ epatch "${FILESDIR}/${P}"_kernel-2.6.18-rc1_fix.patch
epatch "${FILESDIR}/${P}-makefile.patch"
+ linux-mod_pkg_setup
}
src_compile() {
@@ -43,7 +43,7 @@ src_compile() {
tc-export CC
# remove kernel linked crypt stuff
emake clean || die "make clean failed"
- emake truecrypt || die "Compile and/or linking of TrueCrypt Linux CLI application failed."
+ emake truecrypt NO_STRIP=1 || die "Compile and/or linking of TrueCrypt Linux CLI application failed."
}
src_test() {