diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-10-30 21:04:49 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-10-30 21:04:49 +0000 |
commit | 07b320ab60ef92f2d2dae4b2cc1cb8486b6f6817 (patch) | |
tree | e7efae48551c2cbda830b29492cd4c22feb8ffce /media-gfx/iv | |
parent | version update, unstable profile (diff) | |
download | historical-07b320ab60ef92f2d2dae4b2cc1cb8486b6f6817.tar.gz historical-07b320ab60ef92f2d2dae4b2cc1cb8486b6f6817.tar.bz2 historical-07b320ab60ef92f2d2dae4b2cc1cb8486b6f6817.zip |
micropatch, see if it works in all profiles and stuff
Diffstat (limited to 'media-gfx/iv')
-rw-r--r-- | media-gfx/iv/ChangeLog | 19 | ||||
-rw-r--r-- | media-gfx/iv/files/digest-iv-0.1.9-r1 | 1 | ||||
-rw-r--r-- | media-gfx/iv/files/iv-0.1.9-gentoo.patch | 11 | ||||
-rw-r--r-- | media-gfx/iv/iv-0.1.9-r1.ebuild | 35 |
4 files changed, 60 insertions, 6 deletions
diff --git a/media-gfx/iv/ChangeLog b/media-gfx/iv/ChangeLog index 43c830894173..aad20dfdda3a 100644 --- a/media-gfx/iv/ChangeLog +++ b/media-gfx/iv/ChangeLog @@ -1,14 +1,21 @@ # ChangeLog for media-gfx/iv # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL # Maintainer: George Shapovalov <george@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-gfx/iv/ChangeLog,v 1.2 2002/05/17 04:44:13 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/iv/ChangeLog,v 1.3 2002/10/30 21:04:49 lostlogic Exp $ - 16 May 2002; George Shapovalov <george@gentoo.org> iv-0.1.9.ebuild : +*iv-0.1.9-r1 (30 Oct 2002) + + 30 Oct 2002; Brandon Low <lostlogic@gentoo.org> iv-0.1.9-r1.ebuild : + + Make work with things the way they are. Let me know if it works in + glibc-2.2.5 and or gcc-2.95.3 systems. - updated DEPEND entry per Pedro Fiol's clarification - *iv-0.1.9 (15 May 2002) - 15 May 2002; George Shapovalov <george@gentoo.org> iv-0.1.9.ebuild,Changelog,files/digest-iv-0.1.9 : + 16 May 2002; George Shapovalov <george@gentoo.org> iv-0.1.9.ebuild : + + updated DEPEND entry per Pedro Fiol's clarification + + 15 May 2002; George Shapovalov <george@gentoo.org> iv-0.1.9.ebuild,Changelog,files/digest-iv-0.1.9 : - Initial release + Initial release diff --git a/media-gfx/iv/files/digest-iv-0.1.9-r1 b/media-gfx/iv/files/digest-iv-0.1.9-r1 new file mode 100644 index 000000000000..9a17620ce9dd --- /dev/null +++ b/media-gfx/iv/files/digest-iv-0.1.9-r1 @@ -0,0 +1 @@ +MD5 d4a658f06152569a3e4924a22bb015c3 iv-0.1.9.tar.bz2 420395 diff --git a/media-gfx/iv/files/iv-0.1.9-gentoo.patch b/media-gfx/iv/files/iv-0.1.9-gentoo.patch new file mode 100644 index 000000000000..bf84ee140ef0 --- /dev/null +++ b/media-gfx/iv/files/iv-0.1.9-gentoo.patch @@ -0,0 +1,11 @@ +--- iv-0.1.9/include/xsw_ctype.h.old 2002-10-30 14:59:50.000000000 -0600 ++++ iv-0.1.9/include/xsw_ctype.h 2002-10-30 14:59:10.000000000 -0600 +@@ -6,7 +6,7 @@ + + #ifndef isblank + //extern bool isblank(char c); +-extern bool isblank(int c); ++extern int isblank(int c); + #endif + + #else diff --git a/media-gfx/iv/iv-0.1.9-r1.ebuild b/media-gfx/iv/iv-0.1.9-r1.ebuild new file mode 100644 index 000000000000..82421f633bda --- /dev/null +++ b/media-gfx/iv/iv-0.1.9-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/iv/iv-0.1.9-r1.ebuild,v 1.1 2002/10/30 21:04:49 lostlogic Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="This is an image viewer" +SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/iv-0.1.9.tar.bz2" +HOMEPAGE="http://wolfpack.twu.net" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND=">=media-libs/imlib-1.9.13 + =x11-libs/gtk+-1.2*" + +src_unpack() { + unpack ${A} + cd ${P} + patch -p1 < ${FILESDIR}/${P}-gentoo.patch || die "Patch failed" +} + +src_compile() { + cd iv + emake || die +} + +src_install () { + dobin iv/iv + dodir /usr/share/icons + insinto /usr/share/icons + doins iv/images/iv.xpm + doman iv/iv.1 + dodoc LICENSE README +} |