diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-12-06 22:14:57 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-12-06 22:14:57 +0000 |
commit | 2dc476a03e16e523bd3f1ae36b3e3ded0e90d047 (patch) | |
tree | ef83f1e71295932afaad377c3314030e6636cea9 /sci-astronomy | |
parent | Added missing packages. Keyword amd64-linux and x86-linux (diff) | |
download | gentoo-2-2dc476a03e16e523bd3f1ae36b3e3ded0e90d047.tar.gz gentoo-2-2dc476a03e16e523bd3f1ae36b3e3ded0e90d047.tar.bz2 gentoo-2-2dc476a03e16e523bd3f1ae36b3e3ded0e90d047.zip |
Fixed bad sed command resulting in wrong script (bug #446263)
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-astronomy')
-rw-r--r-- | sci-astronomy/gasgano/ChangeLog | 8 | ||||
-rw-r--r-- | sci-astronomy/gasgano/gasgano-2.4.3-r1.ebuild (renamed from sci-astronomy/gasgano/gasgano-2.4.3.ebuild) | 14 |
2 files changed, 13 insertions, 9 deletions
diff --git a/sci-astronomy/gasgano/ChangeLog b/sci-astronomy/gasgano/ChangeLog index 524511930b94..df5a22cc4413 100644 --- a/sci-astronomy/gasgano/ChangeLog +++ b/sci-astronomy/gasgano/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-astronomy/gasgano # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/gasgano/ChangeLog,v 1.7 2012/08/05 17:59:37 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/gasgano/ChangeLog,v 1.8 2012/12/06 22:14:57 bicatali Exp $ + +*gasgano-2.4.3-r1 (06 Dec 2012) + + 06 Dec 2012; Sébastien Fabbro <bicatali@gentoo.org> +gasgano-2.4.3-r1.ebuild, + -gasgano-2.4.3.ebuild: + Fixed bad sed command resulting in wrong script (bug #446263) 05 Aug 2012; Sébastien Fabbro <bicatali@gentoo.org> -gasgano-2.4.0.ebuild, gasgano-2.4.3.ebuild: diff --git a/sci-astronomy/gasgano/gasgano-2.4.3.ebuild b/sci-astronomy/gasgano/gasgano-2.4.3-r1.ebuild index 1682efe912b9..f774c93c1fa8 100644 --- a/sci-astronomy/gasgano/gasgano-2.4.3.ebuild +++ b/sci-astronomy/gasgano/gasgano-2.4.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/gasgano/gasgano-2.4.3.ebuild,v 1.2 2012/08/05 17:59:37 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/gasgano/gasgano-2.4.3-r1.ebuild,v 1.1 2012/12/06 22:14:57 bicatali Exp $ EAPI=4 inherit eutils java-pkg-2 @@ -18,15 +18,16 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="doc" DEPEND=">=virtual/jdk-1.6" -RDEPEND=">=virtual/jre-1.6 +RDEPEND=" + >=virtual/jre-1.6 dev-java/gnu-regexp dev-java/junit dev-java/jal" src_prepare() { sed -i \ - -e "s:BASE.*=.*:BASE=${EPREFIX}/usr/share/${PN}:" \ - -e "s:/share/:/lib/:g" \ + -e "s:BASE=`pwd`:BASE=${EPREFIX}/usr/share/${PN}:" \ + -e 's:$BASE/share/:$BASE/lib/:g' \ bin/gasgano || die } @@ -36,8 +37,5 @@ src_install() { insinto /usr/share/${PN} doins -r config make_desktop_entry gasgano "Gasgano FITS Organizer" - if use doc; then - insinto /usr/share/doc/${PF} - newins "${DISTDIR}"/${PDOC}.pdf user-manual.pdf - fi + newdoc "${DISTDIR}"/${PDOC}.pdf user-manual.pdf } |