Gentoo Archives: gentoo-commits

From: "Daniel Pielmeier (billie)" <billie@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/clipgrab: ChangeLog clipgrab-2.0_beta2-r1.ebuild
Date: Sun, 21 Jun 2009 12:31:34
Message-Id: E1MIMCq-0003ES-Qv@stork.gentoo.org
1 billie 09/06/21 12:31:32
2
3 Modified: ChangeLog
4 Added: clipgrab-2.0_beta2-r1.ebuild
5 Log:
6 Revision bump. Adding desktop entry.
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.5 net-misc/clipgrab/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/clipgrab/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/clipgrab/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/clipgrab/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/clipgrab/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 13 Feb 2009 21:52:57 -0000 1.4
23 +++ ChangeLog 21 Jun 2009 12:31:32 -0000 1.5
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-misc/clipgrab
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/clipgrab/ChangeLog,v 1.4 2009/02/13 21:52:57 yngwin Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/clipgrab/ChangeLog,v 1.5 2009/06/21 12:31:32 billie Exp $
29 +
30 +*clipgrab-2.0_beta2-r1 (21 Jun 2009)
31 +
32 + 21 Jun 2009; Pielmeier Daniel <billie@g.o>
33 + +clipgrab-2.0_beta2-r1.ebuild:
34 + Revision bump. Adding desktop entry.
35
36 13 Feb 2009; Ben de Groot <yngwin@g.o> clipgrab-2.0_beta2:
37 Fix Qt dependency
38
39
40
41 1.1 net-misc/clipgrab/clipgrab-2.0_beta2-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/clipgrab/clipgrab-2.0_beta2-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/clipgrab/clipgrab-2.0_beta2-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: clipgrab-2.0_beta2-r1.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/net-misc/clipgrab/clipgrab-2.0_beta2-r1.ebuild,v 1.1 2009/06/21 12:31:32 billie Exp $
51
52 EAPI=1
53 inherit eutils qt4 versionator
54
55 MY_PV=$(replace_version_separator 2 '-' )
56
57 DESCRIPTION="Download from various internet video services like Youtube etc."
58 HOMEPAGE="http://clipgrab.de"
59 SRC_URI="http://${PN}.de/download/${PN}-${MY_PV}_src.tar.gz"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~sparc ~x86"
64 IUSE="debug"
65
66 DEPEND="x11-libs/qt-gui:4"
67 RDEPEND="x11-misc/xdg-utils
68 media-video/ffmpeg
69 ${DEPEND}"
70
71 S="${WORKDIR}"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"/src
76 use debug || echo -e "\nDEFINES += QT_NO_DEBUG_OUTPUT" >> src.pro
77 }
78
79 src_compile() {
80 cd "${S}"/src
81 eqmake4 src.pro
82 emake || die "emake failed"
83 }
84
85 src_install() {
86 # upstream's Makefile has no install target :(
87 cd "${S}"
88 dobin bin/clipgrab || die "dobin failed"
89 dodoc src/README || die "dodoc failed"
90
91 insinto /usr/share/pixmaps
92 newins src/img/icon.png clipgrab.png
93 make_desktop_entry clipgrab Clipgrab "" "Qt;Video;AudioVideo"
94 }
95
96 # vim:ts=4