diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-12-11 00:18:19 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-12-11 00:18:19 +0000 |
commit | 8af2206a0358bb9c8b76717c6352caa4dd93b614 (patch) | |
tree | 0340efa980f83a17004dee9633014bbf8d788520 /app-emulation/winesetuptk | |
parent | new version (diff) | |
download | gentoo-2-8af2206a0358bb9c8b76717c6352caa4dd93b614.tar.gz gentoo-2-8af2206a0358bb9c8b76717c6352caa4dd93b614.tar.bz2 gentoo-2-8af2206a0358bb9c8b76717c6352caa4dd93b614.zip |
version bump
Diffstat (limited to 'app-emulation/winesetuptk')
-rw-r--r-- | app-emulation/winesetuptk/ChangeLog | 9 | ||||
-rw-r--r-- | app-emulation/winesetuptk/files/digest-winesetuptk-0.6.0b-r3 | 1 | ||||
-rw-r--r-- | app-emulation/winesetuptk/winesetuptk-0.6.0b-r3.ebuild | 62 |
3 files changed, 71 insertions, 1 deletions
diff --git a/app-emulation/winesetuptk/ChangeLog b/app-emulation/winesetuptk/ChangeLog index 62146f1b8aff..1b25ad539f10 100644 --- a/app-emulation/winesetuptk/ChangeLog +++ b/app-emulation/winesetuptk/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-emulation/winesetuptk # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-emulation/winesetuptk/ChangeLog,v 1.6 2002/09/04 06:38:14 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winesetuptk/ChangeLog,v 1.7 2002/12/11 00:18:19 seemant Exp $ + +*winesetuptk-0.6.0b-r3 (10 Dec 2002) + + 10 Dec 2002; Seemant Kulleen <seemant@gentoo.org> + winesetuptk-0.6.0b-r3.ebuild files/digest-winesetuptk-0.6.0b-r3 : + + Version bump to Debian unstable's latest (-1.1) *winesetuptk-0.6.0b-r2 (19 August 2002) diff --git a/app-emulation/winesetuptk/files/digest-winesetuptk-0.6.0b-r3 b/app-emulation/winesetuptk/files/digest-winesetuptk-0.6.0b-r3 new file mode 100644 index 000000000000..dae63e6fcb26 --- /dev/null +++ b/app-emulation/winesetuptk/files/digest-winesetuptk-0.6.0b-r3 @@ -0,0 +1 @@ +MD5 f411f750113ea58b06c5e68f1c6e7007 winesetuptk_0.6.0b-1.1.tar.gz 6810768 diff --git a/app-emulation/winesetuptk/winesetuptk-0.6.0b-r3.ebuild b/app-emulation/winesetuptk/winesetuptk-0.6.0b-r3.ebuild new file mode 100644 index 000000000000..5d6d26dc21b6 --- /dev/null +++ b/app-emulation/winesetuptk/winesetuptk-0.6.0b-r3.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winesetuptk/winesetuptk-0.6.0b-r3.ebuild,v 1.1 2002/12/11 00:18:19 seemant Exp $ + +MY_P1=tcltk-${P} +MY_P=${P/-/_}-1.1 +S=${WORKDIR}/${P} + +DESCRIPTION="Setup tool for WiNE adapted from Codeweavers by Debian" +SRC_URI="http://ftp.debian.org/debian/pool/main/w/winesetuptk/${MY_P}.tar.gz" +HOMEPAGE="http://packages.debian.org/unstable/otherosfs/winesetuptk.html" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86 -ppc" + +DEPEND="virtual/x11" + +src_unpack() { + + unpack ${MY_P}.tar.gz + cd ${S} + + tar zxf ${MY_P1}.tar.gz + tar zxf ${P}.tar.gz + +} + +src_compile() { + + cd ${S}/${MY_P1} + ./build.sh + + cd ${S}/${P} + + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var/lib \ + --sysconfdir=/etc/wine \ + --enable-curses \ + --with-tcltk=${S}/${MY_P1} \ + --with-launcher=/usr/bin \ + --with-exe=/usr/bin \ + --with-doc=/usr/share/doc/${P} || die "configure failed" + + make || die "make failed" + +} + +src_install () { + + cd ${S}/${P} + make \ + PREFIX_LAUNCHER=${D}/usr/bin \ + PREFIX_EXE=${D}/usr/bin \ + PREFIX_DOC=${D}/usr/share/doc/${P} \ + install || die + + dodoc doc/* +} |