diff options
author | Luis Francisco Araujo <araujo@gentoo.org> | 2008-06-09 17:58:06 +0000 |
---|---|---|
committer | Luis Francisco Araujo <araujo@gentoo.org> | 2008-06-09 17:58:06 +0000 |
commit | 5df69c61ce318259ee2b8f6d2a325a484ff982c8 (patch) | |
tree | 18127c1e739bdd884cd91ac67c59555a5dd41018 /dev-lang | |
parent | Adding new version. Solving bug #196984 (diff) | |
download | gentoo-2-5df69c61ce318259ee2b8f6d2a325a484ff982c8.tar.gz gentoo-2-5df69c61ce318259ee2b8f6d2a325a484ff982c8.tar.bz2 gentoo-2-5df69c61ce318259ee2b8f6d2a325a484ff982c8.zip |
Adding new image version.
(Portage version: 2.1.5.3)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/squeak-basicimage/ChangeLog | 10 | ||||
-rw-r--r-- | dev-lang/squeak-basicimage/squeak-basicimage-3.10.ebuild | 46 |
2 files changed, 54 insertions, 2 deletions
diff --git a/dev-lang/squeak-basicimage/ChangeLog b/dev-lang/squeak-basicimage/ChangeLog index be6556706f06..c1be095f5ca3 100644 --- a/dev-lang/squeak-basicimage/ChangeLog +++ b/dev-lang/squeak-basicimage/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-lang/squeak-basicimage -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/squeak-basicimage/ChangeLog,v 1.8 2007/02/22 00:12:19 peper Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/squeak-basicimage/ChangeLog,v 1.9 2008/06/09 17:58:06 araujo Exp $ + +*squeak-basicimage-3.10 (09 Jun 2008) + + 09 Jun 2008; Luis F. Araujo <araujo@gentoo.org> + +squeak-basicimage-3.10.ebuild: + Adding new image version. 22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/dev-lang/squeak-basicimage/squeak-basicimage-3.10.ebuild b/dev-lang/squeak-basicimage/squeak-basicimage-3.10.ebuild new file mode 100644 index 000000000000..64016bdc1afc --- /dev/null +++ b/dev-lang/squeak-basicimage/squeak-basicimage-3.10.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/squeak-basicimage/squeak-basicimage-3.10.ebuild,v 1.1 2008/06/09 17:58:06 araujo Exp $ + +MY_P="Squeak${PV}-7159" +DESCRIPTION="Squeak basic image file" +HOMEPAGE="http://www.squeak.org/" +SRC_URI="http://ftp.squeak.org/${PV}/${MY_P}-basic.zip + http://ftp.squeak.org/${PV}/SqueakV39.sources.gz" + +LICENSE="Apple" +SLOT="3.10" +KEYWORDS="~x86" +IUSE="" +PROVIDE="virtual/squeak-image" + +DEPEND="app-arch/unzip" +RDEPEND="!dev-lang/squeak-fullimage" + +S=${WORKDIR} + +src_compile() { + einfo "Compressing image/changes files." + gzip ${MY_P}-basic.image + gzip ${MY_P}-basic.changes + einfo "done." +} + +src_install() { + einfo 'Installing Image/Sources/Changes files.' + insinto /usr/lib/squeak + # install full image and changes file. + doins ${MY_P}-basic.image.gz + doins ${MY_P}-basic.changes.gz + # create symlinks to the changes and image files. + dosym "/usr/lib/squeak/${MY_P}-basic.changes.gz" \ + /usr/lib/squeak/squeak.changes.gz + dosym "/usr/lib/squeak/${MY_P}-basic.image.gz" \ + /usr/lib/squeak/squeak.image.gz + # install sources + doins SqueakV39.sources +} + +pkg_postinst() { + elog "Squeak ${PV} image, changes and sources files installed in /usr/lib/squeak" +} |