diff options
author | Achim Gottinger <achim@gentoo.org> | 2000-12-18 19:12:53 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2000-12-18 19:12:53 +0000 |
commit | ce12e53ad788ca8a0c7b03a80fdd3c581de37fb4 (patch) | |
tree | 46c2405e108c5752e0d34d676c785f588a740d0a /media-video/xmps | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-ce12e53ad788ca8a0c7b03a80fdd3c581de37fb4.tar.gz gentoo-2-ce12e53ad788ca8a0c7b03a80fdd3c581de37fb4.tar.bz2 gentoo-2-ce12e53ad788ca8a0c7b03a80fdd3c581de37fb4.zip |
*** empty log message ***
Diffstat (limited to 'media-video/xmps')
-rw-r--r-- | media-video/xmps/xmps-0.1.3-r1.ebuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/media-video/xmps/xmps-0.1.3-r1.ebuild b/media-video/xmps/xmps-0.1.3-r1.ebuild index 9277f0036bd1..6c0a7cba6adf 100644 --- a/media-video/xmps/xmps-0.1.3-r1.ebuild +++ b/media-video/xmps/xmps-0.1.3-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-video/xmps/xmps-0.1.3-r1.ebuild,v 1.5 2000/11/05 12:59:09 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/xmps/xmps-0.1.3-r1.ebuild,v 1.6 2000/12/18 19:12:53 achim Exp $ P=xmps-0.1.3 A=${P}.tar.gz @@ -39,7 +39,12 @@ src_compile() { src_install () { cd ${S} - try make DESTDIR=${D} install + if [ -n "`use gnome`" ] + then + try make prefix=${D}/opt/gnome install + else + try make prefix=${D}/usr/X11R6 install + fi dodoc AUTHORS ChangeLog COPYING NEWS README TODO } |