diff options
author | 2008-03-11 15:27:55 +0000 | |
---|---|---|
committer | 2008-03-11 15:27:55 +0000 | |
commit | c2bbaee4e79c2fe05b4f61dc79a11e4c1172318d (patch) | |
tree | 837710cba4cd3171e0952be9a576d6741ca4da07 /sys-apps/hwsetup | |
parent | Add app-arch/unzip to DEPEND. (diff) | |
download | gentoo-2-c2bbaee4e79c2fe05b4f61dc79a11e4c1172318d.tar.gz gentoo-2-c2bbaee4e79c2fe05b4f61dc79a11e4c1172318d.tar.bz2 gentoo-2-c2bbaee4e79c2fe05b4f61dc79a11e4c1172318d.zip |
After the latest fexes, we no longer require libkudzu to exist on our running system with hwsetup. This should save us a little space on our minimal CD.
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-apps/hwsetup')
-rw-r--r-- | sys-apps/hwsetup/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/hwsetup/hwsetup-1.2.ebuild | 9 |
2 files changed, 11 insertions, 5 deletions
diff --git a/sys-apps/hwsetup/ChangeLog b/sys-apps/hwsetup/ChangeLog index 08985a9768f2..1df924444a36 100644 --- a/sys-apps/hwsetup/ChangeLog +++ b/sys-apps/hwsetup/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/hwsetup # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwsetup/ChangeLog,v 1.52 2008/03/07 19:06:43 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwsetup/ChangeLog,v 1.53 2008/03/11 15:27:55 wolf31o2 Exp $ + + 11 Mar 2008; Chris Gianelloni <wolf31o2@gentoo.org> hwsetup-1.2.ebuild: + After the latest fexes, we no longer require libkudzu to exist on our + running system with hwsetup. This should save us a little space on our + minimal CD. 07 Mar 2008; Chris Gianelloni <wolf31o2@gentoo.org> hwsetup-1.2.ebuild: Fix compilation when using --as-needed by filtering it, for now. diff --git a/sys-apps/hwsetup/hwsetup-1.2.ebuild b/sys-apps/hwsetup/hwsetup-1.2.ebuild index 069dcac8e391..f98f65f179a2 100644 --- a/sys-apps/hwsetup/hwsetup-1.2.ebuild +++ b/sys-apps/hwsetup/hwsetup-1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwsetup/hwsetup-1.2.ebuild,v 1.7 2008/03/07 19:06:43 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwsetup/hwsetup-1.2.ebuild,v 1.8 2008/03/11 15:27:55 wolf31o2 Exp $ inherit eutils toolchain-funcs flag-o-matic @@ -15,10 +15,11 @@ SLOT="0" KEYWORDS="alpha amd64 ia64 -mips ppc ppc64 sparc x86" IUSE="zlib" -DEPEND="sys-libs/libkudzu - zlib? ( sys-libs/zlib ) +COMMON_DEPEND="zlib? ( sys-libs/zlib ) sys-apps/pciutils" -RDEPEND="${DEPEND} +DEPEND="${COMMON_DEPEND} + sys-libs/libkudzu" +RDEPEND="${COMMON_DEPEND} sys-apps/hwdata-gentoo" src_unpack() { |