blob: c64cf0028a2cff7a164b35be16ce06d773a6b616 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Holger Brueckner <darks@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-util/uml/uml-1.0.1.ebuild,v 1.3 2002/05/27 17:27:38 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="KDE 2.2 UML Drawing Utility"
SRC_URI="mirror://sourceforge/uml/${P}.tar.gz"
HOMEPAGE="http://uml.sourceforge.net"
RDEPEND=">=kde-base/kdebase-2.2"
DEPEND="${RDEPEND}
virtual/glibc"
src_compile() {
./configure --disable-debug --mandir=${D}/usr/share/man || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|