# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-mail/libspopc/libspopc-0.7.ebuild,v 1.1 2006/04/09 13:21:50 zzam Exp $ RESTRICT="nomirror" DESCRIPTION="a simple-to-use POP3 client library." HOMEPAGE="http://brouits.free.fr/libspopc/" SRC_URI="http://brouits.free.fr/${PN}/releases/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" src_compile() { sed -i \ -e "s/^install : uninstall lib/install :/" \ Makefile \ || die "sed Makefile failed" emake all || die "emake all failed" } src_install() { dolib.a ${P}.a || die "dolib failed" dosym /usr/lib/${P}.a /usr/lib/${PN}.a insinto /usr/include/ doins *.h || die "doins headers failed" dodoc README ChangeLog AUTHORS COPYING.LIB doc/* }