# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/firestring/firestring-0.9.12.ebuild,v 1.1 2005/12/21 19:01:09 egore Exp $ DESCRIPTION="a library to make string handling easier in C" HOMEPAGE="http://firestuff.org/" SRC_URI="http://firestuff.org/projects/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~sparc ~ppc ~alpha ~hppa ~arm" DEPEND="virtual/libc" S=${WORKDIR}/${PN} src_compile() { econf || die "econf failed" emake PREFIX="/usr" CONFDIR="/etc" MANDIR="/usr/share/man" || die "emake failed" } src_install () { emake PREFIX="${D}usr" CONFDIR="${D}etc" MANDIR="${D}usr/share/man" install || die "emake install failed" dodoc README }