diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-11-28 02:30:44 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-11-28 02:30:44 +0000 |
commit | c3a141f5e98dfd29ced8b411f1028c07fc58d975 (patch) | |
tree | 602a42d9e8484baf870b75f7957cac9e694f8769 /net-mail | |
parent | Fix autotools-utils usage (bug #392171). (diff) | |
download | gentoo-2-c3a141f5e98dfd29ced8b411f1028c07fc58d975.tar.gz gentoo-2-c3a141f5e98dfd29ced8b411f1028c07fc58d975.tar.bz2 gentoo-2-c3a141f5e98dfd29ced8b411f1028c07fc58d975.zip |
Fix autotools-utils usage (bug #392169).
(Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/mswatch/ChangeLog | 5 | ||||
-rw-r--r-- | net-mail/mswatch/mswatch-1.2.0.ebuild | 16 |
2 files changed, 10 insertions, 11 deletions
diff --git a/net-mail/mswatch/ChangeLog b/net-mail/mswatch/ChangeLog index 019cb8b6e0db..4c67fd45693c 100644 --- a/net-mail/mswatch/ChangeLog +++ b/net-mail/mswatch/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-mail/mswatch # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mswatch/ChangeLog,v 1.2 2011/11/27 03:35:47 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mswatch/ChangeLog,v 1.3 2011/11/28 02:30:44 radhermit Exp $ + + 28 Nov 2011; Tim Harder <radhermit@gentoo.org> mswatch-1.2.0.ebuild: + Fix autotools-utils usage (bug #392169). 27 Nov 2011; Tim Harder <radhermit@gentoo.org> mswatch-1.2.0.ebuild: Build in the source tree. diff --git a/net-mail/mswatch/mswatch-1.2.0.ebuild b/net-mail/mswatch/mswatch-1.2.0.ebuild index f83ab6ce794d..8c907aeab974 100644 --- a/net-mail/mswatch/mswatch-1.2.0.ebuild +++ b/net-mail/mswatch/mswatch-1.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mswatch/mswatch-1.2.0.ebuild,v 1.2 2011/11/27 03:35:47 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mswatch/mswatch-1.2.0.ebuild,v 1.3 2011/11/28 02:30:44 radhermit Exp $ EAPI="4" @@ -22,15 +22,11 @@ DEPEND="${RDEPEND} CONFIG_CHECK="~INOTIFY_USER" ERROR_INOTIFY_USER="${P} requires in-kernel inotify support." -AUTOTOOLS_IN_SOURCE_BUILD=1 +DOCS=( AUTHORS NEWS README THANKS TODO ) src_configure() { - econf \ - --with-notify=inotify \ - $(use_enable static-libs static) -} - -src_install() { - default - remove_libtool_files + local myeconfargs=( + --with-notify=inotify + ) + autotools-utils_src_configure } |