diff options
author | 2010-01-14 18:20:45 +0000 | |
---|---|---|
committer | 2010-01-14 18:20:45 +0000 | |
commit | a777888c51214dbbb6136e26f9b7e547a0eaaf53 (patch) | |
tree | a84198132c1d911f56e65671351e52c8f7839c91 /sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild | |
parent | add trailing slash for HOMEPAGE (diff) | |
download | gentoo-2-a777888c51214dbbb6136e26f9b7e547a0eaaf53.tar.gz gentoo-2-a777888c51214dbbb6136e26f9b7e547a0eaaf53.tar.bz2 gentoo-2-a777888c51214dbbb6136e26f9b7e547a0eaaf53.zip |
EAPI2 - multilib ready - use local var - use newstyle bglibs paths - fix parallel build (bug #297986)
(Portage version: 2.2_rc61/cvs/Linux i686)
Diffstat (limited to 'sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild')
-rw-r--r-- | sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild new file mode 100644 index 000000000000..89a459475a50 --- /dev/null +++ b/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/ucspi-unix/ucspi-unix-0.36-r4.ebuild,v 1.1 2010/01/14 18:20:45 bangert Exp $ + +EAPI="2" + +inherit eutils toolchain-funcs multilib + +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.106" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-gentoo-head.patch + epatch "${FILESDIR}"/${P}-include-sys_socket.h.patch + epatch "${FILESDIR}"/${P}-fix-parallel-build.patch +} + +src_configure() { + local has_peercred + use kernel_linux && has_peercred="-DHASPEERCRED=1" + + echo "$(tc-getCC) ${CFLAGS} -I/usr/include/bglibs ${has_peercred} -D_GNU_SOURCE" > conf-cc + echo "$(tc-getCC) ${LDFLAGS} -L/usr/$(get_libdir)/bglibs" > conf-ld +} + +src_install() { + dobin unixserver unixclient unixcat || die + doman unixserver.1 unixclient.1 + dodoc ANNOUNCEMENT NEWS PROTOCOL README TODO +} |