Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 541964 | Differences between
and this patch

Collapse All | Expand All

(-)tovid-0.34_p20120123.ebuild (-23 / +15 lines)
Lines 2-50 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/media-video/tovid/tovid-0.34_p20120123.ebuild,v 1.2 2013/09/09 04:43:08 floppym Exp $
3
# $Header: /var/cvsroot/gentoo-x86/media-video/tovid/tovid-0.34_p20120123.ebuild,v 1.2 2013/09/09 04:43:08 floppym Exp $
4
4
5
# svn checkout http://tovid.googlecode.com/svn/trunk/tovid tovid-${PV}
6
# note: see quickrelease file in the top source directory
5
# note: see quickrelease file in the top source directory
7
6
8
EAPI=3
7
EAPI=5
8
PYTHON_COMPAT=( python2_7 )
9
PYTHON_REQ_USE="tk"
10
DISTUTILS_SINGLE_IMPL=1
9
11
10
PYTHON_DEPEND="2:2.7"
12
inherit distutils-r1 gnome2-utils
11
PYTHON_USE_WITH="tk"
12
SUPPORT_PYTHON_ABIS="1"
13
RESTRICT_PYTHON_ABIS="3.*"
14
15
inherit distutils gnome2-utils
16
13
17
DESCRIPTION="A collection of DVD authoring tools"
14
DESCRIPTION="A collection of DVD authoring tools"
18
HOMEPAGE="http://tovid.wikia.com/wiki/Tovid_Wiki"
15
HOMEPAGE="http://tovid.wikia.com/wiki/Tovid_Wiki"
19
SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.gz"
16
SRC_URI="https://github.com/tovid-suite/tovid/releases/download/v0.35.0/tovid-0.35.0.tar.gz"
20
#SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
21
17
22
LICENSE="GPL-2"
18
LICENSE="GPL-2"
23
SLOT="0"
19
SLOT="0"
24
KEYWORDS="~amd64 ~x86"
20
KEYWORDS="~amd64 ~x86"
25
IUSE=""
21
IUSE=""
26
22
27
RDEPEND="app-cdr/cdrdao
23
RDEPEND="app-cdr/dvd+rw-tools
28
	app-cdr/dvd+rw-tools
24
	dev-lang/python
29
	dev-python/pycairo
30
	dev-tcltk/tix
25
	dev-tcltk/tix
31
	|| ( media-gfx/imagemagick[png] media-gfx/graphicsmagick[imagemagick,png] )
26
	|| ( media-gfx/imagemagick[png] media-gfx/graphicsmagick[imagemagick,png] )
32
	media-sound/normalize
27
	media-sound/normalize
33
	>=media-sound/sox-14.3.2
28
	>=media-sound/sox-14.3.2
34
	media-video/dvdauthor
29
	>=media-video/dvdauthor-0.7.1
35
	>=media-video/mjpegtools-2.0.0
30
	>=media-video/mjpegtools-2.0.0
36
	>=media-video/mplayer-1.0_rc4_p20110101
31
	>=media-video/mplayer-1.0_rc4_p20110101
37
	>=media-video/transcode-1.1.5
38
	media-video/vcdimager
39
	sys-devel/bc
32
	sys-devel/bc
40
	virtual/ffmpeg"
33
	virtual/ffmpeg
34
	!media-video/tovid-git"
41
DEPEND="app-text/txt2tags"
35
DEPEND="app-text/txt2tags"
42
36
43
DOCS="AUTHORS ChangeLog README"
37
pkg_setup() {
38
	python-single-r1_pkg_setup
39
}
44
40
45
src_install() {
41
src_install() {
46
	distutils_src_install
42
	distutils-r1_src_install
47
48
	# punt at least .install.log
43
	# punt at least .install.log
49
	find "${ED}" -name '*.log' -exec rm -f {} +
44
	find "${ED}" -name '*.log' -exec rm -f {} +
50
}
45
}
Lines 54-65 Link Here
54
}
49
}
55
50
56
pkg_postinst() {
51
pkg_postinst() {
57
	distutils_pkg_postinst
58
	gnome2_icon_cache_update
52
	gnome2_icon_cache_update
59
}
53
}
60
54
61
pkg_postrm() {
55
pkg_postrm() {
62
	distutils_pkg_postrm
63
	gnome2_icon_cache_update
56
	gnome2_icon_cache_update
64
}
57
}
65

Return to bug 541964