Gentoo Archives: gentoo-commits

From: "Gustavo Felisberto (humpback)" <humpback@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/bouml: bouml-4.6.1.ebuild
Date: Fri, 26 Sep 2008 15:12:01
Message-Id: E1KjEyx-0002XD-8O@stork.gentoo.org
1 humpback 08/09/26 15:11:47
2
3 Added: bouml-4.6.1.ebuild
4 Log:
5 After talking to ferdy I bumped this to lattest release
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.25-tuxonice-r6 i686)
7
8 Revision Changes Path
9 1.1 dev-util/bouml/bouml-4.6.1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bouml/bouml-4.6.1.ebuild?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/bouml/bouml-4.6.1.ebuild?rev=1.1&content-type=text/plain
13
14 Index: bouml-4.6.1.ebuild
15 ===================================================================
16 # Copyright 1999-2008 Gentoo Foundation
17 # Distributed under the terms of the GNU General Public License v2
18 # $Header: /var/cvsroot/gentoo-x86/dev-util/bouml/bouml-4.6.1.ebuild,v 1.1 2008/09/26 15:11:46 humpback Exp $
19
20 EAPI=1
21
22 inherit multilib qt3
23
24 MY_P="${PN}_${PV}"
25
26 DESCRIPTION="Free UML 2 tool with code generation"
27 HOMEPAGE="http://bouml.free.fr/"
28 SRC_URI="http://bouml.free.fr/${MY_P}.tar.gz"
29
30 LICENSE="GPL-2"
31 SLOT="0"
32 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
33 IUSE=""
34
35 DEPEND="x11-libs/qt:3"
36 RDEPEND="${DEPEND}"
37
38 S="${WORKDIR}/${MY_P}"
39
40 src_compile() {
41 find src/ genplugouts/ -type f -name "*.pro" | while read file; do
42 local subdir="${file%/*}"
43 eqmake3 "${file}" -o "${subdir}"/Makefile
44 emake -C "${subdir}" || die "emake failed in ${subdir}"
45 done
46 }
47
48 src_install() {
49 emake BOUML_LIB="/usr/$(get_libdir)/bouml" DESTDIR="${D}" install \
50 || die "emake install failed"
51 }