blob: 4ab41e0ff508b131c3562068bf4bb7aaf498c13f (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/tipcutils/tipcutils-2.0.0.ebuild,v 1.1 2011/10/02 12:37:53 ssuominen Exp $
EAPI=4
inherit eutils toolchain-funcs
DESCRIPTION="Utilities for TIPC (Transparent Inter-Process Communication)"
HOMEPAGE="http://tipc.sourceforge.net"
SRC_URI="mirror://sourceforge/tipc/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND=">=sys-kernel/linux-headers-2.6.39"
S=${WORKDIR}/${P}/tipc-config
src_prepare() {
epatch "${FILESDIR}"/${P}-rename_configuration_message_field.patch
sed -i -e '/OFLAGS/s:-O2::' Makefile || die
}
src_compile() {
tc-export CC
emake EXTRAS="${CFLAGS}"
}
src_install() {
dosbin tipc-config
}
|