diff options
author | 2013-12-16 05:32:28 +0000 | |
---|---|---|
committer | 2013-12-16 05:32:28 +0000 | |
commit | 92abb7547545f39736bc7fdfaafb8495fa258833 (patch) | |
tree | 35da1ed7be82aafc108cd6b9d4d2bbde2120359c /net-misc/pen | |
parent | Bump (diff) | |
download | gentoo-2-92abb7547545f39736bc7fdfaafb8495fa258833.tar.gz gentoo-2-92abb7547545f39736bc7fdfaafb8495fa258833.tar.bz2 gentoo-2-92abb7547545f39736bc7fdfaafb8495fa258833.zip |
Bump
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-misc/pen')
-rw-r--r-- | net-misc/pen/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/pen/pen-0.20.1.ebuild | 24 |
2 files changed, 31 insertions, 2 deletions
diff --git a/net-misc/pen/ChangeLog b/net-misc/pen/ChangeLog index e16e9bccf596..2145ef91e36a 100644 --- a/net-misc/pen/ChangeLog +++ b/net-misc/pen/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/pen -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/pen/ChangeLog,v 1.16 2012/10/02 08:03:55 kensington Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/pen/ChangeLog,v 1.17 2013/12/16 05:32:28 patrick Exp $ + +*pen-0.20.1 (16 Dec 2013) + + 16 Dec 2013; Patrick Lauer <patrick@gentoo.org> +pen-0.20.1.ebuild: + Bump 02 Oct 2012; Michael Palimaka <kensington@gentoo.org> -pen-0.17.1.ebuild: Remove old. diff --git a/net-misc/pen/pen-0.20.1.ebuild b/net-misc/pen/pen-0.20.1.ebuild new file mode 100644 index 000000000000..f86fae7b1614 --- /dev/null +++ b/net-misc/pen/pen-0.20.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/pen/pen-0.20.1.ebuild,v 1.1 2013/12/16 05:32:28 patrick Exp $ + +EAPI="4" + +DESCRIPTION="TCP Load Balancing Port Forwarder" +HOMEPAGE="http://siag.nu/pen/" +SRC_URI="http://siag.nu/pub/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="ssl" + +DEPEND="ssl? ( dev-libs/openssl )" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_with ssl) +} + +src_install() { + emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} install +} |