diff options
Diffstat (limited to 'net-wireless/ap-utils/ap-utils-1.4.ebuild')
-rw-r--r-- | net-wireless/ap-utils/ap-utils-1.4.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/net-wireless/ap-utils/ap-utils-1.4.ebuild b/net-wireless/ap-utils/ap-utils-1.4.ebuild new file mode 100644 index 000000000000..daddfe96a5d4 --- /dev/null +++ b/net-wireless/ap-utils/ap-utils-1.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/ap-utils/ap-utils-1.4.ebuild,v 1.1 2004/02/25 04:09:09 latexer Exp $ + +inherit eutils + +IUSE="nls" + +DESCRIPTION="Wireless Access Point Utilites for Unix" +HOMEPAGE="http://ap-utils.polesye.net/" +SRC_URI="mirror://sourceforge/ap-utils/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +DEPEND=">=bison-1.34" +RDEPEND="" + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}-ppc-fix.diff +} + +src_compile() { + econf --build=${CHOST} `use_enable nls` || die + emake || die +} + +src_install () { + einstall || die + dodoc ChangeLog NEWS README THANKS TODO +} |