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 }
-----------------------------------------
No, it doesn't work, it needs to run ./configure first... so you have to have 4711 USE variables to see what to compile with.
/ 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)
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)
Well as I suspected then.. Im trying to learn Pike with SDL right now.. it's proving abit hard when I'm using a ssh console with no access to an X server ;) I'll take a look at the ebuild stuff when I get back from the holidays then...
/ Mårten Woxberg (Farligt med fest)
Previous text:
2002-12-23 22:02: Subject: Pike in Gentoo
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)
I do that all the time.
You forgot a backslash on the line before "install". And a "dodir /usr/local/pike/${PV}". I'm running a ebuild install right now.
(grr! Why can't I restart just the INSTALL process instead of having to redo everything)
/ Ian D (cute in a stupid-ass way)
Previous text:
2002-12-24 00:34: Subject: Pike in Gentoo
Well as I suspected then.. Im trying to learn Pike with SDL right now.. it's proving abit hard when I'm using a ssh console with no access to an X server ;) I'll take a look at the ebuild stuff when I get back from the holidays then...
/ Mårten Woxberg (Farligt med fest)
pike-devel@lists.lysator.liu.se