diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2002-07-22 13:57:40 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2002-07-22 13:57:40 +0000 |
commit | b346bf57d77e6349b3ab58ad00bcf5ab772f3dd7 (patch) | |
tree | 01d96cad498d966a136d485329e391516afd318c /x11-libs/buffy | |
parent | lintool fixes (diff) | |
download | historical-b346bf57d77e6349b3ab58ad00bcf5ab772f3dd7.tar.gz historical-b346bf57d77e6349b3ab58ad00bcf5ab772f3dd7.tar.bz2 historical-b346bf57d77e6349b3ab58ad00bcf5ab772f3dd7.zip |
lintool fixes
Diffstat (limited to 'x11-libs/buffy')
-rw-r--r-- | x11-libs/buffy/buffy-0.2.ebuild | 23 |
1 files changed, 11 insertions, 12 deletions
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 } |