diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-03-18 13:18:57 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-03-18 13:18:57 +0000 |
commit | d5e4a74c5c9486de026a5ff638781ed756d4c598 (patch) | |
tree | d723e88699161cc2b561d9e4336b31e684046b6c /dev-lang | |
parent | Version bump (diff) | |
download | gentoo-2-d5e4a74c5c9486de026a5ff638781ed756d4c598.tar.gz gentoo-2-d5e4a74c5c9486de026a5ff638781ed756d4c598.tar.bz2 gentoo-2-d5e4a74c5c9486de026a5ff638781ed756d4c598.zip |
Version bump.
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/sunstudioexpress/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lang/sunstudioexpress/sunstudioexpress-2009.03.ebuild | 55 |
2 files changed, 62 insertions, 1 deletions
diff --git a/dev-lang/sunstudioexpress/ChangeLog b/dev-lang/sunstudioexpress/ChangeLog index e9923b64e033..a168aac1f277 100644 --- a/dev-lang/sunstudioexpress/ChangeLog +++ b/dev-lang/sunstudioexpress/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-lang/sunstudioexpress # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/sunstudioexpress/ChangeLog,v 1.5 2009/03/11 10:52:36 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/sunstudioexpress/ChangeLog,v 1.6 2009/03/18 13:18:57 flameeyes Exp $ + +*sunstudioexpress-2009.03 (18 Mar 2009) + + 18 Mar 2009; Diego E. Pettenò <flameeyes@gentoo.org> + +sunstudioexpress-2009.03.ebuild: + Version bump. 11 Mar 2009; Diego E. Pettenò <flameeyes@gentoo.org> -sunstudioexpress-2008.07.24.ebuild, sunstudioexpress-2008.11.ebuild: diff --git a/dev-lang/sunstudioexpress/sunstudioexpress-2009.03.ebuild b/dev-lang/sunstudioexpress/sunstudioexpress-2009.03.ebuild new file mode 100644 index 000000000000..32adfec4e028 --- /dev/null +++ b/dev-lang/sunstudioexpress/sunstudioexpress-2009.03.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/sunstudioexpress/sunstudioexpress-2009.03.ebuild,v 1.1 2009/03/18 13:18:57 flameeyes Exp $ + +inherit versionator + +MY_PN="StudioExpress" +MY_TAG="-ii" +MY_PV="$(replace_all_version_separators -)" +MY_P="${MY_PN}-lin-x86-${MY_PV}${MY_TAG}" + +DESCRIPTION="Sun Studio Express Compilers for Linux" +HOMEPAGE="http://developers.sun.com/sunstudio/downloads/express/index.jsp" +RESTRICT="fetch strip" +SRC_URI="${MY_P}.sh" + +LICENSE="SunStudioExpress LGPL-2 BSD as-is" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" + +RDEPEND="amd64? ( app-emulation/emul-linux-x86-baselibs ) + sys-libs/zlib" +DEPEND="" +S="${WORKDIR}" + +pkg_nofetch() { + einfo "Go to ${HOMEPAGE}" + einfo "and download ${SRC_URI}" + einfo "Choose the Option 2 section when downloading the file." +} + +src_unpack() { + sh "${DISTDIR}/${A}" --accept-sla || die "unpack failed" +} + +src_install() { + DIR="/opt/SunStudioExpress" + + dodir /opt + cp -r sunstudioceres "${D}"${DIR} + + # Set SUNW_NO_UPDATE_NOTIFY to anything but false to disable + # writes to /root/.sunstudio + # These writes break the sandbox when building anything with Sun + # compilers + cat << EOF >> "${T}"/envd +ROOTPATH="${DIR}/bin" +PATH="${DIR}/bin" +MANPATH="${DIR}/man" +SUNW_NO_UPDATE_NOTIFY="true" +EOF + + newenvd "${T}"/envd 05${PN} +} |