summaryrefslogtreecommitdiff
blob: f00dba606ab5824561c208865ebee95d970c142f (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
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7
inherit toolchain-funcs

DESCRIPTION="A soundcard mixer for the OSS driver"
HOMEPAGE="http://www.mcmilk.de/projects/mmix/"
SRC_URI="http://www.mcmilk.de/projects/${PN}/dl/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

# media-sound/mmix and dev-lang/mmix both install 'mmix' binary, bug #426874
RDEPEND=""
DEPEND="virtual/os-headers"

src_prepare() {
	default
	sed -i -e '/strip/d' Makefile || die
}

src_compile() {
	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall" LDFLAGS="${LDFLAGS}"
}

src_install() {
	dobin ${PN}
	doman doc/${PN}.1
	dodoc doc/{AUTHORS,CHANGES,FAQ,README}
}