blob: 2151b08ad1a56a96b388b1411a53d9bee0c39459 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-libs/svgalib/svgalib-1.4.3-r1.ebuild,v 1.2 2002/07/11 06:30:40 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="a library for running svga graphics on the console"
SRC_URI="http://www.svgalib.org/${P}.tar.gz"
HOMEPAGE="http://www.svgalib.org/"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
patch -p1 < ${FILESDIR}/${P}-gentoo.diff
}
src_compile() {
make OPTIMIZE="${CFLAGS}" static shared textutils lrmi utils || die
# Build the gl stuff tpp
make OPTIMIZE="${CFLAGS}" -C gl || die
make OPTIMIZE="${CFLAGS}" -C gl libvgagl.so.${PV} || die
cp Makefile Makefile.orig
sed 's/\(install: $(INSTALLAOUTLIB) \)installheaders \(.*\)/\1\2/g' \
Makefile.orig > Makefile
}
src_install () {
dodir /etc/{vga,svga} /usr/{include,lib,bin,share/man}
make TOPDIR=${D} OPTIMIZE="${CFLAGS}" install || die
insinto /usr/include
doins gl/vgagl.h
dolib.a gl/libvgagl.a
dolib.so gl/libvgagl.so.${PV}
dosym libvgagl.so.${PV} /usr/lib/libvgagl.so
insinto /usr/include
doins src/vga.h gl/vgagl.h src/mouse/vgamouse.h src/joystick/vgajoystick.h
doins src/keyboard/vgakeyboard.h
cd doc
dodoc 0-README CHANGES* DESIGN NEWS TODO
docinto txt
dodoc Driver-programming-HOWTO README.* add_driver svgalib.lsm
}
|