# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils toolchain-funcs multilib wxwidgets DESCRIPTION="Free open-source disk encryption software" HOMEPAGE="http://www.truecrypt.org/" #SRC_URI="TrueCrypt ${PV} Source.tar.gz" SRC_URI="${P}.tar.gz" LICENSE="truecrypt-collective-1.4" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="X" RESTRICT="mirror fetch bindist" RDEPEND="sys-fs/fuse =x11-libs/wxGTK-2.8*" DEPEND="${RDEPEND}" S="${WORKDIR}/${P}-source" pkg_nofetch() { einfo "Please download tar.gz source from:" einfo "http://www.truecrypt.org/downloads2.php" einfo "Then put the file in ${DISTDIR}/${SRC_URI}" } pkg_setup() { WX_GTK_VER="2.8" if use X; then need-wxwidgets unicode else need-wxwidgets base-unicode fi } src_unpack() { unpack ${A} cd "${S}" # epatch "${FILESDIR}/${P}-gcc-4.3.patch" # epatch "${FILESDIR}/${PN}-5.1a-external-wx.patch" # epatch "${FILESDIR}/${PN}-5.1-64bit.patch" # epatch "${FILESDIR}/${PN}-5.0-bool.patch" wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11.h wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11f.h wget ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-20/pkcs11t.h } src_compile() { local EXTRA use amd64 && EXTRA="${EXTRA} USE64BIT=1" use X || EXTRA="${EXTRA} NOGUI=1" emake \ ${EXTRA} \ NOSTRIP=1 \ VERBOSE=1 \ NOTEST=1 \ CC="$(tc-getCC)" \ AR="$(tc-getAR)" \ CXX="$(tc-getCXX)" \ RANLIB="$(tc-getRANLIB)" \ EXTRA_CFLAGS="${CFLAGS} -O0" \ EXTRA_CXXFLAGS="${CXXFLAGS} -O0" \ EXTRA_LDFLAGS="${LDFLAGS}" \ WX_CONFIG="${WX_CONFIG}" \ WX_CONFIG_EXTRA="" \ || die } src_test() { "${S}/Main/truecrypt" --text --test } src_install() { dobin Main/truecrypt dodoc Readme.txt 'Release/Setup Files/TrueCrypt User Guide.pdf' insinto "/$(get_libdir)/rcscripts/addons" newins "${FILESDIR}/${PN}-stop.sh" "${PN}-stop.sh" } pkg_postinst() { elog "potential legal problems - use at own risk" elog "http://lists.freedesktop.org/archives/distributions/2008-October/000276.html" }