diff options
author | 2004-11-18 08:10:41 +0000 | |
---|---|---|
committer | 2004-11-18 08:10:41 +0000 | |
commit | 9caa7a9f0f4e27549409b36a7ddcc6fc485e23e4 (patch) | |
tree | 72a77c865b416a3c2f6e7810de381850b7e9fe6f /x11-misc | |
parent | Added to ~amd64. (Manifest recommit) (diff) | |
download | gentoo-2-9caa7a9f0f4e27549409b36a7ddcc6fc485e23e4.tar.gz gentoo-2-9caa7a9f0f4e27549409b36a7ddcc6fc485e23e4.tar.bz2 gentoo-2-9caa7a9f0f4e27549409b36a7ddcc6fc485e23e4.zip |
get_libdir updates.
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/linuxwacom/linuxwacom-0.6.4.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/x11-misc/linuxwacom/linuxwacom-0.6.4.ebuild b/x11-misc/linuxwacom/linuxwacom-0.6.4.ebuild index 29bbde803ee7..0c3a60d7e31e 100644 --- a/x11-misc/linuxwacom/linuxwacom-0.6.4.ebuild +++ b/x11-misc/linuxwacom/linuxwacom-0.6.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/linuxwacom/linuxwacom-0.6.4.ebuild,v 1.3 2004/11/18 08:05:51 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/linuxwacom/linuxwacom-0.6.4.ebuild,v 1.4 2004/11/18 08:10:41 eradicator Exp $ IUSE="gtk gtk2 tcltk sdk" @@ -102,14 +102,14 @@ src_compile() { fi if use sdk; then - myconf="--enable-wacomdrv --enable-wacdump --enable-xsetwacom --with-xf86=/usr/X11R6/lib/Server $withgtk $withtcltk" + myconf="--enable-wacomdrv --enable-wacdump --enable-xsetwacom --with-xf86=/usr/X11R6/$(get_libdir)/Server $withgtk $withtcltk" econf ${myconf} || die "configure failed." # Makefile fix for build against SDK cd ${S}/src cp Makefile Makefile.orig - sed -i -e "s:XF86_DIR = .*:XF86_DIR = /usr/X11R6/lib/Server:" Makefile - sed -i -e "s:XF86_V3_DIR = .*:XF86_V3_DIR = /usr/X11R6/lib/Server:" Makefile + sed -i -e "s:XF86_DIR = .*:XF86_DIR = /usr/X11R6/$(get_libdir)/Server:" Makefile + sed -i -e "s:XF86_V3_DIR = .*:XF86_V3_DIR = /usr/X11R6/$(get_libdir)/Server:" Makefile sed -i -e "s:/include/extensions:/include:g" Makefile else myconf="--disable-wacomdrv --enable-wacdump --enable-xsetwacom $withgtk $withtcltk" @@ -120,7 +120,7 @@ src_compile() { } src_install() { - emake DESTDIR=${D} install || die "Install failed." + emake DESTDIR="${D}" install || die "Install failed." dohtml -r docs/* dodoc AUTHORS ChangeLog NEWS README } |