From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=DMARC_MISSING, MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=4.0.0 Received: from pat.uio.no (pat.uio.no [129.240.130.16]) by chiba.3jane.net (Postfix) with ESMTP id A761DAC385 for ; Sat, 6 Jul 2002 19:42:23 -0500 (CDT) Received: from nommo.uio.no ([129.240.222.179]) by pat.uio.no with esmtp (Exim 2.12 #7) id 17R086-0007Ex-00 for gentoo-dev@gentoo.org; Sun, 7 Jul 2002 02:42:22 +0200 Received: from terjekv by nommo.uio.no with local (Exim 2.12 #1) id 17R086-0002e2-00 for gentoo-dev@gentoo.org; Sun, 7 Jul 2002 02:42:22 +0200 To: gentoo-dev@gentoo.org Subject: Re: [gentoo-dev] UAE (amiga emulator) ebuild. References: <200207011906.15997.wigren@home.se> X-URL: http://terje.kvernes.no/ Organization: do you Gentoo? From: Terje Kvernes Date: 07 Jul 2002 02:42:22 +0200 In-Reply-To: Message-ID: User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: gentoo-dev-admin@gentoo.org Errors-To: gentoo-dev-admin@gentoo.org X-BeenThere: gentoo-dev@gentoo.org X-Mailman-Version: 2.0.6 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux developer list List-Unsubscribe: , List-Archive: X-Archives-Salt: 42919ca9-fe34-4349-b52b-e00d42582bde X-Archives-Hash: 8e821890ee700052fb5c7a284f08d901 I'd be very happy if a few people would look at this before I submit it and see if there are any obvious errors. it would be nice if a few people tested this before I submitted it. ;-) x200 root # cat /usr/portage/app-emulation/uae/uae-0.8.21.ebuild # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.8 2002/05/30 01:54:49 sandymac Exp DESCRIPTION="An amiga emulator" HOMEPAGE="http://www.freiburg.linux.de/~uae/" LICENSE="GPL" if [ `use X` ]; then DEPEND="virtual/x11 gtk? x11-libs/gtk+ media-libs/libsdl" else if [ `use svgalib` ]; then DEPEND="sys-libs/ncurses media-libs/svgalib" else DEPEND="sys-libs/ncurses"; fi fi SRC_URI="ftp://ftp.freiburg.linux.de/pub/uae/sources/develop/${P}.tar.gz" S=${WORKDIR}/${P} src_compile() { myopt=""; if [ `use X` ]; then if [ `use dga` ]; then myopt="--enable-dga"; fi myopt="--with-x $myopt --with-sdl --with-sdl-sound --with-sdl-gfx"; else if [ `use svgalib` ]; then myopt="--with-svgalib --without-sdl --without-x"; else myopt="--with-asciiart --without-sdl --without-svgalib --without-x"; fi fi ./configure \ --host=${CHOST} \ --prefix=/usr \ $myopt || die "./configure failed" emake || die } src_install () { dobin uae readdisk dodoc docs/* dodoc docs/unix/* } -- Terje