the src_install doesn't work:
make[2]: Entering directory `/var/tmp/portage/pike-7.4.10/work/Pike-v7.4.10/build/linux-2.4.19-xfs-r2-i686' touch: warning: `touch 0101010185' is obsolete; use `touch -t 198501010101.00' make[2]: Leaving directory `/var/tmp/portage/pike-7.4.10/work/Pike-v7.4.10/build/linux-2.4.19-xfs-r2-i686' make[1]: Leaving directory `/var/tmp/portage/pike-7.4.10/work/Pike-v7.4.10/build/linux-2.4.19-xfs-r2-i686' install: too few arguments Try `install --help' for more information.
!!! ERROR: dev-lang/pike-7.4.10 failed. !!! Function src_install, Line 5, Exitcode 1 !!! (no error message)
/ Ian D (cute in a stupid-ass way)
Previous text:
2002-12-23 20:49: Subject: Pike in Gentoo
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 }
/ Mårten Woxberg (Farligt med fest)