Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/dosemu: ChangeLog dosemu-1.4.0.1.ebuild
Date: Thu, 27 Mar 2008 21:03:26
Message-Id: E1JezFq-0006RP-0h@stork.gentoo.org
1 hanno 08/03/27 21:03:22
2
3 Modified: ChangeLog
4 Added: dosemu-1.4.0.1.ebuild
5 Log:
6 dosemu new version
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.48 app-emulation/dosemu/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dosemu/ChangeLog?rev=1.48&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dosemu/ChangeLog?rev=1.48&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dosemu/ChangeLog?r1=1.47&r2=1.48
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emulation/dosemu/ChangeLog,v
19 retrieving revision 1.47
20 retrieving revision 1.48
21 diff -u -r1.47 -r1.48
22 --- ChangeLog 24 Mar 2008 17:18:15 -0000 1.47
23 +++ ChangeLog 27 Mar 2008 21:03:21 -0000 1.48
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emulation/dosemu
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/dosemu/ChangeLog,v 1.47 2008/03/24 17:18:15 coldwind Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/dosemu/ChangeLog,v 1.48 2008/03/27 21:03:21 hanno Exp $
29 +
30 +*dosemu-1.4.0.1 (27 Mar 2008)
31 +
32 + 27 Mar 2008; Hanno Boeck <hanno@g.o> +dosemu-1.4.0.1.ebuild:
33 + Version bump.
34
35 24 Mar 2008; Santiago M. Mola <coldwind@g.o> dosemu-1.4.0.ebuild:
36 amd64 stable
37
38
39
40 1.1 app-emulation/dosemu/dosemu-1.4.0.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dosemu/dosemu-1.4.0.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/dosemu/dosemu-1.4.0.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: dosemu-1.4.0.1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-emulation/dosemu/dosemu-1.4.0.1.ebuild,v 1.1 2008/03/27 21:03:21 hanno Exp $
50
51 inherit flag-o-matic eutils autotools
52
53 P_FD=dosemu-freedos-1.0-bin
54 DESCRIPTION="DOS Emulator"
55 HOMEPAGE="http://www.dosemu.org/"
56 SRC_URI="mirror://sourceforge/dosemu/${P_FD}.tgz
57 mirror://sourceforge/dosemu/${PN}-1.4.0.tgz
58 http://dosemu.sourceforge.net/prereleases/patch-${PV}.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="-* ~amd64 ~x86"
63 IUSE="X svga gpm debug"
64
65 RDEPEND="X? ( x11-libs/libXxf86vm
66 x11-libs/libXau
67 x11-libs/libXdmcp
68 x11-proto/xf86dgaproto
69 x11-apps/xset
70 x11-apps/xlsfonts
71 x11-apps/bdftopcf
72 x11-apps/mkfontdir )
73 svga? ( media-libs/svgalib )
74 gpm? ( sys-libs/gpm )
75 >=sys-libs/slang-1.4"
76
77 DEPEND="${RDEPEND}
78 >=sys-devel/autoconf-2.57"
79 S="${WORKDIR}/${PN}-1.4.0"
80
81 src_unpack() {
82 unpack "${PN}-1.4.0.tgz"
83 cd "${S}"
84
85 epatch "${DISTDIR}/patch-${PV}.gz"
86 epatch "${FILESDIR}"/dosemu-1.3.4-shm.diff
87
88 #eautoreconf || die "autoconf failed"
89 }
90
91 src_compile() {
92 # Has problems with -O3 on some systems
93 replace-flags -O[3-9] -O2
94
95 # Fix compilation on hardened
96 append-flags -fno-pic
97
98 unset KERNEL
99
100 econf `use_with X x` \
101 `use_enable svga svgalib` \
102 `use_enable debug` \
103 `use_with gpm` \
104 --with-fdtarball="${DISTDIR}"/${P_FD}.tgz \
105 --sysconfdir=/etc/dosemu/ \
106 --with-docdir=/usr/share/doc/${PF} || die
107
108 emake || die
109 }
110
111 src_install() {
112 make DESTDIR="${D}" install || die
113 # Don't remove COPYING, see bug #137286
114 dodoc BUGS ChangeLog COPYING NEWS README THANKS || die
115 }
116
117
118
119 --
120 gentoo-commits@l.g.o mailing list