summaryrefslogtreecommitdiff
blob: fce7a45df5f04560e349bdcb93ad1970eeaa7cc2 (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit versionator toolchain-funcs multilib

EMULTILIB_PKG="true"

DESCRIPTION="OpenGL video capturing library"
HOMEPAGE="http://neopsis.com/projects/seom"

SRC_URI="http://dbservice.com/ftpdir/tom/seom/trunk/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"

DEPEND=">=dev-lang/yasm-0.6.0"
RDEPEND=""

src_unpack() {
	for ABI in $(get_install_abis); do
		unpack ${A}
		mv "${P}" "${ABI}"
	done
}

src_compile() {
	for ABI in $(get_install_abis); do
		cd "${WORKDIR}/${ABI}"

		econf --prefix="/usr" || die "econf failed"
		emake CC="$(tc-getCC)" $(get_abi_CFLAGS ${ABI}) || die "emake failed"
	done
}

src_install() {
	for ABI in $(get_install_abis); do
		cd "${WORKDIR}/${ABI}"
		emake DESTDIR="${D}" LIBDIR="$(get_abi_LIBDIR ${ABI})" install || die "emake install failed"
	done
}