diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-09-07 14:17:50 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-09-07 14:17:50 +0100 |
commit | 4d73932cbd18c77a156fdb4a4b48a8f4a69c2c97 (patch) | |
tree | 794953271a3b1ff3eb3c6d3cdc959537a63910b4 /app-office/fet/fet-5.30.3.ebuild | |
parent | deead60c6c213dfcf58926b13fb01f9ae13759e4 (diff) |
port FET to Gentoo world, as this is the first ebuild for the software
Diffstat (limited to 'app-office/fet/fet-5.30.3.ebuild')
-rw-r--r-- | app-office/fet/fet-5.30.3.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-office/fet/fet-5.30.3.ebuild b/app-office/fet/fet-5.30.3.ebuild new file mode 100644 index 00000000..27495204 --- /dev/null +++ b/app-office/fet/fet-5.30.3.ebuild @@ -0,0 +1,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 +} |