diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-03-21 08:17:43 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-03-21 08:17:43 +0000 |
commit | f1fd015b0406e3ff5d36d64a647917483e5cf4b3 (patch) | |
tree | d73c6f32e831ec30675f09ee2023ed287a237a33 /app-crypt/tinyca | |
parent | use dobin instead of exeinto /usr/bin/ && doexe (diff) | |
download | gentoo-2-f1fd015b0406e3ff5d36d64a647917483e5cf4b3.tar.gz gentoo-2-f1fd015b0406e3ff5d36d64a647917483e5cf4b3.tar.bz2 gentoo-2-f1fd015b0406e3ff5d36d64a647917483e5cf4b3.zip |
use dobin instead of exeinto /usr/bin/ && doexe
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'app-crypt/tinyca')
-rw-r--r-- | app-crypt/tinyca/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/tinyca/tinyca-2.0.7.5-r2.ebuild | 11 |
2 files changed, 9 insertions, 7 deletions
diff --git a/app-crypt/tinyca/ChangeLog b/app-crypt/tinyca/ChangeLog index ccd71875ed8b..6ba06deb03bb 100644 --- a/app-crypt/tinyca/ChangeLog +++ b/app-crypt/tinyca/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/tinyca # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/tinyca/ChangeLog,v 1.27 2015/01/26 09:47:15 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/tinyca/ChangeLog,v 1.28 2015/03/21 08:17:43 jlec Exp $ + + 21 Mar 2015; Justin Lecher <jlec@gentoo.org> tinyca-2.0.7.5-r2.ebuild: + use dobin instead of exeinto /usr/bin/ && doexe 26 Jan 2015; Alon Bar-Lev <alonbl@gentoo.org> -tinyca-2.0.7.5-r1.ebuild: Cleanup diff --git a/app-crypt/tinyca/tinyca-2.0.7.5-r2.ebuild b/app-crypt/tinyca/tinyca-2.0.7.5-r2.ebuild index 8fa4957d0c08..46d8e202d6e3 100644 --- a/app-crypt/tinyca/tinyca-2.0.7.5-r2.ebuild +++ b/app-crypt/tinyca/tinyca-2.0.7.5-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/tinyca/tinyca-2.0.7.5-r2.ebuild,v 1.3 2015/01/26 09:43:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/tinyca/tinyca-2.0.7.5-r2.ebuild,v 1.4 2015/03/21 08:17:43 jlec Exp $ EAPI=5 @@ -21,7 +21,8 @@ for X in ${LANGS} ; do IUSE="${IUSE} linguas_${X}" done -RDEPEND=">=dev-libs/openssl-0.9.7e +RDEPEND=" + >=dev-libs/openssl-0.9.7e:0= dev-perl/Locale-gettext >=virtual/perl-MIME-Base64-2.12 >=dev-perl/gtk2-perl-1.072" @@ -36,7 +37,7 @@ src_prepare() { epatch "${FILESDIR}/${P}-perl-5.18.patch" sed -i -e 's:./lib:/usr/share/tinyca/lib:g' \ -e 's:./templates:/usr/share/tinyca/templates:g' \ - -e 's:./locale:/usr/share/locale:g' "${S}/tinyca2" + -e 's:./locale:/usr/share/locale:g' "${S}/tinyca2" || die } src_compile() { @@ -44,14 +45,12 @@ src_compile() { } locale_install() { - dodir /usr/share/locale/$@/LC_MESSAGES/ insinto /usr/share/locale/$@/LC_MESSAGES/ doins locale/$@/LC_MESSAGES/tinyca2.mo } src_install() { - exeinto /usr/bin - newexe tinyca2 tinyca + newbin tinyca2 tinyca insinto /usr/share/tinyca/lib doins lib/*.pm insinto /usr/share/tinyca/lib/GUI |