diff options
author | 2009-02-21 13:14:48 +0000 | |
---|---|---|
committer | 2009-02-21 13:14:48 +0000 | |
commit | ed5736574dbf631b6b5309e0effbe4f7a0f36e89 (patch) | |
tree | 9baf302b1d24976a580de00b659f4d164529a9d1 | |
parent | revbump, fixes bug #257712, thanks to Sebastian Pipping (diff) | |
download | gentoo-2-ed5736574dbf631b6b5309e0effbe4f7a0f36e89.tar.gz gentoo-2-ed5736574dbf631b6b5309e0effbe4f7a0f36e89.tar.bz2 gentoo-2-ed5736574dbf631b6b5309e0effbe4f7a0f36e89.zip |
Fixed documentation build problem, bug #259632, thank Martin von Gagern for this work. Fixed LINGUAS handling to make it workable with paludis, #259639, thank Non_E for report.
(Portage version: 2.2_rc23/cvs/Linux i686)
-rw-r--r-- | net-im/psi/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/psi/psi-0.12.1.ebuild | 9 |
2 files changed, 12 insertions, 4 deletions
diff --git a/net-im/psi/ChangeLog b/net-im/psi/ChangeLog index b01f17f95c5b..d729f1897a4d 100644 --- a/net-im/psi/ChangeLog +++ b/net-im/psi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-im/psi # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/psi/ChangeLog,v 1.153 2009/02/18 20:44:14 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/psi/ChangeLog,v 1.154 2009/02/21 13:14:48 pva Exp $ + + 21 Feb 2009; Peter Volkov <pva@gentoo.org> psi-0.12.1.ebuild: + Fixed documentation build problem, bug #259632, thank Martin von Gagern + for this work. Fixed LINGUAS handling to make it workable with paludis, + #259639, thank Non_E for report. 18 Feb 2009; Brent Baude <ranger@gentoo.org> psi-0.12.1.ebuild: Marking psi-0.12.1 ppc64 for bug 252830 diff --git a/net-im/psi/psi-0.12.1.ebuild b/net-im/psi/psi-0.12.1.ebuild index 3539856d907a..a5e510fb58a7 100644 --- a/net-im/psi/psi-0.12.1.ebuild +++ b/net-im/psi/psi-0.12.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/psi/psi-0.12.1.ebuild,v 1.5 2009/02/18 20:44:14 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/psi/psi-0.12.1.ebuild,v 1.6 2009/02/21 13:14:48 pva Exp $ EAPI="2" @@ -61,6 +61,7 @@ src_compile() { if use doc; then cd doc + mkdir -p api # 259632 make api_public || die "make api_public failed" fi } @@ -82,7 +83,9 @@ src_install() { # install translations cd "${WORKDIR}/${PN}-langs" insinto /usr/share/${PN}/ - for LNG in ${LINGUAS}; do - doins ${PN}_${LNG/ur_PK/ur_pk}.qm || die + for LNG in ${LANGS}; do + if use linguas_${LNG}; then + doins ${PN}_${LNG/ur_PK/ur_pk}.qm || die + fi done } |