blob: d91fb3293b15aafe34fe4166b5816a605a0cea76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/gpixpod/gpixpod-0.6.2.ebuild,v 1.6 2009/10/31 15:43:38 maekke Exp $
inherit distutils
DESCRIPTION="Organize photos on your iPod, freely!"
HOMEPAGE="http://www.gpixpod.org/"
SRC_URI="mirror://sourceforge/gpixpod/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=dev-python/pygtk-2.8.4
>=x11-libs/gtk+-2.0.0"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
distutils_python_version
unpack ${A}
cd "${S}"
# Fixing gpixpod.py for searching gpixpod.glade in the same directory
sed -i -e "s:gpixpod\.glade:/usr/share/gpixpod/gpixpod\.glade:g" gpixpod.py || die
# Fixing launching script and Makefile
sed -i -e "s:python2.4:python${PYVER}:g" Makefile gpixpod || die
sed -i -e "s:/usr/lib/gpixpod:$(python_get_sitedir):g" gpixpod || die
}
src_install() {
distutils_src_install
mv "${D}"/usr/lib/gpixpod/* "${D}"/usr/share/gpixpod
rmdir "${D}"/usr/lib/gpixpod
rm -rf "${D}"/usr/share/doc/gpixpod
dodoc KNOWNBUGS
}
|