blob: 9c8b5247c1e136d4319e8c6b24caad82f129104c (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/bitpim/bitpim-1.0.6-r1.ebuild,v 1.5 2011/01/12 14:47:41 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
inherit distutils eutils fdo-mime multilib
DESCRIPTION="Program to view and manipulate data on LG VX4400/VX6000 and many Sanyo Sprint mobile phones"
HOMEPAGE="http://www.bitpim.org/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
# this needs fixing
#KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="crypt evo usb"
COMMON_DEPEND="dev-python/apsw
dev-python/pyserial
dev-python/python-dsv
dev-python/wxpython:2.8
crypt? (
>=dev-python/paramiko-1.7.1
dev-python/pycrypto
)
usb? ( dev-libs/libusb:0 )"
DEPEND="${COMMON_DEPEND}
usb? ( dev-lang/swig )"
RDEPEND="${COMMON_DEPEND}
media-libs/netpbm
media-video/ffmpeg"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
epatch "${FILESDIR}/${P}-gentoo.patch"
epatch "${FILESDIR}/${P}-ffmpeg_quality.patch"
epatch "${FILESDIR}/${P}-gcc43.patch"
sed -i "s/^PYTHONVER=.*/PYTHONVER=$(PYTHON)/" src/native/usb/build.sh
}
src_compile() {
# USB stuff
if use usb; then
cd "${S}/src/native/usb"
sh ./build.sh || die "compilation of native/usb failed"
fi
# strings
cd "${S}/src/native/strings"
distutils_src_compile
# bmp2avi
cd "${S}/src/native/av/bmp2avi"
PLATFORM=linux make || die "compilation of native/bmp2avi failed"
}
src_install() {
# Install files into right place
#
# BitPim is a self-contained app, so jamming it into
# Python's site-packages might not be worthwhile. We'll
# Put it in its own home, and add the PYTHONPATH in the
# wrapper executables below.
local RLOC=/usr/$(get_libdir)/${P}
# Main Python source
insinto ${RLOC}
doins src/*.py
# Phone specifics
insinto ${RLOC}/phones
doins src/phones/*.py
# Native products
insinto ${RLOC}/native
doins src/native/*.py
insinto ${RLOC}/native/qtopiadesktop
doins src/native/qtopiadesktop/*.py
insinto ${RLOC}/native/outlook
doins src/native/outlook/*.py
insinto ${RLOC}/native/egroupware
doins src/native/egroupware/*.py
if use evo ; then
insinto ${RLOC}/native/evolution
doins src/native/evolution/*.py
fi
# strings
cd "${S}/src/native/strings"
distutils_src_install
cd "${S}"
insinto $RLOC/native/strings
doins src/native/strings/__init__.py src/native/strings/jarowpy.py
# usb
if use usb; then
insinto ${RLOC}/native/usb
doins src/native/usb/*.py
doins src/native/usb/*.so
fi
# Helpers and resources
dobin src/native/av/bmp2avi/bmp2avi
insinto ${RLOC}/resources
doins resources/*
# Bitfling
if use crypt; then
FLINGDIR="${RLOC}/bitfling"
insinto $FLINGDIR
cd "${S}/src/bitfling"
doins *.py
cd "${S}"
fi
# Creating scripts
echo '#!/bin/sh' > "${T}/bitpim"
echo "exec $(PYTHON) ${RLOC}/bp.py \"\$@\"" >> "${T}/bitpim"
dobin "${T}/bitpim"
if use crypt; then
echo '#!/bin/sh' > "${T}/bitfling"
echo "exec $(PYTHON) ${RLOC}/bp.py \"\$@\" bitfling" >> "${T}/bitfling"
dobin "${T}/bitfling"
fi
# Desktop file
insinto /usr/share/applications
sed -i -e "s|%%INSTALLBINDIR%%|/usr/bin|" -e "s|%%INSTALLLIBDIR%%|${RLOC}|" \
packaging/bitpim.desktop
doins packaging/bitpim.desktop
}
pkg_postinst() {
# Optimize in installed directory
python_mod_optimize /usr/$(get_libdir)/${P}
fdo-mime_desktop_database_update
}
pkg_postrm() {
python_mod_cleanup /usr/$(get_libdir)/${P}
fdo-mime_desktop_database_update
}
|