blob: 274952046832f33edc7edd89c3c0b0046c7a8b68 (
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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit eutils qmake-utils
DESCRIPTION="Opensource school/high-school/university timetable scheduling software"
HOMEPAGE="http://lalescu.ro/liviu/fet/"
SRC_URI="http://lalescu.ro/liviu/fet/download/fet-5.30.3.tar.bz2"
LICENSE="AGPL3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtprintsupport:5
dev-qt/qtwidgets:5"
RDEPEND="${DEPEND}"
src_configure () {
eqmake5 ${PN}.pro
}
src_install () {
emake INSTALL_ROOT=${D} install || die
}
|