blob: 021722efb00ee8cf7e8ae87a8cad6191f39ede9f (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools eutils linux-info
HOMEPAGE="http://www.gnokii.org/"
if [[ $PV == *9999 ]]; then
EGIT_REPO_URI="
git://git.savannah.nongnu.org/${PN}.git
http://git.savannah.gnu.org/r/${PN}.git"
inherit git-r3
else
SRC_URI="http://www.gnokii.org/download/${PN}/${P}.tar.bz2"
KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
fi
DESCRIPTION="User space driver and tools for use with mobile phones"
LICENSE="GPL-2"
SLOT="0"
IUSE="bluetooth debug ical irda mysql nls +pcsc-lite postgres sms usb X"
RDEPEND="
!app-mobilephone/smstools
bluetooth? ( kernel_linux? ( net-wireless/bluez ) )
ical? ( dev-libs/libical:= )
pcsc-lite? ( sys-apps/pcsc-lite )
sms? (
dev-libs/glib:2
postgres? ( dev-db/postgresql:* )
mysql? ( virtual/mysql:= )
)
usb? ( virtual/libusb:0 )
X? ( x11-libs/gtk+:2 )
"
DEPEND="${RDEPEND}
dev-util/intltool
irda? ( virtual/os-headers )
nls? ( sys-devel/gettext )
"
CONFIG_CHECK="~UNIX98_PTYS"
S="${WORKDIR}/${PN}-${PV%.1}"
# Supported languages and translated documentation
# Be sure all languages are prefixed with a single space!
MY_AVAILABLE_LINGUAS=" cs de et fi fr it nl pl pt sk sl sv zh_CN"
PATCHES=(
"${FILESDIR}"/${P}-fix_xgnokii_inclusion.patch
"${FILESDIR}"/${P}-gcc5.patch
"${FILESDIR}"/${P}-gcc7.patch
)
src_prepare() {
[[ $PV == *9999 ]] && \
PATCHES=(
"${FILESDIR}"/${P}-icon.patch
"${FILESDIR}"/${P}-translations.patch
)
sed -i -e "s:/usr/local:${EPREFIX}/usr:" Docs/sample/gnokiirc || die
default
mv configure.{in,ac} || die
eautoreconf
}
src_configure() {
strip-linguas ${MY_AVAILABLE_LINGUAS}
local config_xdebug
if use X && use debug; then
config_xdebug="--enable-xdebug"
else
config_xdebug="--disable-xdebug"
fi
econf \
--disable-static \
--enable-security \
--disable-unix98test \
$(use_enable bluetooth) \
${config_xdebug} \
$(use_enable debug fulldebug) \
$(use_enable debug rlpdebug) \
$(use_enable ical libical) \
$(use_enable irda) \
$(use_enable mysql) \
$(use_enable nls) \
$(use_enable pcsc-lite libpcsclite) \
$(use_enable postgres) \
$(use_enable sms smsd) \
$(use_enable usb libusb) \
$(use_with X x)
}
src_test() {
echo common/phones/fake.c >> po/POTFILES.in || die
default
}
src_install() {
default
# package provides .pc files
find "${D}" -name '*.la' -delete || die
insinto /etc
doins Docs/sample/gnokiirc
# only one file needs suid root to make a pseudo device
fperms 4755 /usr/sbin/mgnokiidev
use X && newicon Docs/sample/logo/gnokii.xpm xgnokii.xpm
if use sms; then
cd smsd || die
docinto smsd
use mysql && dodoc sms.tables.mysql.sql README.MySQL
use postgres && dodoc sms.tables.pq.sql
dodoc README ChangeLog README.Tru64 action
fi
}
pkg_postinst() {
elog "Make sure the user that runs gnokii has read/write access to the device"
elog "which your phone is connected to."
elog "The simple way of doing that is to add your user to the uucp group."
if [[ $PV == *9999 ]]; then
elog "This is the GIT version of ${PN}. It is experimental but may have important bug fixes."
elog "You can keep track of the most recent commits at:"
elog " http://git.savannah.gnu.org/cgit/gnokii.git/"
elog "Whenever there is a change you are interested in, you can re-emerge ${P}."
fi
}
|