diff options
author | Peter Volkov <pva@gentoo.org> | 2008-01-26 13:03:18 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-01-26 13:03:18 +0000 |
commit | 3c7ec8e8d5d4b865e66a64fadda5a8e8f9955e79 (patch) | |
tree | 246cadfb5f31b821739bb9b353b52fdbe97a18f4 /net-analyzer | |
parent | Moved autotools to src_unpack, bug #207461, thank Diego Pettenò <flameeyes A... (diff) | |
download | historical-3c7ec8e8d5d4b865e66a64fadda5a8e8f9955e79.tar.gz historical-3c7ec8e8d5d4b865e66a64fadda5a8e8f9955e79.tar.bz2 historical-3c7ec8e8d5d4b865e66a64fadda5a8e8f9955e79.zip |
Moved autotools stuff to src_unpack, bug #207459, thank Diego Pettenò <flameeyes AT gentoo.org> for report.
Package-Manager: portage-2.1.4_rc14
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/cacti-cactid/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/cacti-cactid/cacti-cactid-0.8.6i-r1.ebuild | 9 |
2 files changed, 11 insertions, 6 deletions
diff --git a/net-analyzer/cacti-cactid/ChangeLog b/net-analyzer/cacti-cactid/ChangeLog index 0967ae1aec6b..7e8de86d0bf5 100644 --- a/net-analyzer/cacti-cactid/ChangeLog +++ b/net-analyzer/cacti-cactid/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/cacti-cactid -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-cactid/ChangeLog,v 1.36 2007/09/06 16:17:30 jokey Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-cactid/ChangeLog,v 1.37 2008/01/26 13:03:18 pva Exp $ + + 26 Jan 2008; <pva@gentoo.org> cacti-cactid-0.8.6i-r1.ebuild: + Moved autotools stuff to src_unpack, bug #207459, thank Diego Pettenò + <flameeyes AT gentoo.org> for report. 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -cacti-cactid-0.8.6g.ebuild: diff --git a/net-analyzer/cacti-cactid/cacti-cactid-0.8.6i-r1.ebuild b/net-analyzer/cacti-cactid/cacti-cactid-0.8.6i-r1.ebuild index dfe455444249..12f29298630e 100644 --- a/net-analyzer/cacti-cactid/cacti-cactid-0.8.6i-r1.ebuild +++ b/net-analyzer/cacti-cactid/cacti-cactid-0.8.6i-r1.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-analyzer/cacti-cactid/cacti-cactid-0.8.6i-r1.ebuild,v 1.8 2007/07/19 13:27:10 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/cacti-cactid/cacti-cactid-0.8.6i-r1.ebuild,v 1.9 2008/01/26 13:03:18 pva Exp $ WANT_AUTOCONF="latest" inherit autotools @@ -26,11 +26,12 @@ src_unpack() { sed -i -e 's/^bin_PROGRAMS/sbin_PROGRAMS/' Makefile.am sed -i -e 's/mysqlclient/mysqlclient_r/g' configure.ac sed -i -e 's/wwwroot\/cacti\/log/var\/log/g' cactid.h -} -src_compile() { eaclocal eautoconf +} + +src_compile() { econf || die "econf failed" emake || die "emake failed" } |