summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2014-07-18 20:58:24 +0000
committerJeroen Roovers <jer@gentoo.org>2014-07-18 20:58:24 +0000
commit8d8fd372db43b1a53aad89d75781c14d88cafe8f (patch)
tree390050754d4b1fe260653e48344d52a7c6e3f508 /net-misc/pipes
parentAdd ~sparc keyword wrt bug #505378 (diff)
downloadgentoo-2-8d8fd372db43b1a53aad89d75781c14d88cafe8f.tar.gz
gentoo-2-8d8fd372db43b1a53aad89d75781c14d88cafe8f.tar.bz2
gentoo-2-8d8fd372db43b1a53aad89d75781c14d88cafe8f.zip
EAPI bump.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-misc/pipes')
-rw-r--r--net-misc/pipes/ChangeLog7
-rw-r--r--net-misc/pipes/pipes-1.16.1.ebuild21
2 files changed, 12 insertions, 16 deletions
diff --git a/net-misc/pipes/ChangeLog b/net-misc/pipes/ChangeLog
index a846f869ac2a..3210ad3e53d0 100644
--- a/net-misc/pipes/ChangeLog
+++ b/net-misc/pipes/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/pipes
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/pipes/ChangeLog,v 1.14 2011/12/15 16:23:31 ago Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/pipes/ChangeLog,v 1.15 2014/07/18 20:58:24 jer Exp $
+
+ 18 Jul 2014; Jeroen Roovers <jer@gentoo.org> pipes-1.16.1.ebuild:
+ EAPI bump.
15 Dec 2011; Agostino Sarubbo <ago@gentoo.org> pipes-1.16.1.ebuild:
Add ~amd64, wrt bug #393483
diff --git a/net-misc/pipes/pipes-1.16.1.ebuild b/net-misc/pipes/pipes-1.16.1.ebuild
index fd0ee4776e00..35b32645558d 100644
--- a/net-misc/pipes/pipes-1.16.1.ebuild
+++ b/net-misc/pipes/pipes-1.16.1.ebuild
@@ -1,10 +1,9 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/pipes/pipes-1.16.1.ebuild,v 1.3 2011/12/15 16:23:31 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/pipes/pipes-1.16.1.ebuild,v 1.4 2014/07/18 20:58:24 jer Exp $
-EAPI="3"
-
-inherit toolchain-funcs
+EAPI=5
+inherit eutils toolchain-funcs
DESCRIPTION="Very versatile TCP pipes"
HOMEPAGE="http://bisqwit.iki.fi/source/pipes.html"
@@ -13,25 +12,19 @@ SRC_URI="http://bisqwit.iki.fi/src/arch/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~s390 ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4"
src_prepare() {
- #sed -i Makefile -e 's:-O2:$(CFLAGS):' || die
# Prevent the build system from looking for dependencies
touch .depend || die
}
src_compile() {
- emake CC=$(tc-getCC) OPTIM="${CFLAGS}" LDFLAGS="${CFLAGS} ${LDFLAGS}" || die
+ emake CC=$(tc-getCC) OPTIM="${CFLAGS}" LDFLAGS="${CFLAGS} ${LDFLAGS}"
}
src_install() {
- dobin plis || die "dobin failed"
- dohard /usr/bin/plis /usr/bin/pcon || die "dohard failed"
+ dobin plis
+ dosym /usr/bin/plis /usr/bin/pcon
dodoc Examples ChangeLog
dohtml README.html
}