summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Yao <ryao@gentoo.org>2014-08-03 22:41:19 +0000
committerRichard Yao <ryao@gentoo.org>2014-08-03 22:41:19 +0000
commit2b601f587413284b522753068dca61da1193fd6a (patch)
tree558a080812e7c015398e7e604691ef3ba2466edc /www-plugins/pipelight
parentRemove old (diff)
downloadgentoo-2-2b601f587413284b522753068dca61da1193fd6a.tar.gz
gentoo-2-2b601f587413284b522753068dca61da1193fd6a.tar.bz2
gentoo-2-2b601f587413284b522753068dca61da1193fd6a.zip
Fix mistake that used $DESTDIR instead of $ED. Thanks Michael. Bug #481596 Comment #46
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xBEE84C64)
Diffstat (limited to 'www-plugins/pipelight')
-rw-r--r--www-plugins/pipelight/ChangeLog6
-rw-r--r--www-plugins/pipelight/pipelight-9999.ebuild4
2 files changed, 7 insertions, 3 deletions
diff --git a/www-plugins/pipelight/ChangeLog b/www-plugins/pipelight/ChangeLog
index 59951184bd6b..f31a959b8840 100644
--- a/www-plugins/pipelight/ChangeLog
+++ b/www-plugins/pipelight/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for www-plugins/pipelight
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/pipelight/ChangeLog,v 1.4 2014/08/02 03:35:35 ryao Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/pipelight/ChangeLog,v 1.5 2014/08/03 22:41:19 ryao Exp $
+
+ 04 Aug 2014; Richard Yao <ryao@gentoo.org> pipelight-9999.ebuild:
+ Fix mistake that used $DESTDIR instead of $ED. Thanks Michael. Bug #481596
+ Comment #46
02 Aug 2014; Richard Yao <ryao@gentoo.org> pipelight-9999.ebuild:
Change sed command in response to build failure report from HyperJapan on the
diff --git a/www-plugins/pipelight/pipelight-9999.ebuild b/www-plugins/pipelight/pipelight-9999.ebuild
index 480879dabbbf..17d86ca80a37 100644
--- a/www-plugins/pipelight/pipelight-9999.ebuild
+++ b/www-plugins/pipelight/pipelight-9999.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/pipelight/pipelight-9999.ebuild,v 1.4 2014/08/02 03:35:35 ryao Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/pipelight/pipelight-9999.ebuild,v 1.5 2014/08/03 22:41:19 ryao Exp $
EAPI=5
@@ -38,7 +38,7 @@ src_install() {
# properly duplicate the plugins.
# XXX: Patch the script to support DESTDIR and send the patch upstream.
sed -e "s:^\(PIPELIGHT_LIBRARY_PATH=\"\)\\(.*\):\1${ED}usr/$(get_libdir)/${PN}\":" \
- "${DESTDIR}/usr/bin/pipelight-plugin" > "${T}/pipelight-plugin" \
+ "${ED}/usr/bin/pipelight-plugin" > "${T}/pipelight-plugin" \
|| die "Generating temporary pipelight-plugin failed"
chmod u+x "${T}/pipelight-plugin" \
|| die "Setting permissions on temporary pipelight-plugin failed"