Gentoo Archives: gentoo-commits

From: "Luca Barbato (lu_zero)" <lu_zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/lives: lives-1.0.0.ebuild ChangeLog
Date: Sat, 05 Sep 2009 15:22:38
Message-Id: E1Mjx63-0007QP-Fg@stork.gentoo.org
1 lu_zero 09/09/05 15:22:35
2
3 Modified: ChangeLog
4 Added: lives-1.0.0.ebuild
5 Log:
6 Version Bump
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.28 media-video/lives/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/lives/ChangeLog?rev=1.28&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/lives/ChangeLog?rev=1.28&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/lives/ChangeLog?r1=1.27&r2=1.28
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/lives/ChangeLog,v
19 retrieving revision 1.27
20 retrieving revision 1.28
21 diff -u -r1.27 -r1.28
22 --- ChangeLog 13 Jun 2008 21:14:05 -0000 1.27
23 +++ ChangeLog 5 Sep 2009 15:22:35 -0000 1.28
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-video/lives
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/lives/ChangeLog,v 1.27 2008/06/13 21:14:05 yngwin Exp $
28 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-video/lives/ChangeLog,v 1.28 2009/09/05 15:22:35 lu_zero Exp $
30 +
31 +*lives-1.0.0 (05 Sep 2009)
32 +
33 + 05 Sep 2009; Luca Barbato <lu_zero@g.o> +lives-1.0.0.ebuild:
34 + Version Bump
35
36 *lives-0.9.8.12 (13 Jun 2008)
37
38
39
40
41 1.1 media-video/lives/lives-1.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/lives/lives-1.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/lives/lives-1.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lives-1.0.0.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-video/lives/lives-1.0.0.ebuild,v 1.1 2009/09/05 15:22:35 lu_zero Exp $
51
52 inherit flag-o-matic
53
54 MY_P="LiVES-${PV}"
55 DESCRIPTION="LiVES is a Video Editing System"
56 HOMEPAGE="http://lives.sf.net"
57 SRC_URI="http://www.xs4all.nl/~salsaman/lives/current/${MY_P}.tar.bz2"
58 # sf.net only has rpms for this version
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~x86 ~ppc ~amd64"
62 IUSE="matroska ogg theora libvisual nls" #sdl jack dv"
63 DEPEND=">=media-video/mplayer-0.90-r2
64 >=media-gfx/imagemagick-5.5.6
65 >=dev-lang/perl-5.8.0-r12
66 >=x11-libs/gtk+-2.2.1
67 media-libs/libsdl
68 >=media-video/ffmpeg-0.4.8
69 >=media-libs/jpeg-6b-r3
70 >=media-sound/sox-12.17.3-r3
71 virtual/cdrtools
72 theora? ( media-libs/libtheora )
73 >=dev-lang/python-2.3.4
74 matroska? ( media-video/mkvtoolnix
75 media-libs/libmatroska )
76 ogg? ( media-sound/ogmtools )
77 >=media-video/mjpegtools-1.6.2
78 libvisual? ( media-libs/libvisual )
79 media-sound/jack-audio-connection-kit
80 sys-libs/libavc1394"
81
82 src_unpack() {
83 unpack ${A}
84 # hardcoding -03 is wrong!
85 sed -i -e "s:-O3::g" \
86 "${S}"/{,src,lives-plugins,lives-plugins/plugins/playback/video,lives-plugins/weed-plugins}/Makefile*
87 }
88
89 src_compile() {
90 econf \
91 $(use_enable libvisual) \
92 $(use_enable nls) \
93 || die "configure failed"
94 emake || die "make failed"
95 }
96
97 src_install() {
98 dodir /usr/share/pixmaps
99 dodir /usr/share/applications
100 make DESTDIR="${D}" install || die
101 dodoc AUTHORS FEATURES GETTING.STARTED
102 }