diff options
author | Cédric Krier <cedk@gentoo.org> | 2010-03-14 11:26:52 +0000 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2010-03-14 11:26:52 +0000 |
commit | ae60f03ed9817760b3f185e66985c119ca092cb4 (patch) | |
tree | e3d434858a877c2d8371ec62b938597c8335dc5c /net-news/snownews/snownews-1.5.9.ebuild | |
parent | Maintenance: LICENSE, remove Email-MIME-Modifier (diff) | |
download | gentoo-2-ae60f03ed9817760b3f185e66985c119ca092cb4.tar.gz gentoo-2-ae60f03ed9817760b3f185e66985c119ca092cb4.tar.bz2 gentoo-2-ae60f03ed9817760b3f185e66985c119ca092cb4.zip |
Fix unicode display for bug #309307 and remove old
(Portage version: 2.1.7.16/cvs/Linux i686)
Diffstat (limited to 'net-news/snownews/snownews-1.5.9.ebuild')
-rw-r--r-- | net-news/snownews/snownews-1.5.9.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/net-news/snownews/snownews-1.5.9.ebuild b/net-news/snownews/snownews-1.5.9.ebuild deleted file mode 100644 index e35f7c0eaba7..000000000000 --- a/net-news/snownews/snownews-1.5.9.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-news/snownews/snownews-1.5.9.ebuild,v 1.2 2008/02/18 16:49:38 cedk Exp $ - -inherit eutils toolchain-funcs - -DESCRIPTION="Snownews, a text-mode RSS/RDF newsreader" -HOMEPAGE="http://snownews.kcore.de/" -SRC_URI="http://home.kcore.de/~kiza/software/snownews/download/${P}.tar.gz" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="unicode" - -DEPEND=">=dev-libs/libxml2-2.5.6 - >=sys-libs/ncurses-5.3" - -RDEPEND="dev-perl/XML-LibXML - dev-perl/XML-LibXSLT - dev-perl/libwww-perl" - -pkg_setup() { - if use unicode && ! built_with_use sys-libs/ncurses unicode; then - eerror "sys-libs/ncurses must be build with unicode" - die "${PN} requires sys-libs/ncurses with USE=unicode" - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i -e "s/-O2//" \ - configure - - sed -i -e 's/$(INSTALL) -s/$(INSTALL)/' \ - Makefile - - #Bug #121805 - epatch "${FILESDIR}"/${PN}-1.5.7-stdint.patch -} - -src_compile() { - local conf="--prefix=/usr" - use unicode && conf="${conf} --charset=UTF-8" - ./configure ${conf} || die "configure failed" - emake CC="$(tc-getCC)" EXTRA_CFLAGS="${CFLAGS}" EXTRA_LDFLAGS="${LDFLAGS}" || die "emake failed" -} - -src_install() { - emake PREFIX="${D}/usr" install || die "make install failed" - - dodoc AUTHOR CREDITS README README.colors README.de README.patching -} |