blob: 34618cf9bdb0c12720e78ab0ffdd7e3ae11d0a8b (
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-2002 Gentoo Technologies, Inc.
# 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.4 2002/08/05 09:38:56 seemant 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"
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
}
|