From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Q1vYT-0005tJ-1n for garchives@archives.gentoo.org; Tue, 22 Mar 2011 06:59:01 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C08541C01B; Tue, 22 Mar 2011 06:58:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 86C201C01B for ; Tue, 22 Mar 2011 06:58:53 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7A971B4025 for ; Tue, 22 Mar 2011 06:58:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 4C4AA8006E for ; Tue, 22 Mar 2011 06:58:52 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <40eeabbfab7653108826329559ba5efcbdec58c4.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: eclass/ X-VCS-Repository: proj/sci X-VCS-Files: eclass/emboss.eclass X-VCS-Directories: eclass/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 40eeabbfab7653108826329559ba5efcbdec58c4 Date: Tue, 22 Mar 2011 06:58:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 72c26b102289d915d96de11c754e76a7 commit: 40eeabbfab7653108826329559ba5efcbdec58c4 Author: Justin Lecher gentoo org> AuthorDate: Tue Mar 22 06:56:33 2011 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Mar 22 06:56:33 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D40eeabbf Last cleanup to emboss.eclass --- eclass/emboss.eclass | 19 ++++++++----------- 1 files changed, 8 insertions(+), 11 deletions(-) diff --git a/eclass/emboss.eclass b/eclass/emboss.eclass index e682ab3..2c8b67f 100644 --- a/eclass/emboss.eclass +++ b/eclass/emboss.eclass @@ -16,8 +16,7 @@ # @DESCRIPTION: # The inheriting ebuild must set EAPI=3D4 and provide EBO_DESCRIPTION be= fore the inherit line. # KEYWORDS should be set. Additionally "(R|P)DEPEND"encies and other sta= ndard -# ebuild Variables can be extended (FOO+=3D"BAR"). -# The inheriting ebuild's name must begin with "emboss" or "embassy". +# ebuild variables can be extended (FOO+=3D" bar"). # Default installation of following DOCS=3D"AUTHORS ChangeLog NEWS READM= E" # # Example: @@ -27,9 +26,6 @@ # EBO_DESCRIPTION=3D"applications from the CBS group" # # inherit emboss -# -# KEYWORDS=3D"~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" - =20 # @ECLASS-VARIABLE: EBO_DESCRIPTION # @DESCRIPTION: @@ -44,7 +40,7 @@ # @ECLASS-VARIABLE: EBO_EAUTORECONF # @DESCRIPTION: # Set to 'no', if you don't want eautoreconf to be run after patching. -: ${EBO_EAUTORECONF:=3D"yes"} +: ${EBO_EAUTORECONF:=3Dyes} =20 # @ECLASS-VARIABLE: EBO_EXTRA_ECONF # @DEFAULT_UNSET @@ -56,7 +52,7 @@ case ${EAPI:-0} in *) die "this eclass doesn't support < EAPI 4" ;; esac =20 -inherit autotools eutils multilib +inherit autotools eutils =20 HOMEPAGE=3D"http://emboss.sourceforge.net/" LICENSE=3D"LGPL-2 GPL-2" @@ -101,13 +97,13 @@ DOCS=3D"AUTHORS ChangeLog NEWS README" # =20 emboss_src_prepare() { - [[ -f "${FILESDIR}"/${PF}.patch ]] && epatch "${FILESDIR}"/${PF}.patch + [[ -f ${FILESDIR}/${PF}.patch ]] && epatch "${FILESDIR}"/${PF}.patch [[ ${EBO_EAUTORECONF} =3D=3D yes ]] && eautoreconf } =20 -# @FUNCTION: emboss_src_prepare +# @FUNCTION: emboss_src_configure # @DESCRIPTION: -# runs econf with following options. Extra options can be passed by sett= ing EBO_EXTRA_ECONF +# runs econf with following options. # # $(use_with X x) # $(use_with png pngdriver) @@ -118,6 +114,7 @@ emboss_src_prepare() { # --enable-large # --without-java # --enable-systemlibs +# --docdir=3D"${EPREFIX}/usr/share/doc/${PF}" # ${EBO_EXTRA_ECONF} =20 emboss_src_configure() { @@ -131,7 +128,7 @@ emboss_src_configure() { --enable-large \ --without-java \ --enable-systemlibs \ - --docdir=3D"${EPREFIX}/usr/share/doc/${PF}/" \ + --docdir=3D"${EPREFIX}/usr/share/doc/${PF}" \ ${EBO_EXTRA_ECONF} } =20