Lines 1-10
Link Here
|
1 |
# Copyright 1999-2020 Gentoo Authors |
1 |
# Copyright 1999-2020 Gentoo Authors |
2 |
# Distributed under the terms of the GNU General Public License v2 |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
|
3 |
|
4 |
EAPI=5 |
4 |
EAPI=7 |
5 |
|
5 |
|
6 |
DISTUTILS_OPTIONAL=1 |
6 |
DISTUTILS_OPTIONAL=1 |
7 |
PYTHON_COMPAT=( python2_7 python3_6 ) |
7 |
PYTHON_COMPAT=( python2_7 python3_{6..8} ) |
8 |
SCONS_MIN_VERSION="2.3.0" |
8 |
SCONS_MIN_VERSION="2.3.0" |
9 |
|
9 |
|
10 |
inherit eutils udev user multilib distutils-r1 scons-utils toolchain-funcs |
10 |
inherit eutils udev user multilib distutils-r1 scons-utils toolchain-funcs |
Lines 41-46
REQUIRED_USE="X? ( python )
Link Here
|
41 |
RESTRICT="!test? ( test )" |
41 |
RESTRICT="!test? ( test )" |
42 |
|
42 |
|
43 |
RDEPEND=" |
43 |
RDEPEND=" |
|
|
44 |
acct-user/gpsd |
44 |
>=net-misc/pps-tools-0.0.20120407 |
45 |
>=net-misc/pps-tools-0.0.20120407 |
45 |
bluetooth? ( net-wireless/bluez ) |
46 |
bluetooth? ( net-wireless/bluez ) |
46 |
dbus? ( |
47 |
dbus? ( |
Lines 73-78
if [[ ${PV} == *9999* ]] ; then
Link Here
|
73 |
=app-text/docbook-xml-dtd-4.1*" |
74 |
=app-text/docbook-xml-dtd-4.1*" |
74 |
fi |
75 |
fi |
75 |
|
76 |
|
|
|
77 |
PATCHES=( |
78 |
"${FILESDIR}"/${PN}-3.19-do_not_rm_library.patch |
79 |
# Merged upstream |
80 |
#"${FILESDIR}"/${P}-scons-print.patch |
81 |
#"${FILESDIR}"/${P}-scons-py3.patch |
82 |
) |
83 |
|
76 |
src_prepare() { |
84 |
src_prepare() { |
77 |
# Make sure our list matches the source. |
85 |
# Make sure our list matches the source. |
78 |
local src_protocols=$(echo $( |
86 |
local src_protocols=$(echo $( |
Lines 84-94
src_prepare() {
Link Here
|
84 |
die "please sync ebuild & source" |
92 |
die "please sync ebuild & source" |
85 |
fi |
93 |
fi |
86 |
|
94 |
|
87 |
epatch "${FILESDIR}"/${PN}-3.19-do_not_rm_library.patch |
|
|
88 |
# Merged upstream |
89 |
#epatch "${FILESDIR}"/${P}-scons-print.patch |
90 |
#epatch "${FILESDIR}"/${P}-scons-py3.patch |
91 |
|
92 |
# Avoid useless -L paths to the install dir |
95 |
# Avoid useless -L paths to the install dir |
93 |
sed -i \ |
96 |
sed -i \ |
94 |
-e 's:\<STAGING_PREFIX\>:SYSROOT:g' \ |
97 |
-e 's:\<STAGING_PREFIX\>:SYSROOT:g' \ |
Lines 101-117
src_prepare() {
Link Here
|
101 |
|
104 |
|
102 |
python_prepare_all() { |
105 |
python_prepare_all() { |
103 |
python_setup |
106 |
python_setup |
104 |
python_export |
|
|
105 |
|
107 |
|
106 |
# Extract python info out of SConstruct so we can use saner distribute |
108 |
# Extract python info out of SConstruct so we can use saner distribute |
107 |
pyvar() { sed -n "/^ *$1 *=/s:.*= *::p" SConstruct ; } |
109 |
pyarray() { sed -n "/^ *$1 *= *\\[/,/\\]/p" SConstruct ; } |
108 |
local pybins=$(pyvar python_progs | tail -1) |
110 |
local pyprogs=$(pyarray python_progs) |
|
|
111 |
local pybins=$("${PYTHON}" -c "${pyprogs}; \ |
112 |
print(list(set(python_progs) - {'xgps', 'xgpsspeed', 'ubxtool', 'zerk'}))") |
109 |
# Handle conditional tools manually. #666734 |
113 |
# Handle conditional tools manually. #666734 |
110 |
use X && pybins+="+ ['xgps', 'xgpsspeed']" |
114 |
use X && pybins+="+ ['xgps', 'xgpsspeed']" |
111 |
use gpsd_protocols_ublox && pybins+="+ ['ubxtool']" |
115 |
use gpsd_protocols_ublox && pybins+="+ ['ubxtool']" |
112 |
use gpsd_protocols_greis && pybins+="+ ['zerk']" |
116 |
use gpsd_protocols_greis && pybins+="+ ['zerk']" |
113 |
local pysrcs=$(sed -n '/^ *python_extensions = {/,/}/{s:^ *::;s:os[.]sep:"/":g;p}' SConstruct) |
117 |
local pysrcs=$(pyarray packet_ffi_extension) |
114 |
local packet=$("${PYTHON}" -c "${pysrcs}; print(python_extensions['gps/packet'])") |
118 |
local packet=$("${PYTHON}" -c "${pysrcs}; print(packet_ffi_extension)") |
|
|
119 |
|
120 |
pyvar() { sed -n "/^ *$1 *=/s:.*= *::p" SConstruct ; } |
115 |
# Post 3.19 the clienthelpers were merged into gps.packet |
121 |
# Post 3.19 the clienthelpers were merged into gps.packet |
116 |
sed \ |
122 |
sed \ |
117 |
-e "s|@VERSION@|$(pyvar gpsd_version)|" \ |
123 |
-e "s|@VERSION@|$(pyvar gpsd_version)|" \ |
Lines 126-164
python_prepare_all() {
Link Here
|
126 |
} |
132 |
} |
127 |
|
133 |
|
128 |
src_configure() { |
134 |
src_configure() { |
129 |
myesconsargs=( |
135 |
scons_opts=( |
130 |
prefix="${EPREFIX}/usr" |
136 |
prefix="${EPREFIX}/usr" |
131 |
libdir="\$prefix/$(get_libdir)" |
137 |
libdir="\$prefix/$(get_libdir)" |
132 |
udevdir="$(get_udevdir)" |
138 |
udevdir="$(get_udevdir)" |
133 |
chrpath=False |
139 |
chrpath=False |
134 |
gpsd_user=gpsd |
140 |
gpsd_user=gpsd |
135 |
gpsd_group=uucp |
141 |
gpsd_group=dialout |
136 |
nostrip=True |
142 |
nostrip=True |
137 |
manbuild=False |
143 |
manbuild=False |
138 |
shared=$(usex !static True False) |
144 |
shared=$(usex !static True False) |
139 |
$(use_scons bluetooth bluez) |
145 |
bluez=$(usex bluetooth) |
140 |
$(use_scons cxx libgpsmm) |
146 |
libgpsmm=$(usex cxx) |
141 |
$(use_scons debug clientdebug) |
147 |
clientdebug=$(usex debug) |
142 |
$(use_scons dbus dbus_export) |
148 |
dbus_export=$(usex dbus) |
143 |
$(use_scons ipv6) |
149 |
ipv6=$(usex ipv6) |
144 |
$(use_scons latency-timing timing) |
150 |
timing=$(usex latency-timing) |
145 |
$(use_scons ncurses) |
151 |
ncurses=$(usex ncurses) |
146 |
$(use_scons ntp ntpshm) |
152 |
ntpshm=$(usex ntp) |
147 |
$(use_scons ntp pps) |
153 |
pps=$(usex ntp) |
148 |
$(use_scons python) |
154 |
python=$(usex python) |
149 |
$(use_scons qt5 qt) |
155 |
# force a predictable python libdir because lib vs. lib64 usage differs |
150 |
$(use_scons shm shm_export) |
156 |
# from 3.5 to 3.6+ |
151 |
$(use_scons sockets socket_export) |
157 |
$(usex python python_libdir="${EPREFIX}"/python-discard "") |
152 |
$(use_scons usb) |
158 |
qt=$(usex qt5) |
|
|
159 |
shm_export=$(usex shm) |
160 |
socket_export=$(usex sockets) |
161 |
usb=$(usex usb) |
153 |
) |
162 |
) |
154 |
|
163 |
|
155 |
use X && myesconsargs+=( xgps=1 xgpsspeed=1 ) |
164 |
use X && scons_opts+=( xgps=yes xgpsspeed=yes ) |
156 |
use qt5 && myesconsargs+=( qt_versioned=5 ) |
165 |
use qt5 && scons_opts+=( qt_versioned=5 ) |
157 |
|
166 |
|
158 |
# enable specified protocols |
167 |
# enable specified protocols |
159 |
local protocol |
168 |
local protocol |
160 |
for protocol in ${GPSD_PROTOCOLS[@]} ; do |
169 |
for protocol in ${GPSD_PROTOCOLS[@]} ; do |
161 |
myesconsargs+=( $(use_scons gpsd_protocols_${protocol} ${protocol}) ) |
170 |
scons_opts+=( ${protocol}=$(usex gpsd_protocols_${protocol}) ) |
162 |
done |
171 |
done |
163 |
} |
172 |
} |
164 |
|
173 |
|
Lines 166-192
src_compile() {
Link Here
|
166 |
export CHRPATH= |
175 |
export CHRPATH= |
167 |
tc-export CC CXX PKG_CONFIG |
176 |
tc-export CC CXX PKG_CONFIG |
168 |
export SHLINKFLAGS=${LDFLAGS} LINKFLAGS=${LDFLAGS} |
177 |
export SHLINKFLAGS=${LDFLAGS} LINKFLAGS=${LDFLAGS} |
169 |
escons |
178 |
escons "${scons_opts[@]}" |
170 |
|
179 |
|
171 |
use python && distutils-r1_src_compile |
180 |
use python && distutils-r1_src_compile |
172 |
} |
181 |
} |
173 |
|
182 |
|
174 |
src_install() { |
183 |
src_install() { |
175 |
DESTDIR="${D}" escons install $(usex udev udev-install "") |
184 |
DESTDIR="${D}" escons install "${scons_opts[@]}" $(usex udev udev-install "") |
176 |
|
185 |
|
177 |
newconfd "${FILESDIR}"/gpsd.conf-2 gpsd |
186 |
newconfd "${FILESDIR}"/gpsd.conf-2 gpsd |
178 |
newinitd "${FILESDIR}"/gpsd.init-2 gpsd |
187 |
newinitd "${FILESDIR}"/gpsd.init-2 gpsd |
179 |
|
188 |
|
180 |
# Cleanup bad alt copy due to Scons |
189 |
# Cleanup bad alt copy due to Scons |
181 |
rm -rf "${D}"/usr/local/$(get_libdir)/python*/site-packages/gps* |
190 |
rm -rf "${D}"/python-discard/gps* |
182 |
find "${D}"/usr/local/ -type d -delete |
191 |
find "${D}"/python-discard/ -type d -delete |
183 |
# Install correct multi-python copy |
192 |
# Install correct multi-python copy |
184 |
use python && distutils-r1_src_install |
193 |
use python && distutils-r1_src_install |
185 |
|
194 |
|
186 |
} |
195 |
} |
187 |
|
|
|
188 |
pkg_preinst() { |
189 |
# Run the gpsd daemon as gpsd and group uucp; create it here |
190 |
# as it doesn't seem to be needed during compile/install ... |
191 |
enewuser gpsd -1 -1 -1 "uucp" |
192 |
} |
193 |
- |