Magellan Linux

Annotation of /branches/magellan-next/core/flac/flac-1.2.1-r7.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9778 - (hide annotations) (download)
Wed Jan 11 14:03:54 2012 UTC (12 years, 4 months ago) by niro
File size: 868 byte(s)
-disabled static libs and dropped rpath
1 niro 9777 # $Id$
2    
3     PNAME="flac"
4     PVER="1.2.1"
5     PBUILD="r7"
6    
7     PCATEGORIE="media-libs"
8    
9     DESCRIPTION="FLAC - Free Lossless Audio Codec."
10     HOMEPAGE="http://flac.sourceforge.net/"
11    
12     DEPEND=">= virtual/glibc
13     >= media-libs/libogg-1.2
14     >= sys-libs/libstdc++-4.6"
15    
16     SDEPEND=">= dev-lang/nasm-2
17     >= sys-apps/gawk-3"
18    
19     SRCFILE="${PNAME}-${PVER}.tar.gz"
20     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
21    
22     sminclude mbuild multilib
23    
24     SRC_URI=(
25     sourceforge://${PNAME}/${SRCFILE}
26     mirror://${PNAME}/${SRCFILE}
27     mirror://${PNAME}/${PNAME}-${PVER}-gcc43.patch
28     )
29    
30     UP2SUBSTITUTE="flac-"
31     UP2DATE="updatecmd_sourceforge ${PNAME} ${PNAME}-src | sed 's:-src::'"
32    
33     src_prepare()
34     {
35     munpack ${SRCFILE}
36    
37     # fix compilation with gcc-4.3
38     mpatch ${PNAME}-${PVER}-gcc43.patch || die
39     }
40    
41     src_compile()
42     {
43 niro 9778 mconfigure \
44     --disable-static \
45     --disable-rpath \
46     --enable-ogg \
47     --disable-xmms-plugin \
48     || die
49    
50 niro 9777 mmake || die
51     }