blob: c856ac455dade6fcadbbbd90d762db634905b4ef (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/flac/flac-1.1.1.ebuild,v 1.2 2004/10/02 23:56:46 eradicator Exp $
IUSE="sse xmms"
inherit libtool eutils flag-o-matic gcc
DESCRIPTION="free lossless audio encoder which includes an XMMS plugin"
HOMEPAGE="http://flac.sourceforge.net/"
SRC_URI="mirror://sourceforge/flac/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2 "
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~hppa ~amd64 ~ia64 ~ppc64"
RDEPEND=">=media-libs/libogg-1.0_rc2
xmms? ( media-sound/xmms )"
DEPEND="${RDEPEND}
x86? ( dev-lang/nasm )
sys-apps/gawk"
src_unpack() {
unpack ${A}
cd ${S}
if ! use xmms
then
sed -i -e '/^@FLaC__HAS_XMMS_TRUE/d' src/Makefile.in || die
fi
epatch ${FILESDIR}/${P}-m4.patch
epatch ${FILESDIR}/${P}-libtool.patch
elibtoolize --reverse-deps
}
src_compile() {
use hppa && [ "`gcc-fullversion`" == "3.4.0" ] && replace-cpu-flags 2.0 1.0
econf \
--with-pic \
`use_enable sse` \
|| die
# the man page ebuild requires docbook2man... yick!
sed -i -e 's:include man:include:g' Makefile
# emake seems to mess up the building of the xmms input plugin
make || die
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS README
# Keep around old lib
if [ -f ${ROOT}/usr/$(get_libdir)/libFLAC.so.4 ]; then
dodir /usr/$(get_libdir)
cp ${ROOT}/usr/$(get_libdir)/libFLAC.so.4 ${D}/usr/$(get_libdir)
touch ${D}/usr/$(get_libdir)/libFLAC.so.4
fperms 755 /usr/$(get_libdir)/libFLAC.so.4
fi
if [ -f ${ROOT}/usr/$(get_libdir)/libFLAC++.so.2 ]; then
dodir /usr/$(get_libdir)
cp ${ROOT}/usr/$(get_libdir)/libFLAC++.so.2 ${D}/usr/$(get_libdir)
touch ${D}/usr/$(get_libdir)/libFLAC++.so.2
fperms 755 /usr/$(get_libdir)/libFLAC++.so.2
fi
}
pkg_postinst() {
if [ -f /usr/$(get_libdir)/libFLAC.so.4 ]; then
einfo "An old version of libFLAC was detected on your system."
einfo "In order to avoid conflicts, we've kept the old lib"
einfo "around. In order to make full use of the new version"
einfo "of libFLAC, you will need to do the following:"
einfo " revdep-rebuild --soname libFLAC.so.4"
einfo " revdep-rebuild --soname libFLAC++.so.2"
einfo
einfo "After doing that, you can safely remove /usr/$(get_libdir)/libFLAC.so.4 and libFLAC++.so.2"
fi
}
|