diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2004-02-18 19:03:35 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2004-02-18 19:03:35 +0000 |
commit | 8090fdcd4767587dd660ed8d38a59d80c52af798 (patch) | |
tree | 8e8945fb9ff1c22aee7e28df65b60f8744d4534c /net-dialup/isdn4k-utils | |
parent | Yet another new tarball of the same name from zinf... new digest... (Manifest... (diff) | |
download | gentoo-2-8090fdcd4767587dd660ed8d38a59d80c52af798.tar.gz gentoo-2-8090fdcd4767587dd660ed8d38a59d80c52af798.tar.bz2 gentoo-2-8090fdcd4767587dd660ed8d38a59d80c52af798.zip |
Run aclocal and then automake --add-missing to properly install 'compile'.
Also add proper automake --add-missing for capiinfo. This closes bug #41667.
Diffstat (limited to 'net-dialup/isdn4k-utils')
-rw-r--r-- | net-dialup/isdn4k-utils/ChangeLog | 9 | ||||
-rw-r--r-- | net-dialup/isdn4k-utils/isdn4k-utils-3.2_p1-r4.ebuild | 15 |
2 files changed, 18 insertions, 6 deletions
diff --git a/net-dialup/isdn4k-utils/ChangeLog b/net-dialup/isdn4k-utils/ChangeLog index d67f616924bf..99ce0c05d1c3 100644 --- a/net-dialup/isdn4k-utils/ChangeLog +++ b/net-dialup/isdn4k-utils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dialup/isdn4k-utils -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/ChangeLog,v 1.13 2003/12/23 12:58:41 lanius Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/ChangeLog,v 1.14 2004/02/18 19:03:35 azarah Exp $ + + 18 Feb 2004; Martin Schlemmer <azarah@gentoo.org> + isdn4k-utils-3.2_p1-r4.ebuild: + Run aclocal and then automake --add-missing to properly install 'compile'. + Also add proper automake --add-missing for capiinfo. This closes bug #41667. *isdn4k-utils-3.2_p1-r4 (23 Dec 2003) diff --git a/net-dialup/isdn4k-utils/isdn4k-utils-3.2_p1-r4.ebuild b/net-dialup/isdn4k-utils/isdn4k-utils-3.2_p1-r4.ebuild index 17c40b55f988..c919aa5f7af3 100644 --- a/net-dialup/isdn4k-utils/isdn4k-utils-3.2_p1-r4.ebuild +++ b/net-dialup/isdn4k-utils/isdn4k-utils-3.2_p1-r4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/isdn4k-utils-3.2_p1-r4.ebuild,v 1.1 2003/12/23 12:58:41 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/isdn4k-utils/isdn4k-utils-3.2_p1-r4.ebuild,v 1.2 2004/02/18 19:03:35 azarah Exp $ IUSE="X" VBOX_V=0.1.9 @@ -67,8 +67,15 @@ src_unpack() { epatch ${FILESDIR}/gcc33-multiline.patch - (cd capi20; libtoolize --force) - (cd capiinfo; ln -s /usr/share/automake-1.6/depcomp) + for x in capi20 capiinfo capiinit + do + cd ${S}/${x} + [ -f ltmain.sh ] && libtoolize --force + rm -f missing + aclocal + automake --add-missing + autoconf + done } src_compile() { |