diff options
author | Stanislav Ochotnicky <sochotnicky@gentoo.org> | 2010-04-11 18:11:47 +0000 |
---|---|---|
committer | Stanislav Ochotnicky <sochotnicky@gentoo.org> | 2010-04-11 18:11:47 +0000 |
commit | 883f8fe16b393abeccffe42288370676c2e987d5 (patch) | |
tree | 3f3c89d7c280f8bd401b1d830f0de873105ad435 /net-p2p | |
parent | Fix the build on hardened by disabling V8 snapshot, bug #301880 by Damien (diff) | |
download | gentoo-2-883f8fe16b393abeccffe42288370676c2e987d5.tar.gz gentoo-2-883f8fe16b393abeccffe42288370676c2e987d5.tar.bz2 gentoo-2-883f8fe16b393abeccffe42288370676c2e987d5.zip |
Replaced deprecated python_version (fixes bug 314553) and fixes html documentation instalation (bug 314489)
(Portage version: 2.1.7.17/cvs/Linux i686)
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/Circle/ChangeLog | 9 | ||||
-rw-r--r-- | net-p2p/Circle/Circle-0.41c.ebuild | 19 |
2 files changed, 16 insertions, 12 deletions
diff --git a/net-p2p/Circle/ChangeLog b/net-p2p/Circle/ChangeLog index 9eec915a6aab..c47977b9bc0d 100644 --- a/net-p2p/Circle/ChangeLog +++ b/net-p2p/Circle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/Circle -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/Circle/ChangeLog,v 1.13 2007/01/21 16:14:04 armin76 Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/Circle/ChangeLog,v 1.14 2010/04/11 18:11:47 sochotnicky Exp $ + + 11 Apr 2010; Stanislav Ochotnicky <sochotnicky@gentoo.org> + Circle-0.41c.ebuild: + Replaced deprecated python_version and fixed html documentation + installation 21 Jan 2007; Raúl Porcel <armin76@gentoo.org> -Circle-0.40e.ebuild: Drop old diff --git a/net-p2p/Circle/Circle-0.41c.ebuild b/net-p2p/Circle/Circle-0.41c.ebuild index 3eb70c2b5633..48f60c9d64c5 100644 --- a/net-p2p/Circle/Circle-0.41c.ebuild +++ b/net-p2p/Circle/Circle-0.41c.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/Circle/Circle-0.41c.ebuild,v 1.4 2005/09/06 21:49:32 sekretarz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/Circle/Circle-0.41c.ebuild,v 1.5 2010/04/11 18:11:47 sochotnicky Exp $ inherit python @@ -25,20 +25,19 @@ src_compile() { } src_install() { - python_version exeinto /usr/bin/ doexe circle - insinto /usr/lib/python${PYVER}/site-packages/circlelib/ + insinto ${python_get_sitedir}/circlelib doins circlelib/*.py - insinto /usr/lib/python${PYVER}/site-packages/circlelib/pixmaps/ + insinto ${python_get_sitedir}/circlelib/pixmaps doins circlelib/pixmaps/* - insinto /usr/lib/python${PYVER}/site-packages/circlelib/crypto/ + insinto ${python_get_sitedir}/circlelib/crypto/ doins circlelib/crypto/* - insinto /usr/lib/python${PYVER}/site-packages/circlelib/ui_gtk/ + insinto ${python_get_sitedir}/circlelib/ui_gtk/ doins circlelib/ui_gtk/* - insinto /usr/lib/python${PYVER}/site-packages/circlelib/ui_http/ + insinto ${python_get_sitedir}/circlelib/ui_http/ doins circlelib/ui_http/* - insinto /usr/lib/python${PYVER}/site-packages/circlelib/ui_text/ + insinto ${python_get_sitedir}/circlelib/ui_text/ doins circlelib/ui_text/* insinto /usr/share/pixmaps/ doins circle-icon.png @@ -46,6 +45,6 @@ src_install() { insinto /usr/share/gnome/apps/Internet/ doins circle.desktop fi - dohtml circlelib/*.html + dohtml circlelib/html/*.html dodoc NEWS PKG-INFO README } |