diff options
author | 2003-05-12 20:22:59 +0000 | |
---|---|---|
committer | 2003-05-12 20:22:59 +0000 | |
commit | 7124db606670b1cd6c8b8dd297f4379f81802b9e (patch) | |
tree | 8bebe37d20b4a5ad9c721c0f685e06d370d98a6f /app-emulation | |
parent | Added all ARCHes, marked 1.0.2 stable (diff) | |
download | historical-7124db606670b1cd6c8b8dd297f4379f81802b9e.tar.gz historical-7124db606670b1cd6c8b8dd297f4379f81802b9e.tar.bz2 historical-7124db606670b1cd6c8b8dd297f4379f81802b9e.zip |
Version bump
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/freesci/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/freesci/files/digest-freesci-0.3.4a | 1 | ||||
-rw-r--r-- | app-emulation/freesci/freesci-0.3.4a.ebuild | 33 |
3 files changed, 40 insertions, 1 deletions
diff --git a/app-emulation/freesci/ChangeLog b/app-emulation/freesci/ChangeLog index 7aec08a22f9a..304017116a2c 100644 --- a/app-emulation/freesci/ChangeLog +++ b/app-emulation/freesci/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/freesci # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/freesci/ChangeLog,v 1.4 2003/05/11 11:59:18 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/freesci/ChangeLog,v 1.5 2003/05/12 20:22:59 aliz Exp $ + +*freescsi-0.4.3a (12 May 2003) + + 12 May 2003; Daniel Ahlberg <aliz@gentoo.org> : + Version bump. *freesci-0.3.3 (18 Jul 2002) diff --git a/app-emulation/freesci/files/digest-freesci-0.3.4a b/app-emulation/freesci/files/digest-freesci-0.3.4a new file mode 100644 index 000000000000..444a73ffb197 --- /dev/null +++ b/app-emulation/freesci/files/digest-freesci-0.3.4a @@ -0,0 +1 @@ +MD5 135bcfc64496b0b7f11e756bbb8fdaf9 freesci-0.3.4a.tar.bz2 965754 diff --git a/app-emulation/freesci/freesci-0.3.4a.ebuild b/app-emulation/freesci/freesci-0.3.4a.ebuild new file mode 100644 index 000000000000..aaa66f6c0276 --- /dev/null +++ b/app-emulation/freesci/freesci-0.3.4a.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/freesci/freesci-0.3.4a.ebuild,v 1.1 2003/05/12 20:22:59 aliz Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Sierra script interpreter for your old Sierra adventures" +SRC_URI="http://savannah.nongnu.org/download/freesci/stable.pkg/${PV}/${P}.tar.bz2" +HOMEPAGE="http://freesci.linuxgames.com/" +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" +IUSE="" + +DEPEND="virtual/x11" + +src_compile() { + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man || die "./configure failed" + + emake || die + +} + +src_install () { + + make DESTDIR=${D} install || die + + dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README README.Unix THANKS TODO + +} |