blob: 98e6ceea68a85ab140da056ece5b285c4db79a31 (
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
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/qtparted/qtparted-0.4.4-r1.ebuild,v 1.7 2008/07/28 21:23:23 carlo Exp $
EAPI=1
inherit qt3 multilib
DESCRIPTION="nice Qt partition tool for Linux"
HOMEPAGE="http://qtparted.sourceforge.net/"
SRC_URI="mirror://sourceforge/qtparted/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
DEPEND="x11-libs/qt:3
>=sys-apps/parted-1.6.7
>=sys-fs/e2fsprogs-1.33
>=sys-fs/xfsprogs-2.3.9
>=sys-fs/jfsutils-1.1.2
>=sys-fs/ntfsprogs-1.7.1"
RDEPEND="${DEPEND}
x11-libs/gksu"
src_compile() {
local myconf="--disable-reiserfs
--enable-labels
--with-qt-libraries=${QTDIR}/$(get_libdir)"
econf ${myconf} || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc doc/README doc/README.Debian doc/TODO.txt doc/BUGS doc/DEVELOPER-FAQ
}
|