#This is the STP ebuild meant for installation only on the client side #If you are using this ebuild to install STP on the server side, you #are missing some additional packages that should be listed in RDEPEND #to ensure full STP functionality inherit eutils DESCRIPTION="Scalable Test Platform" HOMEPAGE="http://www.osdl.org/" #SRC_URI="mirror://sourceforge/stp/${PN}-${PV}.tar.gz" SRC_URI="http://developer.osdl.org/dev/brt/downloads/${PN}-${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ~ppc ~sparc ~amd64 ~ppc64 ~alpha" IUSE="static" RDEPEND=">=dev-lang/perl-5.6.0 >=dev-perl/SOAP-Lite-0.55 >=perl-core/File-Spec-0.82 >=perl-core/File-Temp-0.12 >=dev-perl/Config-Simple-4.55" DEPEND="${RDEPEND}" S="${WORKDIR}/${PN}-${PV}" src_unpack() { unpack ${A} cd ${S} perl Makefile.PL PREFIX=$D/usr } src_compile() { emake || die "compile problem" } src_install() { einstall || die "install problem" }