diff options
author | 2005-08-25 16:29:04 +0000 | |
---|---|---|
committer | 2005-08-25 16:29:04 +0000 | |
commit | 4c429706720264d0011e857b6cce9abf84025dfc (patch) | |
tree | d61f9d5d751221196dda321d615566edadf3735b /net-p2p/giftcurs/giftcurs-0.6.2.ebuild | |
parent | stable on ia64 (diff) | |
download | historical-4c429706720264d0011e857b6cce9abf84025dfc.tar.gz historical-4c429706720264d0011e857b6cce9abf84025dfc.tar.bz2 historical-4c429706720264d0011e857b6cce9abf84025dfc.zip |
Added support for unicode
Package-Manager: portage-1.589-cvs
Diffstat (limited to 'net-p2p/giftcurs/giftcurs-0.6.2.ebuild')
-rw-r--r-- | net-p2p/giftcurs/giftcurs-0.6.2.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net-p2p/giftcurs/giftcurs-0.6.2.ebuild b/net-p2p/giftcurs/giftcurs-0.6.2.ebuild index 4477081d11c6..1909bee4def5 100644 --- a/net-p2p/giftcurs/giftcurs-0.6.2.ebuild +++ b/net-p2p/giftcurs/giftcurs-0.6.2.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/giftcurs-0.6.2.ebuild,v 1.6 2004/07/07 20:13:58 slarti Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/giftcurs-0.6.2.ebuild,v 1.7 2005/08/25 16:29:04 sekretarz Exp $ MY_P="giFTcurs-${PV}" S="${WORKDIR}/${MY_P}" -DESCRIPTION="A ncurses frontend to the giFT (OpenFT) daemon" +DESCRIPTION="A ncurses frontend to the giFT daemon" SRC_URI="http://savannah.nongnu.org/download/${PN}/${MY_P}.tar.gz" HOMEPAGE="http://www.nongnu.org/giftcurs/" SLOT="0" LICENSE="GPL-2" -IUSE="gpm nls" +IUSE="gpm nls unicode" KEYWORDS="x86 sparc ~ppc ~amd64" DEPEND="virtual/libc @@ -21,6 +21,7 @@ src_compile() { use gpm || myconf="${myconf} --disable-mouse --disable-libgpm" use nls || myconf="${myconf} --disable-nls" + use unicode && myconf="${myconf} --with-ncursesw" econf $myconf || die "./configure failed" |