diff options
author | Stephen Klimaszewski <steev@gentoo.org> | 2007-01-25 15:27:20 +0000 |
---|---|---|
committer | Stephen Klimaszewski <steev@gentoo.org> | 2007-01-25 15:27:20 +0000 |
commit | 6ef22513d2990081c0e9fd17d6275d3f91be3fac (patch) | |
tree | 9f46bfda4b449542cd80f29565d91fbdf134e7b1 /media-sound/last-exit | |
parent | Add ~amd64, bug 163396 (diff) | |
download | gentoo-2-6ef22513d2990081c0e9fd17d6275d3f91be3fac.tar.gz gentoo-2-6ef22513d2990081c0e9fd17d6275d3f91be3fac.tar.bz2 gentoo-2-6ef22513d2990081c0e9fd17d6275d3f91be3fac.zip |
Add patch from Priit Laes to fix parallel building. Closes bug #163545
(Portage version: 2.1.1-r2)
Diffstat (limited to 'media-sound/last-exit')
-rw-r--r-- | media-sound/last-exit/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/last-exit/files/last-exit-dbus-sharp-parallel-build-fix.patch | 13 | ||||
-rw-r--r-- | media-sound/last-exit/last-exit-4.0.ebuild | 8 |
3 files changed, 26 insertions, 2 deletions
diff --git a/media-sound/last-exit/ChangeLog b/media-sound/last-exit/ChangeLog index db71c5febb6b..3a49f9582f68 100644 --- a/media-sound/last-exit/ChangeLog +++ b/media-sound/last-exit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/last-exit # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/last-exit/ChangeLog,v 1.8 2007/01/24 02:15:01 steev Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/last-exit/ChangeLog,v 1.9 2007/01/25 15:27:20 steev Exp $ + + 25 Jan 2007; Steev Klimaszewski <steev@gentoo.org> + +files/last-exit-dbus-sharp-parallel-build-fix.patch, + last-exit-4.0.ebuild: + Add patch from Priit Laes to fix parallel building. Closes bug #163545 24 Jan 2007; Steev Klimaszewski <steev@gentoo.org> last-exit-4.0.ebuild: Fix the path for 4.0, Closes bug #163529. Thanks to Jose daLuz diff --git a/media-sound/last-exit/files/last-exit-dbus-sharp-parallel-build-fix.patch b/media-sound/last-exit/files/last-exit-dbus-sharp-parallel-build-fix.patch new file mode 100644 index 000000000000..59d4ce51141d --- /dev/null +++ b/media-sound/last-exit/files/last-exit-dbus-sharp-parallel-build-fix.patch @@ -0,0 +1,13 @@ +Index: dbus-sharp/Makefile.am +=================================================================== +--- dbus-sharp/Makefile.am (revision 89) ++++ dbus-sharp/Makefile.am (working copy) +@@ -15,7 +15,7 @@ all: $(DBUS_ASSEMBLY) $(DBUS_GLIB_ASSEMB + $(DBUS_ASSEMBLY): $(DBUS_SRC) + $(MCS) -target:library -out:$@ -unsafe -r:Mono.Posix $(DBUS_SRC) + +-$(DBUS_GLIB_ASSEMBLY): $(DBUS_GLIB_SRC) ++$(DBUS_GLIB_ASSEMBLY): $(DBUS_ASSEMBLY) $(DBUS_GLIB_SRC) + $(MCS) -target:library -out:$@ -r:$(DBUS_ASSEMBLY) $(DBUS_GLIB_SRC) + + EXTRA_DIST = $(DBUS_SRC) $(DBUS_GLIB_SRC) $(DBUS_GLIB_ASSEMBLY).config.in diff --git a/media-sound/last-exit/last-exit-4.0.ebuild b/media-sound/last-exit/last-exit-4.0.ebuild index 36fda752d102..5781c2886fa9 100644 --- a/media-sound/last-exit/last-exit-4.0.ebuild +++ b/media-sound/last-exit/last-exit-4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/last-exit/last-exit-4.0.ebuild,v 1.2 2007/01/24 02:15:01 steev Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/last-exit/last-exit-4.0.ebuild,v 1.3 2007/01/25 15:27:20 steev Exp $ inherit mono gnome2 eutils @@ -34,6 +34,12 @@ pkg_setup() { --disable-schemas-install" } +src_unpack() { + unpack ${A} + cd ${S} + epatch "${FILESDIR}"/${PN}-dbus-sharp-parallel-build-fix.patch +} + src_install() { make DESTDIR="${D}" install } |