blob: 2046076309aff6fcc05b37fae75fe913228e90fc (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/cinepaint/cinepaint-0.18.ebuild,v 1.2 2004/06/25 00:38:08 agriffis Exp $
DESCRIPTION="motion picture editing tool used for painting and retouching of movies"
SRC_URI="mirror://sourceforge/cinepaint/${P}.tar.gz"
HOMEPAGE="http://cinepaint.sourceforge.net/"
SLOT="0"
KEYWORDS="x86"
LICENSE="GPL-2"
IUSE="png zlib"
DEPEND="=x11-libs/gtk+-1*
png? ( >=media-libs/libpng-1.2 )
zlib? ( sys-libs/zlib )
media-libs/tiff
media-libs/jpeg"
src_compile(){
econf || die
emake || die
}
src_install(){
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog COPYING* README* NEWS
}
|