blob: 7d26e80c1bf0dee36a0af6c86be19ae7d43e3b9d (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
WX_GTK_VER="2.8"
inherit eutils subversion wxwidgets
DESCRIPTION="Advanced SSA/ASS subtitle editor"
HOMEPAGE="http://malakith.net/aegiwiki/Main_Page"
SRC_URI=""
ESVN_REPO_URI="https://spaceboyz.net/svn/${PN}/trunk/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="alsa debug +ffmpeg lua openal perl pulseaudio spell ruby"
RDEPEND="=x11-libs/wxGTK-2.8*[opengl]
media-libs/libass
media-libs/fontconfig
media-libs/freetype
alsa? ( media-libs/alsa-lib )
pulseaudio? ( media-sound/pulseaudio )
openal? ( media-libs/openal )
perl? ( dev-lang/perl )
ruby? ( dev-lang/ruby )
lua? ( dev-lang/lua )
spell? ( app-text/hunspell )
ffmpeg? ( media-video/ffmpeg )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
media-gfx/imagemagick
dev-libs/glib"
src_configure() {
# The provided autogen script executes configure too
# I'm using it instead of autotools because it also converts
# some image files and do some other stuff.
./autogen.sh --with-libass \
$(use_with alsa) \
--without-portaudio \
$(use_with pulseaudio) \
$(use_with openal) \
$(use_with lua) \
$(use_with ruby) \
$(use_with perl) \
$(use_with ffmpeg) \
$(use_with spell hunspell) \
$(use_enable debug) || die "autogen failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
doicon "${FILESDIR}"/${PN}.png
make_desktop_entry "${PN}" "Aegisub" "${PN}" "AudioVideo;Video;"
}
|