# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/xsupplicant/xsupplicant-1.0.1.ebuild,v 1.3 2007/04/28 17:04:12 swegener Exp $ DESCRIPTION="Open Source Implementation of IEEE 802.1x" HOMEPAGE="http://open1x.sourceforge.net" SRC_URI="mirror://sourceforge/open1x/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc" IUSE="" DEPEND=">=dev-libs/openssl-0.9.7 sys-apps/pcsc-lite" src_compile() { econf --enable-eap-sim || die "econf failed" emake || die "emake failed" } src_install() { emake DESTDIR=${D} install || die "emake install failed" dodoc AUTHORS README README.wireless_cards \ doc/README.certificates \ doc/pdf/Open1x-UserGuide.pdf doc/txt/Open1x-UserGuide.txt docinto examples dodoc etc/*-example.conf insinto /etc newins etc/xsupplicant.conf xsupplicant.conf.example newinitd ${FILESDIR}/xsupplicant.init.d xsupplicant newconfd ${FILESDIR}/xsupplicant.conf.d xsupplicant } pkg_postinst() { einfo einfo "To use ${P} you must create the configuration file" einfo "/etc/xsupplicant.conf" einfo einfo "An example configuration file has been installed as" einfo "/etc/xsupplicant.conf.example" einfo }