diff options
author | Maxim Koltsov <maksbotan@gentoo.org> | 2011-12-25 08:56:42 +0000 |
---|---|---|
committer | Maxim Koltsov <maksbotan@gentoo.org> | 2011-12-25 08:56:42 +0000 |
commit | 88c0836fb0af95fcc20c1620b1fb7d8a2280219b (patch) | |
tree | 4af731060b58164e2c8dbf897d9228e1bdb1321a /net-dns/avahi | |
parent | Version bump. (diff) | |
download | gentoo-2-88c0836fb0af95fcc20c1620b1fb7d8a2280219b.tar.gz gentoo-2-88c0836fb0af95fcc20c1620b1fb7d8a2280219b.tar.bz2 gentoo-2-88c0836fb0af95fcc20c1620b1fb7d8a2280219b.zip |
Fix bug 395957, call python_convert_shebangs only when use python is set
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'net-dns/avahi')
-rw-r--r-- | net-dns/avahi/ChangeLog | 6 | ||||
-rw-r--r-- | net-dns/avahi/avahi-0.6.29-r1.ebuild | 4 | ||||
-rw-r--r-- | net-dns/avahi/avahi-0.6.30-r2.ebuild | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/net-dns/avahi/ChangeLog b/net-dns/avahi/ChangeLog index bedb284305d9..18a06f4f3123 100644 --- a/net-dns/avahi/ChangeLog +++ b/net-dns/avahi/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dns/avahi # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.212 2011/12/24 17:03:27 maksbotan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/ChangeLog,v 1.213 2011/12/25 08:56:42 maksbotan Exp $ + + 25 Dec 2011; Maxim Koltsov <maksbotan@gentoo.org> avahi-0.6.29-r1.ebuild, + avahi-0.6.30-r2.ebuild: + Fix bug 395957, call python_convert_shebangs only when use python is set 18 Dec 2011; Markus Meier <maekke@gentoo.org> avahi-0.6.30-r1.ebuild: arm stable, bug #393009 diff --git a/net-dns/avahi/avahi-0.6.29-r1.ebuild b/net-dns/avahi/avahi-0.6.29-r1.ebuild index 4989c382dd02..6ab2da5ad5fc 100644 --- a/net-dns/avahi/avahi-0.6.29-r1.ebuild +++ b/net-dns/avahi/avahi-0.6.29-r1.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-dns/avahi/avahi-0.6.29-r1.ebuild,v 1.1 2011/12/24 17:03:27 maksbotan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.29-r1.ebuild,v 1.2 2011/12/25 08:56:42 maksbotan Exp $ EAPI="3" @@ -178,7 +178,7 @@ src_install() { insinto /usr/share/devhelp/books/avahi doins avahi.devhelp || die fi - python_convert_shebangs 2 "${ED}"usr/bin/avahi-discover || die + use python && python_convert_shebangs 2 "${ED}"usr/bin/avahi-discover || die } pkg_postrm() { diff --git a/net-dns/avahi/avahi-0.6.30-r2.ebuild b/net-dns/avahi/avahi-0.6.30-r2.ebuild index f4c5deb3b024..0d2ede26f27f 100644 --- a/net-dns/avahi/avahi-0.6.30-r2.ebuild +++ b/net-dns/avahi/avahi-0.6.30-r2.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-dns/avahi/avahi-0.6.30-r2.ebuild,v 1.1 2011/12/24 17:03:27 maksbotan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/avahi/avahi-0.6.30-r2.ebuild,v 1.2 2011/12/25 08:56:42 maksbotan Exp $ EAPI="3" @@ -188,7 +188,7 @@ src_install() { insinto /usr/share/devhelp/books/avahi doins avahi.devhelp || die fi - python_convert_shebangs 2 "${ED}"usr/bin/avahi-discover || die + use python && python_convert_shebangs 2 "${ED}"usr/bin/avahi-discover || die # Remove .la files find "${D}" -name '*.la' -exec rm -f {} + || die |