# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.0.20051107.ebuild,v 1.2 2005/11/21 13:34:22 truedfx Exp $ inherit eutils MY_PV="${PV/1.0./1.0-}" S=${WORKDIR}/${PN}-${MY_PV} DESCRIPTION="tool to display dialog boxes from a shell" HOMEPAGE="http://invisible-island.net/dialog/dialog.html" SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${MY_PV}.orig.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="examples unicode" DEPEND=">=app-shells/bash-2.04-r3 >=sys-libs/ncurses-5.2-r5" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-mouseselect.patch } src_compile() { #export LANG=C use unicode && ncursesw="w" econf "--with-ncurses${ncursesw}" || die "configure failed" emake || die "build failed" } src_install() { make install DESTDIR="${D}" || die dodoc CHANGES README VERSION if use examples; then docinto samples dodoc samples/* fi }