blob: fc5a78032bf13a20acf004da8fc78799bedb14f7 (
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
|
#Copyright 2002 Gentoo Technologies, Inc.
#Distributed under the terms of the GNU General Public License, v2 or later
#$Header: /var/cvsroot/gentoo-x86/sys-apps/s3switch/s3switch-19990826.ebuild,v 1.1 2002/05/28 19:57:25 wmertens Exp $
DESCRIPTION="S3 video chipset output selection utility"
HOMEPAGE="http://www.probo.com/timr/savage40.html"
SRC_URI="http://www.probo.com/timr/s3ssrc.zip"
A=s3ssrc.zip
S=${WORKDIR}
RDEPEND="virtual/glibc"
DEPEND="$RDEPEND"
src_compile() {
make || die
}
src_install () {
dobin s3switch
doman s3switch.1x
}
|