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
900 B
37 lines
900 B
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/netpipes/netpipes-4.2-r1.ebuild,v 1.4 2013/11/29 16:34:26 jer Exp $
|
|
|
|
EAPI="2"
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="netpipes - a package to manipulate BSD TCP/IP stream sockets"
|
|
HOMEPAGE="http://web.purplefrog.com/~thoth/netpipes/"
|
|
SRC_URI="http://web.purplefrog.com/~thoth/netpipes/ftp/${P}-export.tar.gz"
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}/${P}-export"
|
|
|
|
src_prepare() {
|
|
sed -i \
|
|
-e 's/CFLAGS =/CFLAGS +=/' \
|
|
-e '/ -o /s:${CFLAGS}:& $(LDFLAGS):g' \
|
|
Makefile || die "sed failed"
|
|
|
|
epatch "${FILESDIR}/${P}-string.patch"
|
|
}
|
|
|
|
src_compile () {
|
|
emake CC=$(tc-getCC) || die
|
|
}
|
|
|
|
src_install() {
|
|
mkdir -p "${D}"/usr/share/man || die
|
|
emake INSTROOT="${D}"/usr INSTMAN="${D}"/usr/share/man install || die
|
|
}
|