diff options
author | 2001-08-31 13:40:32 +0000 | |
---|---|---|
committer | 2001-08-31 13:40:32 +0000 | |
commit | 74131bc27e742df1c3bbda65146b098ce6e88b09 (patch) | |
tree | de2c21703d3ce551a985a5be0ac7fcde17615846 /app-emulation/wine | |
parent | new modutils (diff) | |
download | gentoo-2-74131bc27e742df1c3bbda65146b098ce6e88b09.tar.gz gentoo-2-74131bc27e742df1c3bbda65146b098ce6e88b09.tar.bz2 gentoo-2-74131bc27e742df1c3bbda65146b098ce6e88b09.zip |
Finally, a new snapshot of wine. This ebuild does not include winesetuptk.
Diffstat (limited to 'app-emulation/wine')
-rw-r--r-- | app-emulation/wine/files/digest-wine-20010824 | 1 | ||||
-rw-r--r-- | app-emulation/wine/wine-20010824.ebuild | 64 |
2 files changed, 65 insertions, 0 deletions
diff --git a/app-emulation/wine/files/digest-wine-20010824 b/app-emulation/wine/files/digest-wine-20010824 new file mode 100644 index 000000000000..89ca7fff3235 --- /dev/null +++ b/app-emulation/wine/files/digest-wine-20010824 @@ -0,0 +1 @@ +MD5 95692d6539a756162a8bccb782ed4e14 Wine-20010824.tar.gz diff --git a/app-emulation/wine/wine-20010824.ebuild b/app-emulation/wine/wine-20010824.ebuild new file mode 100644 index 000000000000..dbdc4de70f8c --- /dev/null +++ b/app-emulation/wine/wine-20010824.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20010824.ebuild,v 1.1 2001/08/31 13:40:32 danarmak Exp $ + +A="Wine-${PV}.tar.gz" #winesetuptk-${WSV}.tar.gz" +S=${WORKDIR}/${P} +DESCRIPTION="Wine is a free implementation of Windows on Unix." +SRC_URI="ftp://metalab.unc.edu/pub/Linux/ALPHA/wine/development/${A}" + #http://twine.codeweavers.com/~mpilka/winesetuptk/winesetuptk-${WSV}.tar.gz" +HOMEPAGE="http://www.winehq.com/" + #http://wine.codeweavers.com/winesetuptk.shtml" + +# need to add: db2html, db2ps, db2pdf for building the docs +DEPEND="virtual/glibc + virtual/x11 + sys-devel/gcc + sys-devel/flex + dev-util/yacc + opengl? ( virtual/opengl ) + >=sys-libs/ncurses-5.2 + net-print/cups + >=media-libs/freetype-2.0.0" + +src_compile() { + + cd ${S} + local myconf + + if [ "`use opengl`" ] + then + myconf="--enable-opengl" + else + myconf="--disable-opengl" + fi + + if [ -z $DEBUG ] + then + myconf="$myconf --disable-trace --disable-debug" + else + myconf="$myconf --enable-trace --enable-debug" + fi + + ./configure --prefix=/opt/wine --sysconfdir=/etc/opt/wine \ + --infodir=/opt/info --mandir=/opt/man \ + --host=${CHOST} --enable-curses ${myconf} || die + + make depend || die + make || die + +} + +src_install () { + + make prefix=${D}/opt/wine install || die + insinto /etc/opt/wine + newins ${FILESDIR}/wine.conf config + dodoc ANNOUNCE AUTHORS BUGS ChangeLog DEVELOPERS-HINTS LICENSE README WARRANTY + + insinto /etc/env.d + newins ${FILESDIR}/wine.env 90wine + +} + |