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.
gentoo-overlay/dev-lang/mozart-stdlib/mozart-stdlib-1.3.2.ebuild

48 lines
1.0 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart-stdlib/mozart-stdlib-1.3.2.ebuild,v 1.10 2012/03/18 15:40:07 armin76 Exp $
inherit eutils
MY_P="mozart-${PV}.20060615-std"
DESCRIPTION="The Mozart Standard Library"
HOMEPAGE="http://www.mozart-oz.org/"
SRC_URI="http://www.mozart-oz.org/download/mozart-ftp/store/1.3.2-2006-06-15-tar/mozart-1.3.2.20060615-std.tar.gz"
LICENSE="Mozart"
SLOT="0"
KEYWORDS="-amd64 ppc -ppc64 x86"
IUSE="doc"
DEPEND="dev-lang/mozart"
RDEPEND="${DEPEND}"
S="${WORKDIR}"/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-ozmake.patch
epatch "${FILESDIR}"/${P}-doc.patch
}
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake \
PREFIX="${D}"/usr/lib/mozart \
BINDIR="${D}"/usr/bin \
install || die "emake install failed"
if use doc ; then
dohtml -r *
fi
doman ozmake/ozmake.1
dodoc ozmake/{CHANGES,DESIGN,NOTES,README}
}