summaryrefslogtreecommitdiff
blob: e6cd1d99e1ac3655ffb72f2ca538c2268674242a (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
50
51
52
53
54
55
56
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libjsw/libjsw-1.5.0.ebuild,v 1.4 2004/02/29 21:15:18 vapier Exp $

DESCRIPTION="provide a uniform API and user configuration for joysticks and game controllers"
HOMEPAGE="http://wolfpack.twu.net/libjsw/"
SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="gtk"

DEPEND="gtk? ( =x11-libs/gtk+-1.2* )"

src_compile() {
	cd ${S}/include
	cp xsw_ctype.h{,.old}
	sed -e "s:^extern.*isblank.*::" \
		xsw_ctype.h.old > xsw_ctype.h

	cd ${S}/libjsw
	sed -e "s:^CFLAGS.*:`grep ^CFLAGS Makefile.Linux` ${CFLAGS}:" \
		Makefile.Linux > Makefile
	make || die
	ln -sf libjsw.so.${PV} libjsw.so

	if use gtk ; then
		cd ${S}/jscalibrator
		sed -e "s:--cflags\`:--cflags\` ${CFLAGS} -I.:" \
		 -e "s:-ljsw:-ljsw -L../libjsw:" \
			Makefile.Linux > Makefile
		ln -s ../include/jsw.h
		make || die
	fi
}

src_install() {
	insinto /usr/include
	doins include/jsw.h

	dodoc AUTHORS README
	mv ${S}/jswdemos ${D}/usr/share/doc/${PF}/

	cd ${S}/libjsw
	dolib.so libjsw.so.${PV} || die
	dosym /usr/lib/libjsw.so.${PV} /usr/lib/libjsw.so
	doman man/*

	if use gtk ; then
		cd ${S}/jscalibrator
		dobin jscalibrator || die
		doman jscalibrator.1
		dohtml data/help/*
	fi
}