blob: 3c66c56665af2724394891000aea88b023ea750e (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/basqet/basqet-0.1.2.ebuild,v 1.1 2009/11/14 18:52:39 wired Exp $
EAPI="2"
inherit eutils qt4
DESCRIPTION="Keep your notes, pictures, ideas, and information in Baskets"
HOMEPAGE="http://code.google.com/p/basqet/"
SRC_URI="http://basqet.googlecode.com/files/${P}-src.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/qt-gui:4
x11-libs/qt-xmlpatterns:4"
RDEPEND="${DEPEND}"
src_configure() {
eqmake4 "${PN}".pro PREFIX="${D}/usr" || die "configure failed"
}
src_install() {
emake install || die "install failed"
}
|