diff options
author | Jeroen Roovers <jer@gentoo.org> | 2007-09-27 01:41:13 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2007-09-27 01:41:13 +0000 |
commit | 3c55708ff745f21849ef045eb313a2e8d6297db7 (patch) | |
tree | 884004885956b6c4652eeaccef7fd479e1683675 /x11-libs | |
parent | Stable on mips, per #182998. (diff) | |
download | gentoo-2-3c55708ff745f21849ef045eb313a2e8d6297db7.tar.gz gentoo-2-3c55708ff745f21849ef045eb313a2e8d6297db7.tar.bz2 gentoo-2-3c55708ff745f21849ef045eb313a2e8d6297db7.zip |
Determine which executables should go into /usr/bin.
(Portage version: 2.1.3.9)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/motif-config/ChangeLog | 6 | ||||
-rwxr-xr-x | x11-libs/motif-config/files/motif-config-0.10 | 5 | ||||
-rwxr-xr-x | x11-libs/motif-config/files/motif-config-0.9 | 5 |
3 files changed, 15 insertions, 1 deletions
diff --git a/x11-libs/motif-config/ChangeLog b/x11-libs/motif-config/ChangeLog index 2320d554f5c6..a9cb9c8d66c7 100644 --- a/x11-libs/motif-config/ChangeLog +++ b/x11-libs/motif-config/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/motif-config # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/motif-config/ChangeLog,v 1.26 2007/09/26 18:17:55 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/motif-config/ChangeLog,v 1.27 2007/09/27 01:41:12 jer Exp $ + + 27 Sep 2007; Jeroen Roovers <jer@gentoo.org> files/motif-config-0.9, + files/motif-config-0.10: + Determine which executables should go into /usr/bin. *motif-config-0.10-r1 (26 Sep 2007) *motif-config-0.9-r1 (26 Sep 2007) diff --git a/x11-libs/motif-config/files/motif-config-0.10 b/x11-libs/motif-config/files/motif-config-0.10 index 5cee2959eece..19b74b2e7902 100755 --- a/x11-libs/motif-config/files/motif-config-0.10 +++ b/x11-libs/motif-config/files/motif-config-0.10 @@ -84,6 +84,11 @@ _activate_profile() { ln -s /usr/include/${new}/${file} /usr/include/${file} retval=$((retval | $? )) done + # executables + for file in mwm uil xmbind; do + rm -f /usr/bin/${file} + ln -s /usr/@@LIBDIR@@/${new}/${file} /usr/bin/${file} + done # man pages for file in `find /usr/share/man -regex ".*-${new}\..x?.gz"`; do files="${files} ${file/-${new}/}" diff --git a/x11-libs/motif-config/files/motif-config-0.9 b/x11-libs/motif-config/files/motif-config-0.9 index bdcaabd95ac3..68de854f8b86 100755 --- a/x11-libs/motif-config/files/motif-config-0.9 +++ b/x11-libs/motif-config/files/motif-config-0.9 @@ -79,6 +79,11 @@ _activate_profile() { rm -f /usr/include/${file} ln -s /usr/include/${new}/${file} /usr/include/${file} done + # executables + for file in mwm uil xmbind; do + rm -f /usr/bin/${file} + ln -s /usr/@@LIBDIR@@/${new}/${file} /usr/bin/${file} + done # man pages for file in `find /usr/share/man -regex ".*-${new}\..x?.gz"`; do files="${files} ${file/-${new}/}" |