summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-08-20 05:20:14 +0000
committerUlrich Müller <ulm@gentoo.org>2011-08-20 05:20:14 +0000
commitab8fcb4f478ac621342b95737653f784bbb44434 (patch)
treeceef2935386c0204670901df0907c192a71c2dcb /x11-libs/openmotif
parentVersion bump for #379715 by Nathan Phillip Brink. (diff)
downloadgentoo-2-ab8fcb4f478ac621342b95737653f784bbb44434.tar.gz
gentoo-2-ab8fcb4f478ac621342b95737653f784bbb44434.tar.bz2
gentoo-2-ab8fcb4f478ac621342b95737653f784bbb44434.zip
Call dosym with proper second argument. Add static-libs USE flag.
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/openmotif')
-rw-r--r--x11-libs/openmotif/ChangeLog5
-rw-r--r--x11-libs/openmotif/openmotif-2.3.2-r2.ebuild10
2 files changed, 11 insertions, 4 deletions
diff --git a/x11-libs/openmotif/ChangeLog b/x11-libs/openmotif/ChangeLog
index e0de4d8fff6b..dc450cce2258 100644
--- a/x11-libs/openmotif/ChangeLog
+++ b/x11-libs/openmotif/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/openmotif
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.261 2011/03/07 11:04:25 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/ChangeLog,v 1.262 2011/08/20 05:20:14 ulm Exp $
+
+ 20 Aug 2011; Ulrich Mueller <ulm@gentoo.org> openmotif-2.3.2-r2.ebuild:
+ Call dosym with proper second argument. Add static-libs USE flag.
07 Mar 2011; Ulrich Mueller <ulm@gentoo.org> openmotif-2.2.3-r11.ebuild,
openmotif-2.3.2-r2.ebuild, openmotif-2.3.3.ebuild:
diff --git a/x11-libs/openmotif/openmotif-2.3.2-r2.ebuild b/x11-libs/openmotif/openmotif-2.3.2-r2.ebuild
index b12b23b98b3a..4f3c34f19895 100644
--- a/x11-libs/openmotif/openmotif-2.3.2-r2.ebuild
+++ b/x11-libs/openmotif/openmotif-2.3.2-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.2-r2.ebuild,v 1.18 2011/03/07 11:04:25 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/openmotif/openmotif-2.3.2-r2.ebuild,v 1.19 2011/08/20 05:20:14 ulm Exp $
EAPI=3
@@ -13,7 +13,7 @@ SRC_URI="ftp://ftp.ics.com/openmotif/${PV%.*}/${PV}/${P}.tar.gz"
LICENSE="MOTIF MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~ppc-aix ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc examples jpeg png unicode xft"
+IUSE="doc examples jpeg png static-libs unicode xft"
# license allows distribution only for "open source operating systems"
RESTRICT="!kernel_linux? (
!kernel_FreeBSD? (
@@ -116,6 +116,7 @@ src_configure() {
fi
econf --with-x \
+ $(use_enable static-libs static) \
$(use_enable unicode utf8) \
$(use_enable xft) \
$(use_enable jpeg) \
@@ -135,7 +136,7 @@ src_install() {
dodir /etc/X11/mwm
mv -f "${ED}"/usr/$(get_libdir)/X11/system.mwmrc "${ED}"/etc/X11/mwm
- dosym /etc/X11/mwm/system.mwmrc /usr/$(get_libdir)/X11/
+ dosym /etc/X11/mwm/system.mwmrc /usr/$(get_libdir)/X11/system.mwmrc
if use examples; then
emake -j1 -C demos DESTDIR="${D}" install-data \
@@ -145,6 +146,9 @@ src_install() {
fi
rm -rf "${ED}"/usr/share/Xm
+ # don't install libtool archives
+ rm -f "${ED}"/usr/$(get_libdir)/*.la
+
dodoc BUGREPORT ChangeLog README RELEASE RELNOTES TODO
}