summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2011-01-05 17:50:39 +0000
committerJustin Lecher <jlec@gentoo.org>2011-01-05 17:50:39 +0000
commitcff307a64189b11ec49ef4a44c1a08b49080c320 (patch)
tree8cf49952ebd119c40069db38096d8509967fa909 /app-text/glark
parentSome Clean up (diff)
downloadgentoo-2-cff307a64189b11ec49ef4a44c1a08b49080c320.tar.gz
gentoo-2-cff307a64189b11ec49ef4a44c1a08b49080c320.tar.bz2
gentoo-2-cff307a64189b11ec49ef4a44c1a08b49080c320.zip
Some Clean up
(Portage version: 2.2.0_alpha12/cvs/Linux x86_64)
Diffstat (limited to 'app-text/glark')
-rw-r--r--app-text/glark/ChangeLog8
-rw-r--r--app-text/glark/glark-1.7.8.ebuild15
-rw-r--r--app-text/glark/glark-1.8.0.ebuild13
3 files changed, 21 insertions, 15 deletions
diff --git a/app-text/glark/ChangeLog b/app-text/glark/ChangeLog
index 927c429ded1f..fb73c9494716 100644
--- a/app-text/glark/ChangeLog
+++ b/app-text/glark/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/glark
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/glark/ChangeLog,v 1.53 2010/11/05 06:57:37 jlec Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/glark/ChangeLog,v 1.54 2011/01/05 17:50:39 jlec Exp $
+
+ 05 Jan 2011; Justin Lecher <jlec@gentoo.org> glark-1.7.8.ebuild,
+ glark-1.8.0.ebuild:
+ Some Clean up
05 Nov 2010; Justin Lecher <jlec@gentoo.org> Manifest,
-files/1.7.2/glark-completion,-files/1.7.3/glark-completion:
diff --git a/app-text/glark/glark-1.7.8.ebuild b/app-text/glark/glark-1.7.8.ebuild
index fdef178a4586..992e2c3a4ca4 100644
--- a/app-text/glark/glark-1.7.8.ebuild
+++ b/app-text/glark/glark-1.7.8.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/glark/glark-1.7.8.ebuild,v 1.9 2009/12/29 15:11:46 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/glark/glark-1.7.8.ebuild,v 1.10 2011/01/05 17:50:39 jlec Exp $
inherit bash-completion
@@ -14,18 +14,19 @@ LICENSE="LGPL-2.1"
IUSE=""
# perl dep is for pod2man
-DEPEND="dev-lang/ruby
+DEPEND="
+ dev-lang/ruby
dev-lang/perl"
RDEPEND="dev-lang/ruby"
src_compile() {
- emake
+ emake || die
# force the manpage to be rebuilt
rm ${PN}.1
- make ${PN}.1
+ emake ${PN}.1 || die
}
src_install () {
- make DESTDIR="${D}" install
- dobashcompletion "${FILESDIR}/1.7.4/glark-completion" ${PN}
+ emake DESTDIR="${D}" install || die
+ dobashcompletion "${FILESDIR}"/1.8.0/glark-completion ${PN}
}
diff --git a/app-text/glark/glark-1.8.0.ebuild b/app-text/glark/glark-1.8.0.ebuild
index 95518c383f5b..99217b7e89b5 100644
--- a/app-text/glark/glark-1.8.0.ebuild
+++ b/app-text/glark/glark-1.8.0.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/glark/glark-1.8.0.ebuild,v 1.4 2010/02/20 17:32:28 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/glark/glark-1.8.0.ebuild,v 1.5 2011/01/05 17:50:39 jlec Exp $
EAPI=3
@@ -16,18 +16,19 @@ LICENSE="LGPL-2.1"
IUSE=""
# perl dep is for pod2man
-DEPEND="dev-lang/ruby
+DEPEND="
+ dev-lang/ruby
dev-lang/perl"
RDEPEND="dev-lang/ruby"
src_compile() {
- emake
+ emake || die
# force the manpage to be rebuilt
rm ${PN}.1
- make ${PN}.1
+ emake ${PN}.1 || die
}
src_install () {
- emake DESTDIR="${ED}" install
+ emake DESTDIR="${ED}" install || die
dobashcompletion "${FILESDIR}"/1.8.0/glark-completion ${PN}
}