# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/sys-libs/pam-skey/pam-skey-1.1.3.ebuild,v 1.5 2003/10/27 01:40:35 brad_mssw Exp $ MY_P="pam_skey" DESCRIPTION="Pam S/Key module" SRC_URI="http://kreator.esa.fer.hr/projects/tarballs/pam_skey-1.1.3.tar.gz" HOMEPAGE="" LICENSE="GPL" SLOT="0" KEYWORDS="x86 sparc" IUSE="" DEPEND="sys-auth/skey sys-libs/pam" S="${WORKDIR}/${MY_P}" src_unpack() { unpack ${A} || die "unpacking problem" # cd ${S} || die "dir problem" } src_compile() { cd ${S} || die "dir problem" econf --prefix=/ || die "configure problem" emake || die "compile problem" } src_install() { cd ${S} || die "dir problem" cd ../.. mkdir -p image/lib/security image/usr/lib cd image/usr/lib ln -s ../../lib/security ./ cd ${S} || die "dir problem" einstall || die "install problem" }