diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-05-01 10:32:58 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-05-01 10:32:58 +0000 |
commit | b7a3264a7b628443f39ea655a73a1c52dd0f68b0 (patch) | |
tree | 32e757817243f140bad516fa57dce3ce2468dafe /net-proxy/haproxy | |
parent | Fix building with gcc-4.3 (diff) | |
download | gentoo-2-b7a3264a7b628443f39ea655a73a1c52dd0f68b0.tar.gz gentoo-2-b7a3264a7b628443f39ea655a73a1c52dd0f68b0.tar.bz2 gentoo-2-b7a3264a7b628443f39ea655a73a1c52dd0f68b0.zip |
Take out linux-info usage that existed for 2.4 kernels, so that haproxy will compile properly on machines with no kernel source present.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-proxy/haproxy')
-rw-r--r-- | net-proxy/haproxy/ChangeLog | 6 | ||||
-rw-r--r-- | net-proxy/haproxy/haproxy-1.3.15.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/net-proxy/haproxy/ChangeLog b/net-proxy/haproxy/ChangeLog index 16ad557f5c04..3e38949a7647 100644 --- a/net-proxy/haproxy/ChangeLog +++ b/net-proxy/haproxy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-proxy/haproxy # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/ChangeLog,v 1.12 2008/04/20 02:59:54 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/ChangeLog,v 1.13 2008/05/01 10:32:58 robbat2 Exp $ + + 01 May 2008; Robin H. Johnson <robbat2@gentoo.org> haproxy-1.3.15.ebuild: + Take out linux-info usage that existed for 2.4 kernels, so that haproxy + will compile properly on machines with no kernel source present. *haproxy-1.3.15 (20 Apr 2008) diff --git a/net-proxy/haproxy/haproxy-1.3.15.ebuild b/net-proxy/haproxy/haproxy-1.3.15.ebuild index f58ad92d8f89..e9696c8f3405 100644 --- a/net-proxy/haproxy/haproxy-1.3.15.ebuild +++ b/net-proxy/haproxy/haproxy-1.3.15.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/haproxy-1.3.15.ebuild,v 1.1 2008/04/20 02:59:54 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/haproxy/haproxy-1.3.15.ebuild,v 1.2 2008/05/01 10:32:58 robbat2 Exp $ -inherit linux-info versionator +inherit versionator DESCRIPTION="A TCP/HTTP reverse proxy for high availability environments" HOMEPAGE="http://haproxy.1wt.eu" @@ -17,7 +17,7 @@ DEPEND="pcre? ( >=dev-libs/libpcre-6.3 )" RDEPEND="${DEPEND}" src_compile() { - local ARGS="TARGET=linux${KV_MAJOR}${KV_MINOR}" + local ARGS="TARGET=linux26" use pcre && ARGS="${ARGS} REGEX=pcre" emake ADDINC="${CFLAGS}" LDFLAGS="${LDFLAGS}" ${ARGS} } |