blob: 829e15d5cec4ab2d56f3df97b2d1d965af6a053d (
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
32
33
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="ATS Programming Language"
HOMEPAGE="http://www.ats-lang.org"
SRC_URI="http://downloads.sourceforge.net/project/ats-lang/ats-lang/anairiats-${PV}/${PN}-lang-anairiats-${PV}.tgz"
SLOT="0"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
dev-libs/glib
x11-libs/gtk+:2
sys-libs/ncurses
dev-libs/gmp
dev-libs/libpcre
virtual/opengl
media-libs/libsdl
dev-libs/boehm-gc
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
S="${WORKDIR}"/ats-lang-anairiats-${PV}
src_compile() {
emake -j1
}
|