Mercurial > hg > portage
annotate dev-util/bouml/bouml-4.4.1.ebuild @ 249:eb2eb7604e50
update digest for Maven 3.0.0 final
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Mon, 04 Oct 2010 19:48:45 +0200 |
parents | 665fb2df350f |
children |
rev | line source |
---|---|
47 | 1 # Copyright 1999-2007 Gentoo Foundation |
2 # Distributed under the terms of the GNU General Public License v2 | |
3 # $Header: /var/cvsroot/gentoo-x86/dev-util/bouml/bouml-3.4.ebuild,v 1.1 2007/12/23 21:27:06 ferdy Exp $ | |
4 | |
5 inherit multilib qt3 | |
6 | |
7 MY_P="${PN}_${PV}" | |
8 | |
9 DESCRIPTION="Free UML 2 tool with code generation" | |
10 HOMEPAGE="http://bouml.free.fr/" | |
11 SRC_URI="http://bouml.free.fr/${MY_P}.tar.gz" | |
12 | |
13 LICENSE="GPL-2" | |
14 SLOT="0" | |
15 KEYWORDS="~amd64 ~x86 ~x86-fbsd" | |
16 IUSE="" | |
17 | |
51
665fb2df350f
bouml uses qt slot dependency now
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
47
diff
changeset
|
18 DEPEND="x11-libs/qt:3" |
47 | 19 RDEPEND="${DEPEND}" |
20 | |
21 S="${WORKDIR}/${MY_P}" | |
22 | |
23 src_compile() { | |
24 find src/ genplugouts/ -type f -name "*.pro" | while read file; do | |
25 local subdir="${file%/*}" | |
26 eqmake3 "${file}" -o "${subdir}"/Makefile | |
27 emake -C "${subdir}" || die "emake failed in ${subdir}" | |
28 done | |
29 } | |
30 | |
31 src_install() { | |
32 emake BOUML_LIB="/usr/$(get_libdir)/bouml" DESTDIR="${D}" install \ | |
33 || die "emake install failed" | |
34 } |