# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit toolchain-funcs DESCRIPTION="Scsign - a command-line utility to digitally sign a file" HOMEPAGE="http://opensignature.sourceforge.net/" SRC_URI="mirror://sourceforge/opensignature/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="" S=${WORKDIR} DEPEND=">=dev-libs/opensc-0.9.2 dev-libs/openssl sys-apps/pcsc-lite" src_compile() { $(tc-getCC) ${CFLAGS} -lcrypto -lpcsclite -lpthread -lopensc scsign.c -o scsign || die } src_install() { dobin scsign }