# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ MY_PN="gotopp" DESCRIPTION="abject-oriented non-deterministic programming language" HOMEPAGE="http://gpp.niacland.net/index.html.en" SRC_URI="ftp://gpp.niacland.net/gpp/download/${MY_PN}-${PV}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="app-arch/unzip dev-util/cmake" RDEPEND="" S="${WORKDIR}/${MY_PN}" MYBUILDDIR="${WORKDIR}/build" src_unpack() { mkdir ${MYBUILDDIR} unpack ${A} } src_compile() { cd ${MYBUILDDIR} cmake ${S} -DCMAKE_INSTALL_PREFIX:PATH=/usr || die "cmake failed" emake } src_install() { cd ${MYBUILDDIR} make DESTDIR=${D} install || die }