You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
966 B
37 lines
966 B
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="A ucspi implementation for unix sockets"
|
|
HOMEPAGE="http://untroubled.org/ucspi-unix/"
|
|
SRC_URI="http://untroubled.org/ucspi-unix/archive/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~sparc x86"
|
|
IUSE=""
|
|
|
|
DEPEND=">=dev-libs/bglibs-1.019-r1"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
epatch "${FILESDIR}"/${PN}-gentoo-head.patch
|
|
epatch "${FILESDIR}"/${P}-include-sys_socket.h.patch
|
|
}
|
|
|
|
src_compile() {
|
|
use kernel_linux && PEERCRED="-DHASPEERCRED=1"
|
|
echo "$(tc-getCC) ${CFLAGS} -I/usr/lib/bglibs/include ${PEERCRED} -D_GNU_SOURCE" > conf-cc
|
|
echo "$(tc-getCC) ${LDFLAGS} -L/usr/lib/bglibs/lib" > conf-ld
|
|
# fails parallel build, bug #297986
|
|
emake -j1 || die
|
|
}
|
|
|
|
src_install() {
|
|
dobin unixserver unixclient unixcat || die
|
|
doman unixserver.1 unixclient.1
|
|
dodoc ANNOUNCEMENT NEWS PROTOCOL README TODO
|
|
}
|