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 | |
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')
-rw-r--r-- | app-office/gbib/gbib-0.1.2.ebuild | 10 | ||||
-rw-r--r-- | app-office/ical/ical-2.2.1.ebuild | 18 |
2 files changed, 14 insertions, 14 deletions
diff --git a/app-office/gbib/gbib-0.1.2.ebuild b/app-office/gbib/gbib-0.1.2.ebuild index 27a0892c871e..04486b7e96c4 100644 --- a/app-office/gbib/gbib-0.1.2.ebuild +++ b/app-office/gbib/gbib-0.1.2.ebuild @@ -1,9 +1,11 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/gbib/gbib-0.1.2.ebuild,v 1.1 2004/02/23 18:00:29 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/gbib/gbib-0.1.2.ebuild,v 1.2 2004/04/07 18:48:20 vapier Exp $ -DESCRIPTION="gBib is a user-friendly editor and browser for BibTeX bibliographic databases." -HOMEPAGE="http://gbib.seul.org" +inherit eutils + +DESCRIPTION="user-friendly editor and browser for BibTeX bibliographic databases" +HOMEPAGE="http://gbib.seul.org/" SRC_URI="ftp://ftp.seul.org/pub/gbib/src/${P}.tar.gz" LICENSE="GPL-2" @@ -30,7 +32,7 @@ src_compile() { src_install() { make install DESTDIR=${D} || die - dodoc ABOUT-NLS AUTHORS CHANGES COPYING INSTALL README TODO || die + dodoc ABOUT-NLS AUTHORS CHANGES INSTALL README TODO || die } pkg_postinst() { 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" } |