diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-17 21:35:22 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-17 21:35:22 +0000 |
commit | 1d30370430791f435393e7684ce63f2c8ce673d7 (patch) | |
tree | 367f2aed6b3cedfbbdb953fe0f386abb9f0a9129 /dev-util/csup | |
parent | Require automake 1.8 as eautomake is used; accept latest autoconf if needed. (diff) | |
download | gentoo-2-1d30370430791f435393e7684ce63f2c8ce673d7.tar.gz gentoo-2-1d30370430791f435393e7684ce63f2c8ce673d7.tar.bz2 gentoo-2-1d30370430791f435393e7684ce63f2c8ce673d7.zip |
Add missing dependencies over zlib and openssl.
(Portage version: 2.1.2_pre3-r3)
Diffstat (limited to 'dev-util/csup')
-rw-r--r-- | dev-util/csup/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/csup/csup-20060318.ebuild | 12 |
2 files changed, 13 insertions, 4 deletions
diff --git a/dev-util/csup/ChangeLog b/dev-util/csup/ChangeLog index 291eb10e0c2b..40b31b13d886 100644 --- a/dev-util/csup/ChangeLog +++ b/dev-util/csup/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/csup # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/csup/ChangeLog,v 1.3 2006/10/07 15:12:56 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/csup/ChangeLog,v 1.4 2006/10/17 21:35:22 flameeyes Exp $ + + 17 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> csup-20060318.ebuild: + Add missing dependencies over zlib and openssl. 07 Oct 2006; Andrej Kacian <ticho@gentoo.org> csup-20060318.ebuild: Added ~x86 keyword. Bug #150323, reported by Timothy Redaelli <drizzt at diff --git a/dev-util/csup/csup-20060318.ebuild b/dev-util/csup/csup-20060318.ebuild index 92fb340d7871..29c0d2e1dcbf 100644 --- a/dev-util/csup/csup-20060318.ebuild +++ b/dev-util/csup/csup-20060318.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/csup/csup-20060318.ebuild,v 1.3 2006/10/07 15:12:56 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/csup/csup-20060318.ebuild,v 1.4 2006/10/17 21:35:22 flameeyes Exp $ DESCRIPTION="C-based rewrite of CVSup (software for distributing and updating collections of files accross a network)" HOMEPAGE="http://www.mu.org/~mux/csup.html" @@ -11,8 +11,14 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~x86-fbsd" IUSE="" -DEPEND=">=sys-devel/bison-2.1" -RDEPEND="!>=sys-freebsd/freebsd-ubin-6.2_beta1" +DEPEND="dev-libs/openssl + sys-libs/zlib" + +RDEPEND="${DEPEND} + !>=sys-freebsd/freebsd-ubin-6.2_beta1" + +DEPEND="${DEPEND} + >=sys-devel/bison-2.1" S="${WORKDIR}/${PN}" |