diff options
author | Stefan Knoblich <stkn@gentoo.org> | 2005-08-28 21:50:47 +0000 |
---|---|---|
committer | Stefan Knoblich <stkn@gentoo.org> | 2005-08-28 21:50:47 +0000 |
commit | 1e82c782067b7704da84f86941edcab86ff4dcd9 (patch) | |
tree | 63fabcf03fe9334f0f1af4b2dca74ddc4382a94a /net-misc/asterisk | |
parent | ~amd64 (diff) | |
download | gentoo-2-1e82c782067b7704da84f86941edcab86ff4dcd9.tar.gz gentoo-2-1e82c782067b7704da84f86941edcab86ff4dcd9.tar.bz2 gentoo-2-1e82c782067b7704da84f86941edcab86ff4dcd9.zip |
Added workaround for the "missing version string" problem
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-misc/asterisk')
-rw-r--r-- | net-misc/asterisk/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/asterisk/asterisk-1.2.0_beta1.ebuild | 6 |
2 files changed, 13 insertions, 2 deletions
diff --git a/net-misc/asterisk/ChangeLog b/net-misc/asterisk/ChangeLog index 2a7d298d4290..c141364ddff0 100644 --- a/net-misc/asterisk/ChangeLog +++ b/net-misc/asterisk/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-misc/asterisk # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk/ChangeLog,v 1.78 2005/08/27 23:33:45 stkn Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk/ChangeLog,v 1.79 2005/08/28 21:50:47 stkn Exp $ + + 28 Aug 2005; Stefan Knoblich <stkn@gentoo.org> + asterisk-1.2.0_beta1.ebuild: + Added a workaround for the missing version information (thanks to DBoone on + IRC for pointing this out). Make all would do a clean run because of a + left-over .cleancount file in the tarball, killing the .version file. We + simply remove .cleancount now if it does exist. 28 Aug 2005; Stefan Knoblich <stkn@gentoo.org> asterisk-1.2.0_beta1.ebuild: diff --git a/net-misc/asterisk/asterisk-1.2.0_beta1.ebuild b/net-misc/asterisk/asterisk-1.2.0_beta1.ebuild index 9b5e7e7f48b9..9d255a867d2b 100644 --- a/net-misc/asterisk/asterisk-1.2.0_beta1.ebuild +++ b/net-misc/asterisk/asterisk-1.2.0_beta1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk/asterisk-1.2.0_beta1.ebuild,v 1.2 2005/08/27 23:33:45 stkn Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/asterisk/asterisk-1.2.0_beta1.ebuild,v 1.3 2005/08/28 21:50:47 stkn Exp $ inherit eutils @@ -114,6 +114,10 @@ src_unpack() { epatch ${FILESDIR}/1.0.0/${PN}-1.0.5-uclibc-dns.diff fi + # remove this file, it's a leftover and asterisk's makefile + # will kill the .version file which is needed for the version number + [[ -f .cleancount ]] && rm -f .cleancount + # # BRI patches # |