diff options
author | Chad Huneycutt <chadh@gentoo.org> | 2002-08-03 17:49:48 +0000 |
---|---|---|
committer | Chad Huneycutt <chadh@gentoo.org> | 2002-08-03 17:49:48 +0000 |
commit | bee50ff908b4a525d4a20d3318835b6bba4384fd (patch) | |
tree | d77a7d5386e5e880bd4b62582fbac6769500121e /app-office/ical | |
parent | Closes #5645. (diff) | |
download | gentoo-2-bee50ff908b4a525d4a20d3318835b6bba4384fd.tar.gz gentoo-2-bee50ff908b4a525d4a20d3318835b6bba4384fd.tar.bz2 gentoo-2-bee50ff908b4a525d4a20d3318835b6bba4384fd.zip |
added || die to pathches and did some work on patch/digest
Diffstat (limited to 'app-office/ical')
-rw-r--r-- | app-office/ical/ChangeLog | 4 | ||||
-rw-r--r-- | app-office/ical/ical-2.2.1.ebuild | 11 |
2 files changed, 8 insertions, 7 deletions
diff --git a/app-office/ical/ChangeLog b/app-office/ical/ChangeLog index ff60c6e2a267..d6a089d2af06 100644 --- a/app-office/ical/ChangeLog +++ b/app-office/ical/ChangeLog @@ -1,8 +1,10 @@ # ChangeLog for <CATEGORY>/<PACKAGE_NAME> # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/ical/ChangeLog,v 1.1 2002/08/01 03:14:35 chadh Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/ical/ChangeLog,v 1.2 2002/08/03 17:49:48 chadh Exp $ *ical-2.2.1 (31 Jul 2002) + 03 Aug 2002; Chad Huneycutt <chadh@gentoo.org> ical-2.2.1.ebuild: added die + clause to patch commands to catch errors. 31 Jul 2002; Chad Huneycutt <chadh@gentoo.org> ical-2.2.1.ebuild: Initial import. Most of the patches to get this to compile were taken from the srpm diff --git a/app-office/ical/ical-2.2.1.ebuild b/app-office/ical/ical-2.2.1.ebuild index ed3106000e40..167b8a8a8295 100644 --- a/app-office/ical/ical-2.2.1.ebuild +++ b/app-office/ical/ical-2.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/ical/ical-2.2.1.ebuild,v 1.1 2002/08/01 03:14:35 chadh Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/ical/ical-2.2.1.ebuild,v 1.2 2002/08/03 17:49:48 chadh Exp $ DESCRIPTION="Calendar program" HOMEPAGE="http://www.fnal.gov/docs/products/tktools/ical.html" @@ -19,10 +19,10 @@ src_unpack() { unpack ${A} cd ${WORKDIR} - patch -p0 < ${P}a-newtcl.patch - patch -p0 < ${P}a-hack.patch - patch -p0 < ${P}a-glibc22.patch - patch -p0 < ${P}a-print.patch + patch -p0 < ${P}a-newtcl.patch || die + patch -p0 < ${P}a-hack.patch || die + patch -p0 < ${P}a-glibc22.patch || die + patch -p0 < ${P}a-print.patch || die D=${S}/ dosed "s: \@TCL_LIBS\@::" Makefile.in D=${S}/ dosed "s:mkdir:mkdir -p:" Makefile.in @@ -37,7 +37,6 @@ src_compile() { src_install () { #make DESTDIR=${D} install || die - mkdir -p ${D}/usr make \ prefix=${D}/usr \ mandir=${D}/usr/share/man \ |