Gentoo Archives: gentoo-dev

From: Per Wigren <wigren@××××.se>
To: gentoo-dev@g.o
Subject: [gentoo-dev] DOSEmu ebuild
Date: Tue, 28 May 2002 00:18:48
Message-Id: 200205280718.37318.wigren@home.se
1 I just looked at the DOSEmu ebuild and saw that it contains LOTS of
2 "errors"... (although it does work at the moment(:
3
4 > DESCRIPTION="DOSEmu 1.1.3 (Developer)"
5 Hmm.. What kind of description is that? :) Something like "DOS Emulator" would
6 be better..
7
8 > src_compile() {
9 > chmod +x $S/base-configure
10 chmod +x base-configure should be enough since we are already in ${S} ..
11
12 >### mitshm will bork ./base-configure entirely, so we disable it here
13 > myflags="--enable-mitshm=yes"
14
15 Hmm.. That doesn't look like disabling it to me, but I want it anyway, so...
16 :)
17
18 >src_install () {
19 > ./install_systemwide -fd /usr/portage/distfiles/dosemu-freedos-bin.tgz -r
20 /var/tmp/portage/${PF}/image
21
22 Should be
23 ./install_systemwide -fd ${DISTDIR}/dosemu-freedos-bin.tgz -r ${D}
24
25 > rm -rf ${D}opt/dosemu/man
26 missing /
27
28 // Wigren

Replies

Subject Author
Re: [gentoo-dev] DOSEmu ebuild Ryan Phillips <rphillips@g.o>