diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2011-02-04 15:24:59 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2011-02-04 15:24:59 +0000 |
commit | 4079d15b917a750b1f6e7367b34b8b58047e963c (patch) | |
tree | 679404c71418ac4591071e1ab707af9769903426 /app-emulation/virt-manager | |
parent | Version bump (diff) | |
download | gentoo-2-4079d15b917a750b1f6e7367b34b8b58047e963c.tar.gz gentoo-2-4079d15b917a750b1f6e7367b34b8b58047e963c.tar.bz2 gentoo-2-4079d15b917a750b1f6e7367b34b8b58047e963c.zip |
Update 999 ebuild to be compatible with normal release ebuilds
(Portage version: 2.1.9.35/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/virt-manager')
-rw-r--r-- | app-emulation/virt-manager/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/virt-manager/virt-manager-9999.ebuild | 24 |
2 files changed, 17 insertions, 12 deletions
diff --git a/app-emulation/virt-manager/ChangeLog b/app-emulation/virt-manager/ChangeLog index 0daca0d84ec6..9857500c9b4a 100644 --- a/app-emulation/virt-manager/ChangeLog +++ b/app-emulation/virt-manager/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/virt-manager # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v 1.38 2011/02/02 22:23:10 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v 1.39 2011/02/04 15:24:59 cardoe Exp $ + + 04 Feb 2011; Doug Goldstein <cardoe@gentoo.org> virt-manager-9999.ebuild: + Update 999 ebuild to be compatible with normal release ebuilds 02 Feb 2011; Doug Goldstein <cardoe@gentoo.org> virt-manager-0.8.5.ebuild: Fix up build depends diff --git a/app-emulation/virt-manager/virt-manager-9999.ebuild b/app-emulation/virt-manager/virt-manager-9999.ebuild index c65b7667034b..d41eb914a484 100644 --- a/app-emulation/virt-manager/virt-manager-9999.ebuild +++ b/app-emulation/virt-manager/virt-manager-9999.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/app-emulation/virt-manager/virt-manager-9999.ebuild,v 1.1 2011/01/13 16:16:35 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/virt-manager-9999.ebuild,v 1.2 2011/02/04 15:24:59 cardoe Exp $ #BACKPORTS=1 @@ -58,16 +58,18 @@ src_prepare() { EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \ epatch - # virt-manager's autogen.sh touches this and eautoreconf fails - # unless we do this - touch config.rpath - - rm -f config.status - intltoolize --automake --copy --force - perl -i -p -e 's,^DATADIRNAME.*$,DATADIRNAME = share,' po/Makefile.in.in - perl -i -p -e 's,^GETTEXT_PACKAGE.*$,GETTEXT_PACKAGE = virt-manager,' \ - po/Makefile.in.i - eautoreconf + if [[ ${PV} = *9999* ]]; then + # virt-manager's autogen.sh touches this and eautoreconf fails + # unless we do this + touch config.rpath + + rm -f config.status + intltoolize --automake --copy --force + perl -i -p -e 's,^DATADIRNAME.*$,DATADIRNAME = share,' po/Makefile.in.in + perl -i -p -e 's,^GETTEXT_PACKAGE.*$,GETTEXT_PACKAGE = virt-manager,' \ + po/Makefile.in.i + eautoreconf + fi gnome2_src_prepare } |