blob: 5e70924b7eb1fa817dd8e872f2db04d83257bec3 (
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
63
64
65
66
67
68
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
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/aegisub/trunk"
ESVN_PROJECT="https://spaceboyz.net/svn/aegisub"
LICENSE="GPL-2"
SLOT=""
KEYWORDS=""
IUSE="alsa debug ffmpeg lua openal perl portaudio pulseaudio spell ruby"
RDEPEND="=x11-libs/wxGTK-2.8*
media-libs/libass
media-libs/fontconfig
media-libs/freetype
alsa? ( media-libs/alsa-lib )
portaudio? ( =media-libs/portaudio-18* )
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"
pkg_setup() {
check_wxuse opengl
}
src_compile() {
# 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 --prefix=/usr \
$(use_with alsa) \
$(use_with 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 "configure failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
doicon "${FILESDIR}"/${PN}.png
make_desktop_entry "${PN}" "Aegisub" "${PN}" "AudioVideo;Video;"
}
|