public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/smlnj: ChangeLog smlnj-110.75.ebuild smlnj-110.67-r2.ebuild smlnj-110.45.ebuild smlnj-110.0.7.ebuild smlnj-110.67-r1.ebuild smlnj-110.69.ebuild
@ 2012-10-19  9:31 Marijn Schouten (hkbst)
  0 siblings, 0 replies; only message in thread
From: Marijn Schouten (hkbst) @ 2012-10-19  9:31 UTC (permalink / raw
  To: gentoo-commits

hkbst       12/10/19 09:31:58

  Modified:             ChangeLog
  Added:                smlnj-110.75.ebuild
  Removed:              smlnj-110.67-r2.ebuild smlnj-110.45.ebuild
                        smlnj-110.0.7.ebuild smlnj-110.67-r1.ebuild
                        smlnj-110.69.ebuild
  Log:
  bump and remove old stuff
  
  (Portage version: 2.1.11.30/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.24                 dev-lang/smlnj/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/smlnj/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/smlnj/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/smlnj/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/smlnj/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	29 Jun 2010 12:13:03 -0000	1.23
+++ ChangeLog	19 Oct 2012 09:31:58 -0000	1.24
@@ -1,6 +1,13 @@
 # ChangeLog for dev-lang/smlnj
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/smlnj/ChangeLog,v 1.23 2010/06/29 12:13:03 ssuominen Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/smlnj/ChangeLog,v 1.24 2012/10/19 09:31:58 hkbst Exp $
+
+*smlnj-110.75 (19 Oct 2012)
+
+  19 Oct 2012; Marijn Schouten <hkBst@gentoo.org> -smlnj-110.0.7.ebuild,
+  -smlnj-110.45.ebuild, -smlnj-110.67-r1.ebuild, -smlnj-110.67-r2.ebuild,
+  -smlnj-110.69.ebuild, +smlnj-110.75.ebuild:
+  bump and remove old stuff
 
   29 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> smlnj-110.71.ebuild:
   Respect environment flags and targets wrt #243886 by Michael Weber.



1.1                  dev-lang/smlnj/smlnj-110.75.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/smlnj/smlnj-110.75.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/smlnj/smlnj-110.75.ebuild?rev=1.1&content-type=text/plain

Index: smlnj-110.75.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/smlnj/smlnj-110.75.ebuild,v 1.1 2012/10/19 09:31:58 hkbst Exp $

EAPI="4"

inherit eutils

DESCRIPTION="Standard ML of New Jersey compiler and libraries"
HOMEPAGE="http://www.smlnj.org"

BASE_URI="http://smlnj.cs.uchicago.edu/dist/working/${PV}"

FILES="
config.tgz

cm.tgz
compiler.tgz
runtime.tgz
system.tgz
MLRISC.tgz
smlnj-lib.tgz

ckit.tgz
nlffi.tgz

cml.tgz
eXene.tgz

ml-lex.tgz
ml-yacc.tgz
ml-burg.tgz
ml-lpt.tgz

pgraph.tgz
trace-debug-profile.tgz

heap2asm.tgz

smlnj-c.tgz
"

#use amd64 in 32-bit mode
SRC_URI="amd64? ( ${BASE_URI}/boot.x86-unix.tgz -> ${P}-boot.x86-unix.tgz )
		 ppc?   ( ${BASE_URI}/boot.ppc-unix.tgz -> ${P}-boot.ppc-unix.tgz )
		 sparc? ( ${BASE_URI}/boot.sparc-unix.tgz -> ${P}-boot.sparc-unix.tgz )
		 x86?   ( ${BASE_URI}/boot.x86-unix.tgz -> ${P}-boot.x86-unix.tgz )"

for file in ${FILES}; do
	SRC_URI+=" ${BASE_URI}/${file} -> ${P}-${file} "
done

LICENSE="BSD"
SLOT="0"

#sparc support should be there but is untested
KEYWORDS="-* ~amd64 ~ppc ~x86"
IUSE=""

S=${WORKDIR}

src_unpack() {
	mkdir -p "${S}"
	for file in ${A}; do
		[[ ${file} != ${P}-config.tgz ]] && cp "${DISTDIR}/${file}" "${S}/${file#${P}-}"
	done

#	make sure we don't use the internet to download anything
	unpack ${P}-config.tgz && rm config/*.bat
	echo SRCARCHIVEURL=\"file:/${S}\" > "${S}"/config/srcarchiveurl
}

src_compile() {
	SMLNJ_HOME="${S}" ./config/install.sh || die "compilation failed"
}

src_install() {
	mkdir -p "${D}"/usr
	mv bin lib "${D}"/usr

	for file in "${D}"/usr/bin/{*,.*}; do
		[[ -f ${file} ]] && sed "2iSMLNJ_HOME=/usr" -i ${file}
 #		[[ -f ${file} ]] && sed "s:${WORKDIR}:/usr:" -i ${file}
	done
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-10-19  9:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-19  9:31 [gentoo-commits] gentoo-x86 commit in dev-lang/smlnj: ChangeLog smlnj-110.75.ebuild smlnj-110.67-r2.ebuild smlnj-110.45.ebuild smlnj-110.0.7.ebuild smlnj-110.67-r1.ebuild smlnj-110.69.ebuild Marijn Schouten (hkbst)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox