diff options
author | Santiago M. Mola <coldwind@gentoo.org> | 2008-01-12 17:17:28 +0000 |
---|---|---|
committer | Santiago M. Mola <coldwind@gentoo.org> | 2008-01-12 17:17:28 +0000 |
commit | b15ad75a4859468a75553eb8bd5dac4b178428dc (patch) | |
tree | 6a0962e64ec0e3e0bc23c62821d0d41cf901ce82 /net-im | |
parent | Version bump (diff) | |
download | gentoo-2-b15ad75a4859468a75553eb8bd5dac4b178428dc.tar.gz gentoo-2-b15ad75a4859468a75553eb8bd5dac4b178428dc.tar.bz2 gentoo-2-b15ad75a4859468a75553eb8bd5dac4b178428dc.zip |
Add pkgconfig to DEPEND, #205484. Quoting fixed.
(Portage version: 2.1.3.19)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/tapiocad/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/tapiocad/tapiocad-0.3.9.ebuild | 11 |
2 files changed, 11 insertions, 7 deletions
diff --git a/net-im/tapiocad/ChangeLog b/net-im/tapiocad/ChangeLog index 0854e1e52e50..947646416199 100644 --- a/net-im/tapiocad/ChangeLog +++ b/net-im/tapiocad/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/tapiocad -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/tapiocad/ChangeLog,v 1.6 2007/08/02 06:31:04 mr_bones_ Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/tapiocad/ChangeLog,v 1.7 2008/01/12 17:17:28 coldwind Exp $ + + 12 Jan 2008; Santiago M. Mola <coldwind@gentoo.org> tapiocad-0.3.9.ebuild: + Add pkgconfig to DEPEND, #205484. Quoting fixed. 02 Aug 2007; Michael Sterrett <mr_bones_@gentoo.org> tapiocad-0.3.9.ebuild: diff --git a/net-im/tapiocad/tapiocad-0.3.9.ebuild b/net-im/tapiocad/tapiocad-0.3.9.ebuild index 1ae95ffc11b7..5daa516a44ff 100644 --- a/net-im/tapiocad/tapiocad-0.3.9.ebuild +++ b/net-im/tapiocad/tapiocad-0.3.9.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/tapiocad/tapiocad-0.3.9.ebuild,v 1.6 2007/08/02 06:31:04 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/tapiocad/tapiocad-0.3.9.ebuild,v 1.7 2008/01/12 17:17:28 coldwind Exp $ DESCRIPTION="Tapioca framework for VOIP and IM" HOMEPAGE="http://tapioca-voip.sf.net" @@ -11,13 +11,14 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND=">=dev-libs/glib-2 +RDEPEND=">=dev-libs/glib-2 >=dev-libs/dbus-glib-0.71" -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND} + dev-util/pkgconfig" S="${WORKDIR}/tapioca-${PV}" src_install() { - make DESTDIR=${D} install || die "make install failed" + make DESTDIR="${D}" install || die "make install failed" } |