diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-11-15 13:25:52 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-11-15 13:25:52 +0000 |
commit | 434a46741358ba3cbd6949b40385f9b4ecaffedb (patch) | |
tree | 157efc62a8586dd6a0b8ca97535be53d96b8dcc2 /app-misc | |
parent | Invert dependencies. (diff) | |
download | gentoo-2-434a46741358ba3cbd6949b40385f9b4ecaffedb.tar.gz gentoo-2-434a46741358ba3cbd6949b40385f9b4ecaffedb.tar.bz2 gentoo-2-434a46741358ba3cbd6949b40385f9b4ecaffedb.zip |
Die on dobin failure (since the make process ignores build errors).
(Portage version: 2.2_rc14/cvs/Linux 2.6.27-gentoo-r2 x86_64)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/mplinuxman/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/mplinuxman/mplinuxman-1.5.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app-misc/mplinuxman/ChangeLog b/app-misc/mplinuxman/ChangeLog index ffb862c65377..cd9b99eb8a91 100644 --- a/app-misc/mplinuxman/ChangeLog +++ b/app-misc/mplinuxman/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/mplinuxman # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mplinuxman/ChangeLog,v 1.14 2008/05/17 09:22:04 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/mplinuxman/ChangeLog,v 1.15 2008/11/15 13:25:52 flameeyes Exp $ + + 15 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org> + mplinuxman-1.5.ebuild: + Die on dobin failure (since the make process ignores build errors). 17 May 2008; Samuli Suominen <drac@gentoo.org> mplinuxman-1.5.ebuild: Use virtual/mpg123. diff --git a/app-misc/mplinuxman/mplinuxman-1.5.ebuild b/app-misc/mplinuxman/mplinuxman-1.5.ebuild index 791b4b27485e..6927a0b11cb4 100644 --- a/app-misc/mplinuxman/mplinuxman-1.5.ebuild +++ b/app-misc/mplinuxman/mplinuxman-1.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mplinuxman/mplinuxman-1.5.ebuild,v 1.5 2008/05/17 09:22:04 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/mplinuxman/mplinuxman-1.5.ebuild,v 1.6 2008/11/15 13:25:52 flameeyes Exp $ inherit eutils toolchain-funcs @@ -40,11 +40,11 @@ src_compile() { } src_install() { - dobin ${PN} extra/mp_util/{mputil,mputil_smart} + dobin ${PN} extra/mp_util/{mputil,mputil_smart} || die "dobin failed" dodir /usr/share/locale/{de,es,fr,ja,nl}/LC_MESSAGES - DESTDIR="${D}" emake install-po + DESTDIR="${D}" emake install-po || die "emake insall-po failed" newicon logo.xpm ${PN}.xpm make_desktop_entry ${PN} ${PN} ${PN} "AudioVideo;Audio;GTK;" |