diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 00:00:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 00:00:07 +0000 |
commit | 002da5b9a3f6857de8309634b47f092640b31425 (patch) | |
tree | 81cebb382ccaf35e1fc8fc3571ac7e096db45f3f /app-emulation/winex-cvs | |
parent | Changed mkdir ${D} to dodir ${D} (diff) | |
download | gentoo-2-002da5b9a3f6857de8309634b47f092640b31425.tar.gz gentoo-2-002da5b9a3f6857de8309634b47f092640b31425.tar.bz2 gentoo-2-002da5b9a3f6857de8309634b47f092640b31425.zip |
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'app-emulation/winex-cvs')
-rw-r--r-- | app-emulation/winex-cvs/winex-cvs-2.0.ebuild | 7 | ||||
-rw-r--r-- | app-emulation/winex-cvs/winex-cvs-2.1.ebuild | 8 |
2 files changed, 7 insertions, 8 deletions
diff --git a/app-emulation/winex-cvs/winex-cvs-2.0.ebuild b/app-emulation/winex-cvs/winex-cvs-2.0.ebuild index 61333656203d..6d9aa7d5fcc0 100644 --- a/app-emulation/winex-cvs/winex-cvs-2.0.ebuild +++ b/app-emulation/winex-cvs/winex-cvs-2.0.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/winex-cvs/winex-cvs-2.0.ebuild,v 1.5 2002/10/24 23:23:44 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winex-cvs/winex-cvs-2.0.ebuild,v 1.6 2002/11/29 23:59:37 vapier Exp $ IUSE="cups opengl" @@ -14,7 +14,6 @@ IUSE="cups opengl" # You can find more branches on # http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/winex/wine/ - ECVS_SERVER="cvs.winex.sourceforge.net:/cvsroot/winex" ECVS_MODULE="wine" ECVS_BRANCH=${PN/cvs/}${PV/./-} @@ -85,7 +84,7 @@ src_install () { # Creates /usr/lib/winex-cvs/.data with fake_windows in it # This is needed for our new winex-cvs wrapper script - mkdir ${D}/usr/lib/winex-cvs/.data + dodir /usr/lib/winex-cvs/.data pushd ${D}/usr/lib/winex-cvs/.data tar jxvf ${FILESDIR}/${PN}-fake_windows.tar.bz2 popd @@ -95,7 +94,7 @@ src_install () { cp ${S}/documentation/samples/config ${D}/usr/lib/winex-cvs/.data/config cp ${WORKDIR}/wine/winedefault.reg ${D}/usr/lib/winex-cvs/.data/winedefault.reg # Install the wrapper script - mkdir ${D}/usr/bin + dodir /usr/bin cp ${FILESDIR}/${PN}-winex ${D}/usr/bin/winex-cvs cp ${FILESDIR}/${PN}-regedit ${D}/usr/bin/regedit-winex-cvs diff --git a/app-emulation/winex-cvs/winex-cvs-2.1.ebuild b/app-emulation/winex-cvs/winex-cvs-2.1.ebuild index d86fa6e0d65c..a7d2110b4593 100644 --- a/app-emulation/winex-cvs/winex-cvs-2.1.ebuild +++ b/app-emulation/winex-cvs/winex-cvs-2.1.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/winex-cvs/winex-cvs-2.1.ebuild,v 1.5 2002/10/24 23:23:44 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winex-cvs/winex-cvs-2.1.ebuild,v 1.6 2002/11/30 00:00:07 vapier Exp $ IUSE="cups opengl" @@ -73,7 +73,7 @@ src_compile() { cd programs && emake || die "emake died" } -src_install () { +src_install() { local WINEXMAKEOPTS="prefix=${D}/usr/lib/winex-cvs" # Installs winex to /usr/lib/winex-cvs @@ -85,7 +85,7 @@ src_install () { # Creates /usr/lib/winex-cvs/.data with fake_windows in it # This is needed for our new winex-cvs wrapper script - mkdir ${D}/usr/lib/winex-cvs/.data + dodir /usr/lib/winex-cvs/.data pushd ${D}/usr/lib/winex-cvs/.data tar jxvf ${FILESDIR}/${PN}-fake_windows.tar.bz2 popd @@ -95,7 +95,7 @@ src_install () { cp ${S}/documentation/samples/config ${D}/usr/lib/winex-cvs/.data/config cp ${WORKDIR}/wine/winedefault.reg ${D}/usr/lib/winex-cvs/.data/winedefault.reg # Install the wrapper script - mkdir ${D}/usr/bin + dodir /usr/bin cp ${FILESDIR}/${PN}-winex ${D}/usr/bin/winex-cvs cp ${FILESDIR}/${PN}-regedit ${D}/usr/bin/regedit-winex-cvs |