blob: c05879bd0081c2eb5a235a7eee5bafbd8181e6f4 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk-server/gtk-server-2.0.12.ebuild,v 1.1 2006/08/17 03:47:29 mkennedy Exp $
inherit eutils
DESCRIPTION="GTK-server provides a stream-oriented interface to the GTK+ widget set"
HOMEPAGE="http://www.turtle.dds.nl/gtk-server/index.html"
SRC_URI="mirror://sourceforge/gtk-server/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="=x11-libs/gtk+-2*
dev-libs/libffi"
DEPEND=">=sys-devel/autoconf-2.60
${RDEPEND}"
src_compile() {
sed -i -e "s,-lffi,-L/usr/$(get_libdir)/libffi -lffi,g" configure.in
sed -i -e 's,-DLOCALCFG=\\".*\\",-DLOCALCFG=\\"/etc/gtk-server.cfg\\",g' \
-e "s,@CFLAGS@,@CFLAGS@ ${CFLAGS},g" Makefile.in
WANT_AUTOCONF=2.5 autoconf || die
econf --with-gtk2 || die
emake || die
}
src_install() {
dobin gtk-server
doman {gtk-server,gtk-server.cfg}.1
dodoc README CREDITS
insinto /etc
doins gtk-server.cfg
dohtml docs/*
insinto /usr/share/doc/${PF}/demo
doins demo/*
}
|