diff options
author | 2009-01-16 21:09:50 +0000 | |
---|---|---|
committer | 2009-01-16 21:09:50 +0000 | |
commit | 047de6d4a3afc7b61f90e7585921a5f356dc9ec0 (patch) | |
tree | ec804545969cc124ed3e4bcd1213042cc13c7183 /media-gfx/povray | |
parent | Updating homepage and SRC_URI, as noted by Todd Partridge in bug 255187. (diff) | |
download | gentoo-2-047de6d4a3afc7b61f90e7585921a5f356dc9ec0.tar.gz gentoo-2-047de6d4a3afc7b61f90e7585921a5f356dc9ec0.tar.bz2 gentoo-2-047de6d4a3afc7b61f90e7585921a5f356dc9ec0.zip |
Fix expiration date issue (bug #255176)
(Portage version: 2.1.6.6/cvs/Linux 2.6.29-rc1-git6 i686)
Diffstat (limited to 'media-gfx/povray')
-rw-r--r-- | media-gfx/povray/ChangeLog | 11 | ||||
-rw-r--r-- | media-gfx/povray/files/povray-3.7.0_beta29-fix-expiration-bug.patch | 15 | ||||
-rw-r--r-- | media-gfx/povray/povray-3.7.0_beta29-r2.ebuild (renamed from media-gfx/povray/povray-3.7.0_beta29-r1.ebuild) | 5 |
3 files changed, 27 insertions, 4 deletions
diff --git a/media-gfx/povray/ChangeLog b/media-gfx/povray/ChangeLog index b4b429e35c35..1f57f88eb8cb 100644 --- a/media-gfx/povray/ChangeLog +++ b/media-gfx/povray/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-gfx/povray -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/ChangeLog,v 1.96 2008/11/27 16:30:59 lavajoe Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/ChangeLog,v 1.97 2009/01/16 21:09:50 lavajoe Exp $ + +*povray-3.7.0_beta29-r2 (16 Jan 2009) + + 16 Jan 2009; Joe Peterson <lavajoe@gentoo.org> + +files/povray-3.7.0_beta29-fix-expiration-bug.patch, + -povray-3.7.0_beta29-r1.ebuild, +povray-3.7.0_beta29-r2.ebuild: + Fix expiration date issue (bug #255176) 27 Nov 2008; Joe Peterson <lavajoe@gentoo.org> -files/povray-3.7.0-print-extend-expiration-info.patch, diff --git a/media-gfx/povray/files/povray-3.7.0_beta29-fix-expiration-bug.patch b/media-gfx/povray/files/povray-3.7.0_beta29-fix-expiration-bug.patch new file mode 100644 index 000000000000..2da0056750b5 --- /dev/null +++ b/media-gfx/povray/files/povray-3.7.0_beta29-fix-expiration-bug.patch @@ -0,0 +1,15 @@ +--- vfe/vfe.cpp 2008-09-06 00:14:57.000000000 +0200 ++++ vfe/vfe.cpp 2009-01-16 12:48:13.646808534 +0100 +@@ -747,9 +747,9 @@ + + // this code may not be removed or modified unless the compilation is for personal + // use and the binary is not distributed to anyone else. +- xtime_get(&t, TIME_UTC); +- if (t.sec > 1230760800) +- throw POV_EXCEPTION(kCannotHandleRequestErr, "Please obtain an updated version of this application."); ++ // xtime_get(&t, TIME_UTC); ++ // if (t.sec > 1230760800) ++ // throw POV_EXCEPTION(kCannotHandleRequestErr, "Please obtain an updated version of this application."); + + state = kStarting; + diff --git a/media-gfx/povray/povray-3.7.0_beta29-r1.ebuild b/media-gfx/povray/povray-3.7.0_beta29-r2.ebuild index 7df16da78768..cfe5f1162917 100644 --- a/media-gfx/povray/povray-3.7.0_beta29-r1.ebuild +++ b/media-gfx/povray/povray-3.7.0_beta29-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/povray-3.7.0_beta29-r1.ebuild,v 1.3 2008/11/27 16:30:59 lavajoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/povray-3.7.0_beta29-r2.ebuild,v 1.1 2009/01/16 21:09:50 lavajoe Exp $ inherit eutils autotools flag-o-matic versionator @@ -39,6 +39,7 @@ src_unpack() { # Print info on how to extend the expiration date of the beta # if it has expired. epatch "${FILESDIR}"/${P}-print-extend-expiration-info.patch + epatch "${FILESDIR}"/${P}-fix-expiration-bug.patch # Change some destination directories that cannot be adjusted via configure cp configure.ac configure.ac.orig |