blob: a8f85e614207312eaa7ae221569e352af0f50bc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Daniel Robbins <drobbins@gentoo.org>
# /space/gentoo/cvsroot/gentoo-x86/sys-apps/mosix-user/mosix-user-1.5.2.ebuild,v 1.4 2001/11/25 02:40:12 drobbins Exp
NV=1.0.9-2
S=${WORKDIR}/icewm-1.0.9
DESCRIPTION="Ice Window Manager"
SRC_URI="prdownloads.sourceforge.net/${PN}/${PN}-${NV}.tar.gz"
HOMEPAGE="www.icewm.org"
DEPEND="virtual/x11"
src_compile(){
./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/X11/icewm || die
emake || die
}
src_install(){
make prefix=${D}/usr DOCDIR=${S}/dummy sysconfdir=${D}/etc/X11/icewm install || die
dodoc BUGS CHANGES COPYING FAQ PLATFORMS README TODO VERSION
docinto html
dodoc doc/*.html
docinto sgml
dodoc doc/*.sgml
}
|