diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-03-25 22:12:48 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-03-25 22:12:48 +0000 |
commit | 64194fec06b52e7b5c21cd3bf667b181e52565c7 (patch) | |
tree | e75d6a928149df077e4123aa9a1903eeb38c0be7 /media-video/cinepaint/cinepaint-0.22.1.ebuild | |
parent | Fix missing quote (diff) | |
download | gentoo-2-64194fec06b52e7b5c21cd3bf667b181e52565c7.tar.gz gentoo-2-64194fec06b52e7b5c21cd3bf667b181e52565c7.tar.bz2 gentoo-2-64194fec06b52e7b5c21cd3bf667b181e52565c7.zip |
Version bump for bug #184657 and add missing deps for bug #205579
(Portage version: 2.1.4.4)
Diffstat (limited to 'media-video/cinepaint/cinepaint-0.22.1.ebuild')
-rw-r--r-- | media-video/cinepaint/cinepaint-0.22.1.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/media-video/cinepaint/cinepaint-0.22.1.ebuild b/media-video/cinepaint/cinepaint-0.22.1.ebuild new file mode 100644 index 000000000000..ab0a9da63825 --- /dev/null +++ b/media-video/cinepaint/cinepaint-0.22.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/cinepaint/cinepaint-0.22.1.ebuild,v 1.1 2008/03/25 22:12:48 aballier Exp $ + +inherit eutils versionator flag-o-matic + +MY_PV=$(replace_version_separator 2 '-') +S=${WORKDIR}/${PN}-${MY_PV} +DESCRIPTION="motion picture editing tool used for painting and retouching of movies" +SRC_URI="mirror://sourceforge/cinepaint/${PN}-${MY_PV}.tar.gz" +HOMEPAGE="http://cinepaint.sourceforge.net/" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +LICENSE="GPL-2" +IUSE="gimpprint png zlib" + +RDEPEND=">=x11-libs/gtk+-2.0 + png? ( >=media-libs/libpng-1.2 ) + zlib? ( sys-libs/zlib ) + gimpprint? ( >=media-gfx/gimp-print-5.0.0 ) + media-libs/openexr + >=media-libs/lcms-1.16 + media-libs/tiff + media-libs/jpeg + x11-libs/fltk + x11-libs/libXmu + x11-libs/libXinerama + x11-libs/libXpm" +DEPEND="${RDEPEND} + dev-util/pkgconfig + x11-proto/xineramaproto" + +src_compile(){ + econf $(use_enable gimpprint print) --enable-gtk2 || die "econf failed" + emake || die "emake failed" +} + +src_install(){ + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog README NEWS +} |