blob: a32ab32d373f1964c14f8ad0308b25caf018958e (
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
28
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/mowitz/mowitz-0.2.1.ebuild,v 1.12 2004/06/24 22:29:18 agriffis Exp $
S=${WORKDIR}/Mowitz-${PV}
SRC_URI="http://siag.nu/pub/mowitz/Mowitz-${PV}.tar.gz"
HOMEPAGE="http://siag.nu/mowitz/"
DESCRIPTION="Mowitz - more widgets library"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc ~ppc"
IUSE=""
DEPEND="virtual/x11"
#>=media-libs/t1lib-1.0.1"
src_compile() {
econf --with-xawm=Xaw || die "Configure broke"
# --with-t1lib \
emake || die "Make broke"
}
src_install() {
make DESTDIR=${D} install
}
|