diff options
author | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-08-25 16:29:04 +0000 |
---|---|---|
committer | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-08-25 16:29:04 +0000 |
commit | f175bc4edc8d83a514883b12719f607613b596df (patch) | |
tree | 7e310c7b0cf8544c293f690f40dbace8aba41a1a /net-p2p/giftcurs | |
parent | stable on ia64 (diff) | |
download | gentoo-2-f175bc4edc8d83a514883b12719f607613b596df.tar.gz gentoo-2-f175bc4edc8d83a514883b12719f607613b596df.tar.bz2 gentoo-2-f175bc4edc8d83a514883b12719f607613b596df.zip |
Added support for unicode
(Portage version: 1.589-cvs)
Diffstat (limited to 'net-p2p/giftcurs')
-rw-r--r-- | net-p2p/giftcurs/ChangeLog | 8 | ||||
-rw-r--r-- | net-p2p/giftcurs/giftcurs-0.6.2.ebuild | 9 |
2 files changed, 11 insertions, 6 deletions
diff --git a/net-p2p/giftcurs/ChangeLog b/net-p2p/giftcurs/ChangeLog index 68775fe4fa18..a629cb5dfdd3 100644 --- a/net-p2p/giftcurs/ChangeLog +++ b/net-p2p/giftcurs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-p2p/giftcurs -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/ChangeLog,v 1.29 2004/07/07 20:13:58 slarti Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftcurs/ChangeLog,v 1.30 2005/08/25 16:29:04 sekretarz Exp $ + + 25 Aug 2005; <sekretarz@gentoo.org> giftcurs-0.6.2.ebuild: + Added support for unicode, thanks Gilles Dartiguelongue <dartigug@esiee.fr> + in bug #101312 07 Jul 2004; Tom Martin <slarti@gentoo.org> giftcurs-0.6.2.ebuild: Added to ~amd64. 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" |