diff options
author | Jon Hood <squinky86@gentoo.org> | 2004-08-08 17:53:56 +0000 |
---|---|---|
committer | Jon Hood <squinky86@gentoo.org> | 2004-08-08 17:53:56 +0000 |
commit | bfbd71d24bb3a9654b109321a48afac26a76ec9c (patch) | |
tree | 56db27cf7ab0bea2a076414663530052b3192474 /net-p2p/giftui | |
parent | Moved from net-www/orion to www-servers/orion (diff) | |
download | gentoo-2-bfbd71d24bb3a9654b109321a48afac26a76ec9c.tar.gz gentoo-2-bfbd71d24bb3a9654b109321a48afac26a76ec9c.tar.bz2 gentoo-2-bfbd71d24bb3a9654b109321a48afac26a76ec9c.zip |
correct docs dir irt #46565
Diffstat (limited to 'net-p2p/giftui')
-rw-r--r-- | net-p2p/giftui/ChangeLog | 5 | ||||
-rw-r--r-- | net-p2p/giftui/giftui-0.4.1.ebuild | 17 |
2 files changed, 19 insertions, 3 deletions
diff --git a/net-p2p/giftui/ChangeLog b/net-p2p/giftui/ChangeLog index fc990740fd0c..5bef359c7bb0 100644 --- a/net-p2p/giftui/ChangeLog +++ b/net-p2p/giftui/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-p2p/giftui # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftui/ChangeLog,v 1.14 2004/07/05 04:55:54 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftui/ChangeLog,v 1.15 2004/08/08 17:53:56 squinky86 Exp $ + + 08 Aug 2004; Jon Hood <squinky86@gentoo.org> giftui-0.4.1.ebuild: + Use the correct docs dir irt #46565. 04 Jul 2004; Jon Hood <squinky86@gentoo.org> giftui-0.4.1.ebuild: bump gtk+ dependency requirements irt #55784 diff --git a/net-p2p/giftui/giftui-0.4.1.ebuild b/net-p2p/giftui/giftui-0.4.1.ebuild index b03e977275b8..7a495cc113ca 100644 --- a/net-p2p/giftui/giftui-0.4.1.ebuild +++ b/net-p2p/giftui/giftui-0.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftui/giftui-0.4.1.ebuild,v 1.5 2004/07/09 01:35:30 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/giftui/giftui-0.4.1.ebuild,v 1.6 2004/08/08 17:53:56 squinky86 Exp $ inherit gnome2 eutils @@ -13,14 +13,27 @@ SLOT="0" KEYWORDS="~x86 ~sparc ~amd64 ~ppc" IUSE="" -DEPEND=">=x11-libs/gtk+-2.4.3 +RDEPEND=">=x11-libs/gtk+-2.4.3 net-p2p/gift >=gconf-2.6.0" +DEPEND="${RDEPEND} + >=sys-devel/automake-1.7.8 + >=sys-devel/autoconf-2.58" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/main.c.diff + sed -i -e 's:/doc/giftui:/share/doc/${P}:g' Makefile* + export WANT_AUTOMAKE=1.7 + export WANT_AUTOCONF=2.5 + autoconf || die + automake || die +} + +src_compile() { + econf || die + emake || die } src_install() { |