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.
gentoo-overlay/media-video/matroxset/matroxset-0.4-r1.ebuild

50 lines
967 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="Matrox utility to switch output modes (activate tvout)"
HOMEPAGE="ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/"
SRC_URI="ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
RDEPEND="
sys-libs/ncurses:=
"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
doecho() {
echo "$@"
"$@"
}
src_compile() {
doecho $(tc-getCC) -o ${PN} \
${CFLAGS} ${LDFLAGS} \
${PN}.c \
$($(tc-getPKG_CONFIG) --libs ncurses) \
|| die "build failed"
#prepare small README
cat >> "${S}"/README << _EOF_
This utility has been created by Petr Vandrovec
Not much info here, but here are some pointers
http://davedina.apestaart.org/download/doc/Matrox-TVOUT-HOWTO-0.1.txt
http://www.netnode.de/howto/matrox-fb.html
_EOF_
}
src_install() {
dobin matroxset
dodoc README
}