diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-04-24 04:04:01 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-04-24 04:04:01 +0000 |
commit | 3dafc6f0851922587a7b14cedfc9fd9b7e860f78 (patch) | |
tree | 64333867df1152049fc79a0f53aca10a0f77e6da /x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.1.ebuild | |
parent | Make udev USE flag control everything udev-related to fix gvfs on bsd (bug #4... (diff) | |
download | gentoo-2-3dafc6f0851922587a7b14cedfc9fd9b7e860f78.tar.gz gentoo-2-3dafc6f0851922587a7b14cedfc9fd9b7e860f78.tar.bz2 gentoo-2-3dafc6f0851922587a7b14cedfc9fd9b7e860f78.zip |
Change "mktemp --suffix" to "mktemp -t" and drop coreutils dep to fix building on bsd (bug #413287, thanks to Alexis Ballier).
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.1.ebuild')
-rw-r--r-- | x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.1.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.1.ebuild b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.1.ebuild index 0449e17340b5..4eca4ef57d32 100644 --- a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.1.ebuild +++ b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.1.ebuild,v 1.1 2012/04/14 20:52:57 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gdk-pixbuf/gdk-pixbuf-2.26.1.ebuild,v 1.2 2012/04/24 04:04:01 tetromino Exp $ EAPI="4" @@ -24,7 +24,6 @@ COMMON_DEPEND=" X? ( x11-libs/libX11 )" DEPEND="${COMMON_DEPEND} >=dev-util/pkgconfig-0.9 - >=sys-apps/coreutils-8.5 >=sys-devel/gettext-0.17 >=dev-util/gtk-doc-am-1.11 doc? ( @@ -75,7 +74,7 @@ pkg_postinst() { # causes segfault if set, see bug 375615 unset __GL_NO_DSO_FINALIZER - tmp_file=$(mktemp --suffix=gdk_pixbuf_ebuild) + tmp_file=$(mktemp -t tmp.XXXXXXXXXXgdk_pixbuf_ebuild) # be atomic! gdk-pixbuf-query-loaders > "${tmp_file}" if [ "${?}" = "0" ]; then |