blob: d0a044b53a11fbff414cabaf22b1e6deb462ed90 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/moto4lin/moto4lin-0.3_p20051125.ebuild,v 1.3 2006/01/09 14:21:26 caleb Exp $
DESCRIPTION="Moto4lin is file manager and seem editor for Motorola P2K phones"
HOMEPAGE="http://moto4lin.sourceforge.net/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/libusb
=x11-libs/qt-3*"
src_compile() {
# We need this addwrite since the uic program tries to create
# locks in there :/
addwrite "${ROOT}/usr/qt/3/etc/settings"
${QTDIR}/bin/qmake QMAKE=${QTDIR}/bin/qmake
make || die "make failed"
}
src_install() {
make INSTALL_ROOT=${D} install || die "make install failed"
dodoc Changelog README
}
|