# Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger , William A. McArthur, Jr # $Header:$ S=${WORKDIR}/${P} DESCRIPTION="A library to play a wide range of module formats" SRC_URI="http://www.mikmod.org/files/libmikmod/${P}.tar.gz" DEPEND="virtual/glibc >=media-libs/audiofile-0.2.3 alsa? ( >=media-libs/alsa-lib-0.5.9 ) esd? ( >=media-sound/esound-0.2.19 )" src_compile() { local myconf myconf="--enable-af" # include AudioFile driver [ -z `use esd` ] || myconf="${myconf} --enable-esd" [ -z `use alsa` ] || myconf="${myconf} --enable-alsa" [ -z `use oss` ] || myconf="${myconf} --enable-oss" einfo Enabling: $myconf ./configure \ --host=${CHOST} \ --prefix=/usr \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ $myconf || die emake || die } src_install() { make DESTDIR=${D} install || die dodoc AUTHORS COPYING* NEWS README TODO dohtml docs/*.html }