diff options
Diffstat (limited to 'media-gfx/feh/feh-1.1.1.ebuild')
-rw-r--r-- | media-gfx/feh/feh-1.1.1.ebuild | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/media-gfx/feh/feh-1.1.1.ebuild b/media-gfx/feh/feh-1.1.1.ebuild index 2101498ebde9..4c7a1d146fbe 100644 --- a/media-gfx/feh/feh-1.1.1.ebuild +++ b/media-gfx/feh/feh-1.1.1.ebuild @@ -1,34 +1,32 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-1.1.1.ebuild,v 1.2 2002/07/11 06:30:27 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/feh/feh-1.1.1.ebuild,v 1.3 2002/07/23 04:33:46 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="A fast, lightweight imageviewer using imlib2" SRC_URI="http://www.linuxbrit.co.uk/downloads/feh-${PV}.tar.gz" HOMEPAGE="http://www.linuxbrit.co.uk/feh" -DEPEND="media-libs/imlib2" +SLOT="0" +LICENSE="as-is" +KEYWORDS="x86" +DEPEND="media-libs/imlib2" src_compile() { - ./configure --prefix=/usr \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --host=${CHOST} || die - + econf || die emake || die } src_install () { + + einstall \ + docsdir=${D}/usr/share/doc/${PF} || die - make prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - infodir=${D}/usr/share/info \ - docsdir=${D}/usr/share/doc/${PF} \ - install || die - + doman feh.1 # gzip the docs gzip ${D}/usr/share/doc/${PF}/* -} + dodoc AUTHORS COPYING ChangeLog README TODO +} |