blob: 79d39bf961e4912b95de120900dd9c5c74611fdd (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/iripdb/iripdb-0.1.3b.ebuild,v 1.3 2006/03/19 19:06:05 halcy0n Exp $
inherit eutils flag-o-matic toolchain-funcs
MY_P=${P/iripdb/iRipDB}
S=${WORKDIR}/${PN}
DESCRIPTION="iRipDB allows generating the DB files necessary for the iRiver iHP-1xx series of MP3/Ogg HD Player on Linux and Windows."
HOMEPAGE="http://www.fataltourist.com/iripdb/"
SRC_URI="http://www.fataltourist.com/iripdb/${MY_P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
RDEPEND="media-libs/taglib
sys-libs/zlib"
DEPEND="${RDEPEND}
app-arch/unzip"
pkg_setup() {
if test_version_info 3.3
then
einfo "Using gcc 3.3*"
# gcc 3.3 doesn't support certain 3.4.1 options,
# as well as having less specific -march options
replace-flags -march=pentium-m -march=pentium3
filter-flags -march=k8
filter-flags -march=athlon64
filter-flags -march=opteron
strip-unsupported-flags
elif test_version_info 3.4
then
einfo "Using gcc 3.4*"
fi
}
src_compile() {
echo "$(tc-getCXX) ${CXXFLAGS} -c -o main.o main.cpp"
$(tc-getCXX) ${CXXFLAGS} -c -o main.o -I/usr/include/taglib main.cpp
echo "$(tc-getCC) ${CFLAGS} -o iripdb main.o -lz -lm -ltag -lstdc++"
$(tc-getCC) ${CFLAGS} -o iripdb main.o -lz -lm -ltag -lstdc++
}
src_install() {
dobin iripdb
dodoc AUTHORS README doc/iRivDB_structure
}
|