summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2010-05-19 21:42:18 +0000
committerChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2010-05-19 21:42:18 +0000
commitd2a2c4aac6fe9131de04e4764a2b83be3e071344 (patch)
treecb24940cbf758f7bf847e6247e2d6174b4a0740a /www-plugins/lightspark
parentDelete older ebuild. (diff)
downloadgentoo-2-d2a2c4aac6fe9131de04e4764a2b83be3e071344.tar.gz
gentoo-2-d2a2c4aac6fe9131de04e4764a2b83be3e071344.tar.bz2
gentoo-2-d2a2c4aac6fe9131de04e4764a2b83be3e071344.zip
Fix permissions of installed binary
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'www-plugins/lightspark')
-rw-r--r--www-plugins/lightspark/ChangeLog8
-rw-r--r--www-plugins/lightspark/lightspark-0.3.3-r1.ebuild (renamed from www-plugins/lightspark/lightspark-0.3.3.ebuild)7
2 files changed, 11 insertions, 4 deletions
diff --git a/www-plugins/lightspark/ChangeLog b/www-plugins/lightspark/ChangeLog
index d880cb56c0ec..d6e7159b31ea 100644
--- a/www-plugins/lightspark/ChangeLog
+++ b/www-plugins/lightspark/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for www-plugins/lightspark
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/ChangeLog,v 1.1 2010/05/19 14:04:48 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/ChangeLog,v 1.2 2010/05/19 21:42:18 chithanh Exp $
+
+*lightspark-0.3.3-r1 (19 May 2010)
+
+ 19 May 2010; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+ -lightspark-0.3.3.ebuild, +lightspark-0.3.3-r1.ebuild:
+ Fix permissions of installed binary
*lightspark-0.3.3 (19 May 2010)
diff --git a/www-plugins/lightspark/lightspark-0.3.3.ebuild b/www-plugins/lightspark/lightspark-0.3.3-r1.ebuild
index a407a5a143b9..3c2d518a8033 100644
--- a/www-plugins/lightspark/lightspark-0.3.3.ebuild
+++ b/www-plugins/lightspark/lightspark-0.3.3-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/lightspark-0.3.3.ebuild,v 1.1 2010/05/19 14:04:48 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-plugins/lightspark/lightspark-0.3.3-r1.ebuild,v 1.1 2010/05/19 21:42:18 chithanh Exp $
EAPI=3
inherit cmake-utils nsplugins multilib
@@ -40,8 +40,9 @@ src_prepare() {
# Adjust plugin directory
sed -i "s|/usr/lib/mozilla/|/usr/$(get_libdir)/${PN}/|" plugin-dir/CMakeLists.txt || die
- # Adjust plugin permissions
- sed -i "s|FILES|PROGRAMS|" plugin-dir/CMakeLists.txt || die
+ # Adjust executable and plugin permissions
+ sed -i 's|FILES ${CMAKE_CURRENT_BINARY_DIR}|PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}|' CMakeLists.txt || die
+ sed -i 's|FILES|PROGRAMS|' plugin-dir/CMakeLists.txt || die
}
src_configure() {