diff options
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/Xaw3d/Xaw3d-1.5-r1.ebuild | 10 | ||||
-rw-r--r-- | x11-libs/buffy/buffy-0.2.ebuild | 23 |
2 files changed, 15 insertions, 18 deletions
diff --git a/x11-libs/Xaw3d/Xaw3d-1.5-r1.ebuild b/x11-libs/Xaw3d/Xaw3d-1.5-r1.ebuild index 2ef0f5129dcc..292e244c8ba5 100644 --- a/x11-libs/Xaw3d/Xaw3d-1.5-r1.ebuild +++ b/x11-libs/Xaw3d/Xaw3d-1.5-r1.ebuild @@ -1,5 +1,6 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/Xaw3d/Xaw3d-1.5-r1.ebuild,v 1.5 2002/07/22 13:57:39 aliz Exp $ # Ok, hopefully this will resolv the problem with the version of libXaw3d that # gets created. @@ -29,10 +30,9 @@ KEYWORDS="x86 ppc" # There _might_ be something else, but I doubt it. DEPEND="virtual/x11" - +RDEPEND=$DEPEND src_unpack() { - unpack ${P}.tar.gz cd ${S} @@ -43,7 +43,6 @@ src_unpack() { } src_compile() { - # convoluted process for out-of-tree building mkdir ./X11 cd ./X11 ; ln -sf ../../Xaw3d . ; cd .. @@ -55,7 +54,6 @@ src_compile() { } src_install() { - make DESTDIR=${D} install || die dodoc README.XAW3D diff --git a/x11-libs/buffy/buffy-0.2.ebuild b/x11-libs/buffy/buffy-0.2.ebuild index aeb903108018..8d29d0949f26 100644 --- a/x11-libs/buffy/buffy-0.2.ebuild +++ b/x11-libs/buffy/buffy-0.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/x11-libs/buffy/buffy-0.2.ebuild,v 1.5 2002/07/11 06:30:56 drobbins Exp $ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/buffy/buffy-0.2.ebuild,v 1.6 2002/07/22 13:57:40 aliz Exp $ S=${WORKDIR}/${P} @@ -17,19 +17,18 @@ DEPEND="virtual/glibc =x11-libs/gtk+-1.2*" src_compile() { + ./configure --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --prefix=/usr \ + --host=${CHOST} || die - try ./configure --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --prefix=/usr \ - --host=${CHOST} - try emake + emake || die } src_install () { + # try make prefix=${D}/usr install - # try make prefix=${D}/usr install - - dodoc AUTHORS COPYING INSTALL NEWS README ChangeLog - try make DESTDIR=${D} install + dodoc AUTHORS COPYING INSTALL NEWS README ChangeLog + try make DESTDIR=${D} install } |