You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
980 B
46 lines
980 B
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-lang/polyml/polyml-5.4.1.ebuild,v 1.5 2012/10/24 19:04:03 ulm Exp $
|
|
|
|
EAPI="4"
|
|
|
|
inherit base autotools
|
|
|
|
MY_P=${PN}.${PV}
|
|
|
|
DESCRIPTION="Poly/ML is a full implementation of Standard ML"
|
|
HOMEPAGE="http://www.polyml.org"
|
|
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="X elibc_glibc +gmp portable test +threads"
|
|
|
|
RDEPEND="X? ( x11-libs/motif )
|
|
gmp? ( >=dev-libs/gmp-5 )
|
|
elibc_glibc? ( threads? ( >=sys-libs/glibc-2.13 ) )"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
PATCHES=("${FILESDIR}/${PN}-5.4.1-configure.patch"
|
|
"${FILESDIR}/${PN}-5.4.1-asm.patch")
|
|
|
|
src_prepare() {
|
|
base_src_prepare
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_with X x) \
|
|
$(use_with gmp) \
|
|
$(use_with portable) \
|
|
$(use_with threads)
|
|
}
|
|
|
|
src_test() {
|
|
emake tests || die "tests failed"
|
|
}
|