blob: 30433dd4c331edb0136e7318684cb2249dd5b7bd (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/omnievents/omnievents-2.6.2.ebuild,v 1.4 2008/04/22 19:53:55 drac Exp $
inherit eutils versionator
MY_P=omniEvents-$(replace_all_version_separators "_")
DESCRIPTION="An implementation of the CORBA Events Service for omniORB"
HOMEPAGE="http://www.omnievents.org"
SRC_URI="mirror://sourceforge/omnievents/${MY_P}-src.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=net-misc/omniORB-4"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gcc43.patch
}
src_compile() {
econf
emake -j1 || die "emake failed."
}
src_install () {
emake -j1 DESTDIR="${D}" install || die "emake install failed."
doman doc/man/*
dohtml -A xml -x man,rc -r doc/*
insinto /usr/share/doc/${PF}/examples
doins -r examples/*
diropts -m0700
dodir /var/lib/omniEvents
keepdir /var/lib/omniEvents
newinitd "${FILESDIR}"/${PN}-init ${PN}
newinitd "${FILESDIR}"/${PN}-conf ${PN}
}
|