blob: 5fe2c3099321d9385d5e7632546d9ec9def73fbe (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/codeine/codeine-1.0.1.3.ebuild,v 1.2 2006/05/26 21:34:39 flameeyes Exp $
inherit kde multilib versionator toolchain-funcs
S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"
DESCRIPTION="Simple KDE frontend for xine-lib."
HOMEPAGE="http://kde-apps.org/content/show.php?content=17161"
SRC_URI="http://www.methylblue.com/codeine/${PN}-$(replace_version_separator 3 -).tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="media-libs/xine-lib"
DEPEND="${RDEPEND}
dev-util/scons"
need-kde 3.3
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-respect-cc.patch"
}
src_compile() {
local myconf="prefix=/usr"
# Fix multilib issue.
myconf="${myconf} libdir=/usr/$(get_libdir)
qtlibs=${QTDIR}/$(get_libdir)"
local sconsopts=$(echo "${MAKEOPTS}" | sed -e "s/.*\(-j[0-9]\+\).*/\1/")
[[ ${MAKEOPTS/-s/} != ${MAKEOPTS} ]] && sconsopts="${sconsopts} -s"
tc-export CC CXX
scons configure ${myconf} \
|| die "scons configure failed, if you report this please attach ${S}/configure.log"
scons ${sconsopts} || die "scons make failed"
}
src_install() {
DESTDIR="${D}" scons install || die
dodoc README ChangeLog VERSION
}
|