diff options
author | Adam Bellinson <thread@gentoo.org> | 2001-06-22 05:15:19 +0000 |
---|---|---|
committer | Adam Bellinson <thread@gentoo.org> | 2001-06-22 05:15:19 +0000 |
commit | 3cf7b73e4de92a7b8dc0a841d551350e8b74739f (patch) | |
tree | 38bcfb81b9179c86ae0d1ccf0aa5cdf22a60e02b | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-3cf7b73e4de92a7b8dc0a841d551350e8b74739f.tar.gz gentoo-2-3cf7b73e4de92a7b8dc0a841d551350e8b74739f.tar.bz2 gentoo-2-3cf7b73e4de92a7b8dc0a841d551350e8b74739f.zip |
*** empty log message ***
-rw-r--r-- | media-gfx/qiv/files/fix_prefix.pl | 2 | ||||
-rw-r--r-- | media-gfx/qiv/qiv-1.6.ebuild | 29 |
2 files changed, 30 insertions, 1 deletions
diff --git a/media-gfx/qiv/files/fix_prefix.pl b/media-gfx/qiv/files/fix_prefix.pl index 5f431ba32e22..323fcff91121 100644 --- a/media-gfx/qiv/files/fix_prefix.pl +++ b/media-gfx/qiv/files/fix_prefix.pl @@ -18,4 +18,4 @@ close MAKEFILE; close TMP; system "cp ${ARGV[0]}/tmp ${ARGV[0]}/Makefile"; -#unlink "${ARGV[0]}/tmp"; +unlink "${ARGV[0]}/tmp"; diff --git a/media-gfx/qiv/qiv-1.6.ebuild b/media-gfx/qiv/qiv-1.6.ebuild new file mode 100644 index 000000000000..e87042f7375f --- /dev/null +++ b/media-gfx/qiv/qiv-1.6.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Your Name <your email> +# $Header: /var/cvsroot/gentoo-x86/media-gfx/qiv/qiv-1.6.ebuild,v 1.1 2001/06/22 05:14:11 thread Exp $ + +#P= +S=${WORKDIR}/${P} +DESCRIPTION="Quick Image Viewer" +SRC_URI="http://www.klografx.net/qiv/download/${P}-src.tgz" +HOMEPAGE="http://www.klograft.net/qiv" + +DEPEND="virtual/glibc sys-devel/gcc + >=media-libs/tiff-3.5.5 + >=media-libs/libpng-1.0.7 + virtual/x11" + +src_compile() { + + try perl /usr/portage/media-gfx/qiv/files/fix_prefix.pl ${S} ${WORKDIR}/../image + try make + +} + +src_install () { + + try make install + +} + |