summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2012-12-15 17:20:59 +0000
committerPacho Ramos <pacho@gentoo.org>2012-12-15 17:20:59 +0000
commit67b19f0ef4cadfebfa9ba42e6b102fe0564fa186 (patch)
treeb57270bf279a4d108a4b3ee1868833d5bd38470b /net-wireless/ap-utils
parentFix imagemagick/graphicsmagick dep, #314217 by Wojciech Porczyk (diff)
downloadgentoo-2-67b19f0ef4cadfebfa9ba42e6b102fe0564fa186.tar.gz
gentoo-2-67b19f0ef4cadfebfa9ba42e6b102fe0564fa186.tar.bz2
gentoo-2-67b19f0ef4cadfebfa9ba42e6b102fe0564fa186.zip
Add missing ncurses dep, #406087 by Bertrand Jacquin
(Portage version: 2.1.11.37/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-wireless/ap-utils')
-rw-r--r--net-wireless/ap-utils/ChangeLog5
-rw-r--r--net-wireless/ap-utils/ap-utils-1.5.ebuild20
2 files changed, 12 insertions, 13 deletions
diff --git a/net-wireless/ap-utils/ChangeLog b/net-wireless/ap-utils/ChangeLog
index 924e084f1a5c..6d8834d087df 100644
--- a/net-wireless/ap-utils/ChangeLog
+++ b/net-wireless/ap-utils/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-wireless/ap-utils
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/ap-utils/ChangeLog,v 1.17 2012/11/18 11:02:07 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/ap-utils/ChangeLog,v 1.18 2012/12/15 17:20:59 pacho Exp $
+
+ 15 Dec 2012; Pacho Ramos <pacho@gentoo.org> ap-utils-1.5.ebuild:
+ Add missing ncurses dep, #406087 by Bertrand Jacquin
18 Nov 2012; Pacho Ramos <pacho@gentoo.org> -ap-utils-1.3.1.ebuild,
-ap-utils-1.3.3.ebuild, -ap-utils-1.4.1.ebuild, metadata.xml:
diff --git a/net-wireless/ap-utils/ap-utils-1.5.ebuild b/net-wireless/ap-utils/ap-utils-1.5.ebuild
index 3586210f9a8f..e62cc131b908 100644
--- a/net-wireless/ap-utils/ap-utils-1.5.ebuild
+++ b/net-wireless/ap-utils/ap-utils-1.5.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-wireless/ap-utils/ap-utils-1.5.ebuild,v 1.1 2009/09/05 17:52:54 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-wireless/ap-utils/ap-utils-1.5.ebuild,v 1.2 2012/12/15 17:20:59 pacho Exp $
+EAPI=5
inherit eutils
IUSE="nls"
@@ -13,15 +14,10 @@ SRC_URI="ftp://linux.zhitomir.net/ap-utils/ap-utils-1.5.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
-DEPEND=">=sys-devel/bison-1.34"
-RDEPEND=""
+RDEPEND="sys-libs/ncurses"
+DEPEND="${RDEPEND}
+ >=sys-devel/bison-1.34"
-src_compile() {
- econf $(use_enable nls) || die
- emake || die
-}
-
-src_install () {
- emake DESTDIR="${D}" install || die "Installation failed."
- dodoc ChangeLog NEWS README THANKS TODO
+src_configure() {
+ econf $(use_enable nls)
}