Hi, text in english since Pike developers forum seems to use that language.
I tried to do my first from scratch ebuild.. haven't tried it at all but I thought you might :)
Not even sure it works :) but it's a start for someone more experienced in python and Gentoo
------------------------pike-7.4.10.ebuild-------------------------
# Distributed under the terms of the GNU General Public License v2
S="${WORKDIR}/pike-${PV}" HOMEPAGE="http://pike.ida.liu.se" DESCRIPTION="Pike programming language and runtime"
SRC_URI="ftp://pike.ida.liu.se/pub/pike/latest-stable/Pike-v${PV}.tar.gz"
LICENSE="GPL, LGPL" KEYWORDS="x86 ppc"
SLOT="7.4"
src_compile() { emake || die make so || die }
src_install () { make \ INSTALL_BIN=${D}/usr/bin \ INSTALL_MAN=${D}/usr/share/man/man1 \ INSTALL_LIB=${D}/usr/lib/ install || die }
-----------------------------------------