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 1QaWeG-0003Bn-71 for garchives@archives.gentoo.org; Sat, 25 Jun 2011 17:28:00 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C62F1C1C7; Sat, 25 Jun 2011 17:22:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 481981C1C4 for ; Sat, 25 Jun 2011 17:22:14 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A265F2AC08B for ; Sat, 25 Jun 2011 17:22:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 043DE8003F for ; Sat, 25 Jun 2011 17:22:03 +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: Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/OBO-Edit/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/OBO-Edit/ChangeLog sci-biology/OBO-Edit/OBO-Edit-2.1_beta8.ebuild X-VCS-Directories: sci-biology/OBO-Edit/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: b2813a169c91df4b8682f1df1b734ded21559810 Date: Sat, 25 Jun 2011 17:22:03 +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: 8f3192a8e2789fb4f8790ae0038b3871 commit: b2813a169c91df4b8682f1df1b734ded21559810 Author: Justin Lecher gentoo org> AuthorDate: Sat Jun 25 14:43:17 2011 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Jun 25 14:43:17 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3Db2813a16 Cleaned ebuild (Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit = with key 70EB7916) --- sci-biology/OBO-Edit/ChangeLog | 7 +++++++ sci-biology/OBO-Edit/OBO-Edit-2.1_beta8.ebuild | 23 +++++++++++-------= ----- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/sci-biology/OBO-Edit/ChangeLog b/sci-biology/OBO-Edit/Change= Log new file mode 100644 index 0000000..e1de6ad --- /dev/null +++ b/sci-biology/OBO-Edit/ChangeLog @@ -0,0 +1,7 @@ +# ChangeLog for sci-biology/OBO-Edit +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + + 25 Jun 2011; Justin Lecher OBO-Edit-2.1_beta8.ebuild= : + Cleaned ebuild + diff --git a/sci-biology/OBO-Edit/OBO-Edit-2.1_beta8.ebuild b/sci-biology= /OBO-Edit/OBO-Edit-2.1_beta8.ebuild index debd89f..8842bcd 100644 --- a/sci-biology/OBO-Edit/OBO-Edit-2.1_beta8.ebuild +++ b/sci-biology/OBO-Edit/OBO-Edit-2.1_beta8.ebuild @@ -2,7 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ =20 -EAPI=3D3 +EAPI=3D4 + +inherit rpm =20 DESCRIPTION=3D"Java-based editor optimized for the OBO biological ontolo= gy file format" HOMEPAGE=3D"http://www.oboedit.org/" @@ -15,19 +17,16 @@ KEYWORDS=3D"~amd64 ~x86" IUSE=3D"" =20 DEPEND=3D"app-arch/rpm2targz" -RDEPEND=3D"${DEPEND} - virtual/jre" +RDEPEND=3D"virtual/jre" =20 -src_unpack() { - cd "${WORKDIR}" - rpm2targz "${DISTDIR}/oboedit_2_1_8_linux_install4j.rpm" || die - tar -xzf "${WORKDIR}/oboedit_2_1_8_linux_install4j.tar.gz" || die -} +S=3D"${WORKDIR}"/opt =20 src_install(){ # sh "${DISTDIR}"/oboedit_2_1_8_unix_install4j.sh -q -overwrite --var-f= ile=3D"${FILESDIR}"/response.varfile --destination=3D"${D}"/opt/OBO-Edit2 - mkdir -p "${D}"/opt/ || die - cp -rp opt/OBO-Edit2 "${D}"/opt/ || die - find "${D}"/opt -name firstrun | xargs rm -f # drop a world writable fi= le - find "${D}"/opt -name .svn | xargs rm -rf + find . -name firstrun -delete + find . -name .svn -exec rm -rf '{}' \; + + insinto /opt/ + doins -r OBO-Edit2 + chmod 755 "${ED}"/opt/OBO-Edit2/* }