diff options
author | Tilman Klar <phoenix@gentoo.org> | 2002-11-28 17:54:19 +0000 |
---|---|---|
committer | Tilman Klar <phoenix@gentoo.org> | 2002-11-28 17:54:19 +0000 |
commit | 1571dd12f6de6f36fba75e208a8dd7b32cc3281e (patch) | |
tree | a42b3b3233d3ce9d39876bdbfa18252fca0d0ad1 /app-doc | |
parent | Removed wine(x)-doc. This is not needed anymore. (diff) | |
download | gentoo-2-1571dd12f6de6f36fba75e208a8dd7b32cc3281e.tar.gz gentoo-2-1571dd12f6de6f36fba75e208a8dd7b32cc3281e.tar.bz2 gentoo-2-1571dd12f6de6f36fba75e208a8dd7b32cc3281e.zip |
Removed wine(x)-doc. This is not needed anymore.
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/winex-doc/winex-doc-20020511.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/app-doc/winex-doc/winex-doc-20020511.ebuild b/app-doc/winex-doc/winex-doc-20020511.ebuild deleted file mode 100644 index 438904601eef..000000000000 --- a/app-doc/winex-doc/winex-doc-20020511.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/winex-doc/winex-doc-20020511.ebuild,v 1.4 2002/11/28 17:13:22 gerk Exp $ - -S=${WORKDIR}/wine -DESCRIPTION="WineX is a distribution of Wine with enhanced DirectX for gaming" -SRC_URI="ftp:/www.ibiblio.org/gentoo/distfiles/winex-$PV.tar.bz2" -HOMEPAGE="http://www.transgaming.com/" - -SLOT="0" -LICENSE="Aladdin" -KEYWORDS="x86 -ppc" - -DEPEND="virtual/x11" - -src_compile() { - - cd ${S} - local myconf - - use opengl && myconf="--enable-opengl" || myconf="--disable-opengl" - [ -z $DEBUG ] && myconf="${myconf} --disable-trace --disable-debug" || myconf="${myconf} --enable-trace --enable-debug" - # there's no configure flag for cups, it's supposed to be autodetected - - # the folks at #winehq were really angry about custom optimization - export CFLAGS="" - export CXXFLAGS="" - - econf \ - --exec_prefix=/usr/winex \ - --sysconfdir=/etc/winex \ - --enable-curses \ - ${myconf} || die - - cd ${S}/programs/winetest - cp Makefile 1 - sed -e 's:wine.pm:include/wine.pm:' 1 > Makefile - - cd ${S} - make manpages || die - -} - -src_install () { - - cd ${S}/documentation - DESTTREE=/usr/winex doman man3w/* - # sgml was being filtered without -a sgml - dohtml -a sgml *.sgml - - insinto /etc/env.d - doins ${FILESDIR}/81winex-doc - -} - |