diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 18:50:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-07 18:50:00 +0000 |
commit | a0797313bc41455a51a7ba43b4a4ee3da5795518 (patch) | |
tree | b52e62b7c4fa8300f747ed6da009670d319506ec /app-office/ical | |
parent | add inherit eutils (diff) | |
download | gentoo-2-a0797313bc41455a51a7ba43b4a4ee3da5795518.tar.gz gentoo-2-a0797313bc41455a51a7ba43b4a4ee3da5795518.tar.bz2 gentoo-2-a0797313bc41455a51a7ba43b4a4ee3da5795518.zip |
add inherit eutils
Diffstat (limited to 'app-office/ical')
-rw-r--r-- | app-office/ical/ical-2.2.1.ebuild | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/app-office/ical/ical-2.2.1.ebuild b/app-office/ical/ical-2.2.1.ebuild index 6b909661bd23..b98a476d6a37 100644 --- a/app-office/ical/ical-2.2.1.ebuild +++ b/app-office/ical/ical-2.2.1.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2004 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.6 2004/03/15 04:11:06 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/ical/ical-2.2.1.ebuild,v 1.7 2004/04/07 18:50:00 vapier Exp $ + +inherit eutils PATCH_VER="0.1" MY_P=${P}a @@ -8,15 +10,14 @@ S=${WORKDIR}/${MY_P} DESCRIPTION="Tk-based Calendar program" HOMEPAGE="http://www.fnal.gov/docs/products/tktools/ical.html" SRC_URI="http://helios.dii.utk.edu/ftp/pub/tcl/apps/ical/${MY_P}.tar.bz2 - http://www.ibiblio.org/gentoo/distfiles/${MY_P}.patch-${PATCH_VER}.tar.bz2" + http://www.ibiblio.org/gentoo/distfiles/${MY_P}.patch-${PATCH_VER}.tar.bz2" -SLOT="0" LICENSE="as-is GPL-2" +SLOT="0" KEYWORDS="x86" RDEPEND="dev-lang/tcl dev-lang/tk" - DEPEND="${RDEPEND} >=sys-apps/sed-4 sys-devel/autoconf" @@ -33,12 +34,9 @@ src_unpack() { sed -i \ -e "s: \@TCL_LIBS\@::" \ -e "s:mkdir:mkdir -p:" \ - Makefile.in - - if has_version '=dev-lang/tcl-8.4*' ; then - epatch ${MY_P}-tcl8.4.patch - fi + Makefile.in + has_version '=dev-lang/tcl-8.4*' && epatch ${MY_P}-tcl8.4.patch } src_compile() { @@ -47,6 +45,6 @@ src_compile() { emake || make || die "parallel make failed" } -src_install () { +src_install() { einstall || die "install failed" } |