diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-06-03 13:00:05 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-06-03 13:00:05 +0000 |
commit | 2c19e31f4ab2c792dc568ab085001af625e9106e (patch) | |
tree | f15cc4027c21b24a2b03bc78b6c074acf59caa1c /sys-devel/odinmp | |
parent | Olivier Crete <tester@tester.ca> added support for crypt flag (diff) | |
download | historical-2c19e31f4ab2c792dc568ab085001af625e9106e.tar.gz historical-2c19e31f4ab2c792dc568ab085001af625e9106e.tar.bz2 historical-2c19e31f4ab2c792dc568ab085001af625e9106e.zip |
Original version of OdinMP OpenMP compiler
Diffstat (limited to 'sys-devel/odinmp')
-rw-r--r-- | sys-devel/odinmp/ChangeLog | 8 | ||||
-rw-r--r-- | sys-devel/odinmp/files/digest-odinmp-0.167.2 | 2 | ||||
-rw-r--r-- | sys-devel/odinmp/odinmp-0.167.2.ebuild | 45 |
3 files changed, 55 insertions, 0 deletions
diff --git a/sys-devel/odinmp/ChangeLog b/sys-devel/odinmp/ChangeLog new file mode 100644 index 000000000000..1c37c29fe191 --- /dev/null +++ b/sys-devel/odinmp/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for sys-devel/odinmp +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/odinmp/ChangeLog,v 1.1 2003/06/03 13:00:05 tantive Exp $ + +*odinmp-0.167.2 (03 Jun 2003) + + 03 Jun 2003; Olivier Crete <tester@tester.ca>; odin-0.167.2 : + Original version of OdinMP OpenMP compiler diff --git a/sys-devel/odinmp/files/digest-odinmp-0.167.2 b/sys-devel/odinmp/files/digest-odinmp-0.167.2 new file mode 100644 index 000000000000..150af28ef839 --- /dev/null +++ b/sys-devel/odinmp/files/digest-odinmp-0.167.2 @@ -0,0 +1,2 @@ +MD5 47eeaeefd1fa4919e066e7004ec98654 OdinMP.0.167.2.tar.gz 169766 +MD5 2afc50a8cf0b60265b18265cf4bf148b odinmp_user_manual.pdf 69884 diff --git a/sys-devel/odinmp/odinmp-0.167.2.ebuild b/sys-devel/odinmp/odinmp-0.167.2.ebuild new file mode 100644 index 000000000000..206f1ed99223 --- /dev/null +++ b/sys-devel/odinmp/odinmp-0.167.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/odinmp/odinmp-0.167.2.ebuild,v 1.1 2003/06/03 13:00:05 tantive Exp $ + +DESCRIPTION="The OdinMP OpenMP compiler" + +HOMEPAGE="http://odinmp.imit.kth.se/" +SRC_URI="http://odinmp.imit.kth.se:81/odinmp/OdinMP.${PV}.tar.gz + doc? ( http://odinmp.imit.kth.se:81/odinmp/odinmp_user_manual.pdf )" + +LICENSE="OdinMP" +SLOT="0" + +# The makefiles are only defined for x86 and sparc +KEYWORDS="~x86 ~sparc" + +IUSE="doc" +DEPEND=">=sys-devel/flex-2.5.4 + >=sys-devel/bison-1.35" +RDEPEND="" +S=${WORKDIR}/OdinMP + +src_unpack() { + unpack OdinMP.${PV}.tar.gz + +} + +src_compile() { + + cd ${S}/build/linux-${ARCH} + make all || die +} + +src_install() { + dobin build/linux-${ARCH}/odinmp + dosym odinmp /usr/bin/intonecc + dosym odinmp /usr/bin/intoneld + dosym odinmp /usr/bin/odinmpcc + dosym odinmp /usr/bin/odinmpas + dosym odinmp /usr/bin/odinmpld + + dodoc README COPYRIGHT + use doc && cp ${DISTDIR}/odinmp_user_manual.pdf ${D}usr/share/doc/${P} + +} |