blob: c5c529643e0cd31536be6d79b61e49591db41c9a (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="Synfig: Film-Quality Vector Animation (main UI)"
HOMEPAGE="http://www.synfig.com/"
SRC_URI="mirror://sourceforge/synfig/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=sys-devel/libtool-1.3.5
>=dev-cpp/gtkmm-2.4.0
>=dev-libs/libsigc++-2.0
>=media-gfx/synfig-${PV}"
RDEPEND="${DEPEND}"
src_compile() {
econf || die "Configure failed!"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed!"
}
|