You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
799 B
35 lines
799 B
# Copyright 1999-2018 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="fork of wmmixer adding scrollwheel support and other features"
|
|
HOMEPAGE="https://www.dockapps.net/wmsmixer"
|
|
SRC_URI="https://www.dockapps.net/download/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ppc64 ~sparc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="x11-libs/libXpm
|
|
x11-libs/libXext
|
|
x11-libs/libX11"
|
|
DEPEND="${RDEPEND}
|
|
x11-base/xorg-proto"
|
|
|
|
src_compile() {
|
|
$(tc-getCXX) ${CFLAGS} -I/usr/X11R6/include -c -o wmsmixer.o wmsmixer.cc
|
|
rm -f wmsmixer || die
|
|
$(tc-getCXX) ${LDFLAGS} -o wmsmixer ${CFLAGS} -L/usr/X11R6/lib wmsmixer.o -lXpm -lXext -lX11
|
|
}
|
|
|
|
src_install() {
|
|
insinto /usr/bin
|
|
insopts -m0655
|
|
doins wmsmixer
|
|
dodoc README README.wmmixer
|
|
}
|