diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-29 23:32:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-29 23:32:09 +0000 |
commit | 7b34c893b304169591db304f7c18edaaedf76d1a (patch) | |
tree | ed9b7ef7b672731d71015cdb345f13a29b618b1b /app-emulation | |
parent | initial import (diff) | |
download | gentoo-2-7b34c893b304169591db304f7c18edaaedf76d1a.tar.gz gentoo-2-7b34c893b304169591db304f7c18edaaedf76d1a.tar.bz2 gentoo-2-7b34c893b304169591db304f7c18edaaedf76d1a.zip |
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/wine/wine-20020804.ebuild | 8 | ||||
-rw-r--r-- | app-emulation/wine/wine-20020904-r1.ebuild | 9 |
2 files changed, 6 insertions, 11 deletions
diff --git a/app-emulation/wine/wine-20020804.ebuild b/app-emulation/wine/wine-20020804.ebuild index 7cb42546c20c..31c0081e6a74 100644 --- a/app-emulation/wine/wine-20020804.ebuild +++ b/app-emulation/wine/wine-20020804.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20020804.ebuild,v 1.5 2002/10/24 23:23:44 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20020804.ebuild,v 1.6 2002/11/29 23:31:23 vapier Exp $ IUSE="opengl arts cups alsa" @@ -25,8 +25,6 @@ DEPEND="virtual/x11 opengl? ( virtual/opengl )" src_compile() { - - cd ${S} local myconf # Fix GetProcessHeap missing symbol as in http://cvs.winehq.com/cvsweb/wine/programs/winhelp/hlp2sgml.c.diff?r1=1.6&r2=1.7 @@ -67,13 +65,13 @@ src_install () { # Creates /usr/lib/wine/.data with fake_windows in it # This is needed for our wine wrapper script - mkdir ${D}/usr/lib/wine/.data + dodir /usr/lib/wine/.data cp -R ${WORKDIR}/fake_windows ${D}/usr/lib/wine/.data cp ${FILESDIR}/${P}-config ${D}/usr/lib/wine/.data/config cp ${WORKDIR}/${P}/winedefault.reg ${D}/usr/lib/wine/.data/winedefault.reg # Install the wrapper script - mkdir ${D}/usr/bin + dodir /usr/bin cp ${FILESDIR}/${P}-wine ${D}/usr/bin/wine cp ${FILESDIR}/${P}-regedit ${D}/usr/bin/regedit-wine diff --git a/app-emulation/wine/wine-20020904-r1.ebuild b/app-emulation/wine/wine-20020904-r1.ebuild index 9d87d03c0ddb..a4c9f41709de 100644 --- a/app-emulation/wine/wine-20020904-r1.ebuild +++ b/app-emulation/wine/wine-20020904-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20020904-r1.ebuild,v 1.4 2002/10/24 23:23:44 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/wine/wine-20020904-r1.ebuild,v 1.5 2002/11/29 23:32:09 vapier Exp $ IUSE="nas arts cups opengl alsa" @@ -26,7 +26,6 @@ DEPEND="virtual/x11 opengl? ( virtual/opengl )" src_compile() { - cd ${S} local myconf use opengl && myconf="--enable-opengl" || myconf="--disable-opengl" @@ -54,23 +53,21 @@ src_compile() { } src_install () { - local WINEMAKEOPTS="prefix=${D}/usr/lib/wine" - cd ${S} make ${WINEMAKEOPTS} install || die cd ${S}/programs make ${WINEMAKEOPTS} install || die # Creates /usr/lib/wine/.data with fake_windows in it # This is needed for our wine wrapper script - mkdir ${D}/usr/lib/wine/.data + dodir /usr/lib/wine/.data cp -R ${WORKDIR}/fake_windows ${D}/usr/lib/wine/.data cp ${FILESDIR}/${P}-config ${D}/usr/lib/wine/.data/config cp ${WORKDIR}/${P}/winedefault.reg ${D}/usr/lib/wine/.data/winedefault.reg # Install the wrapper script - mkdir ${D}/usr/bin + dodir /usr/bin cp ${FILESDIR}/${P}-wine ${D}/usr/bin/wine cp ${FILESDIR}/${P}-regedit ${D}/usr/bin/regedit-wine |