minimodem: cleanup

This commit is contained in:
blshkv 2016-02-07 21:46:52 +08:00
parent 4ad18632fb
commit 6dd284e649

View file

@ -4,14 +4,15 @@
EAPI=5 EAPI=5
inherit autotools autotools-utils inherit autotools-utils
#inherit autotools autotools-utils
DESCRIPTION="General-purpose software audio FSK modem." DESCRIPTION="General-purpose software audio FSK modem."
HOMEPAGE="https://github.com/kamalmostafa/minimodem" HOMEPAGE="https://github.com/kamalmostafa/minimodem"
SRC_URI="https://github.com/kamalmostafa/minimodem/archive/${P}-1.tar.gz" SRC_URI="https://github.com/kamalmostafa/minimodem/archive/${P}-1.tar.gz"
SLOT="0" SLOT="0"
LICENSE="GPL-2" LICENSE="GPL-3+"
KEYWORDS="~amd64 ~arm ~x86" KEYWORDS="~amd64 ~arm ~x86"
IUSE="alsa pulseaudio sndfile" IUSE="alsa pulseaudio sndfile"
@ -33,8 +34,10 @@ src_prepare() {
} }
src_configure() { src_configure() {
econf \ myeconfargs=(
$(use_with alsa ) \ $(use_with alsa )
$(use_with pulseaudio ) \ $(use_with pulseaudio )
$(use_with sndfile ) $(use_with sndfile )
)
autotools-utils_src_configure
} }