diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-06-04 13:15:03 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-06-04 13:15:03 +0000 |
commit | 3549962d0b861adce5412ea9b67ea163528be673 (patch) | |
tree | 16071f4b3b9bcbaa7e149bed5bee8ed14eebfcfd /media-libs/id3lib | |
parent | GCC3.1 compile fixes tested on 2.95.3 too (diff) | |
download | gentoo-2-3549962d0b861adce5412ea9b67ea163528be673.tar.gz gentoo-2-3549962d0b861adce5412ea9b67ea163528be673.tar.bz2 gentoo-2-3549962d0b861adce5412ea9b67ea163528be673.zip |
GCC-3.1 fixes
Diffstat (limited to 'media-libs/id3lib')
-rw-r--r-- | media-libs/id3lib/files/digest-id3lib-3.8.0_pre2-r2 | 1 | ||||
-rw-r--r-- | media-libs/id3lib/id3lib-3.8.0_pre2-r2.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/media-libs/id3lib/files/digest-id3lib-3.8.0_pre2-r2 b/media-libs/id3lib/files/digest-id3lib-3.8.0_pre2-r2 new file mode 100644 index 000000000000..72c7aeafef6d --- /dev/null +++ b/media-libs/id3lib/files/digest-id3lib-3.8.0_pre2-r2 @@ -0,0 +1 @@ +MD5 48444a1eb634c034c05388e8e2bb5024 id3lib-3.8.0pre2.tar.gz 680219 diff --git a/media-libs/id3lib/id3lib-3.8.0_pre2-r2.ebuild b/media-libs/id3lib/id3lib-3.8.0_pre2-r2.ebuild new file mode 100644 index 000000000000..54d3803271e1 --- /dev/null +++ b/media-libs/id3lib/id3lib-3.8.0_pre2-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib/id3lib-3.8.0_pre2-r2.ebuild,v 1.1 2002/06/04 13:15:03 lostlogic Exp $ + +A=${PN}-3.8.0pre2.tar.gz +S=${WORKDIR}/${PN}-3.8.0pre2 +DESCRIPTION="Id3 library for C/C++" +SRC_URI="mirror://sourceforge/id3lib/${A}" +HOMEPAGE="http://id3lib.sourceforge.net/" +LICENSE=GPL + +DEPEND="virtual/glibc" +RDEPEND="${DEPEND}" + +src_unpack() { + + unpack ${A} + + if [ "`gcc --version | cut -f1 -d.`" -eq 3 ] || + ([ -n "${CXX}" ] && [ "`${CXX} --version | cut -f1 -d.`" -eq 3 ]) || + [ "`gcc --version|grep gcc|cut -f1 -d.|cut -f3 -d\ `" -eq 3 ] + then + cd ${S} + # Patch for compilation with gcc-3.0.x thanks to Dirk Jagdmann (doj), + # and me (fixed the const char** in utils.cpp) + # + # Azarah - 5 May 2002 + patch -p1 <${FILESDIR}/${P}-gcc3.patch || die + fi +} + +src_compile() { + + CPPFLAGS="-Wno-deprecated" ./configure --host=${CHOST} --includedir="" --prefix=/usr || die + emake || die +} + +src_install() { + + make DESTDIR=${D} install || die + + dodoc AUTHORS COPYING ChangeLog HISTORY INSTALL README THANKS TODO +# some example programs to be placed in docs dir. + make clean + cp -a examples ${D}/usr/share/doc/${PF}/examples +} + |