blob: 621e32764c0a687fdcd8f6f0e5bc2f5447e2267e (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $ Header: $
S=${WORKDIR}/${P}
DESCRIPTION="Library for overlaying text/glyphs in X-Windows \
X-On-Screen-Display plus binary for sending text from command line."
HOMEPAGE="http://www.ignavus.net/"
SRC_URI="http://www.ignavus.net/${P}.tar.gz"
DEPEND="virtual/x11"
SLOT="1"
LICENSE="GPL"
KEYWORDS="~x86 ~sparc ~sparc64"
src_install () {
cd ${S}
insinto /usr/include
doins src/xosd.h
into /usr
dolib.a src/libxosd/.libs/libxosd.a
dolib.so src/libxosd/.libs/libxosd.so.1
dobin src/.libs/osd_cat
dobin script/xosd-config
doman man/*.1 man/*.3
dodoc AUTHORS ChangeLog NEWS COPYING README
}
|