blob: dd3bcf1a240b809eedd46d938e3a9f07df3e04f0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/gnutu/gnutu-2.0.ebuild,v 1.2 2006/01/01 09:48:23 chriswhite Exp $
inherit mono eutils
DESCRIPTION="GNU Student's Timetable for polish users"
HOMEPAGE="http://www.gnutu.org/"
SRC_URI="http://www.gnutu.org/download/sources/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-lang/mono
>=dev-dotnet/gtk-sharp-1.9.5
>=dev-dotnet/glade-sharp-1.9.5"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-event.patch
# lmao :/
rm ${S}/pixmaps/Makefile.am~
}
src_install() {
make install DESTDIR=${D} || die
}
|