blob: 40687025dc71de00af2e689d7949414c75d647e6 (
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
152
153
154
155
156
157
158
159
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
WX_GTK_VER="3.2-gtk3"
inherit autotools flag-o-matic wxwidgets xdg-utils
if [[ ${PV} == 9999 ]] ; then
EGIT_REPO_URI="https://github.com/amule-project/amule"
inherit git-r3
else
MY_P="${PN/m/M}-${PV}"
SRC_URI="https://download.sourceforge.net/${PN}/${MY_P}.tar.xz"
S="${WORKDIR}/${MY_P}"
KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
fi
DESCRIPTION="aMule, the all-platform eMule p2p client"
HOMEPAGE="https://www.amule.org/"
LICENSE="GPL-2+"
SLOT="0"
IUSE="daemon debug geoip nls remote stats upnp +X"
RDEPEND="
dev-libs/boost:=
dev-libs/crypto++:=
sys-libs/binutils-libs:0=
sys-libs/readline:0=
sys-libs/zlib
x11-libs/wxGTK:${WX_GTK_VER}[X?]
daemon? ( acct-user/amule )
geoip? ( dev-libs/geoip )
nls? ( virtual/libintl )
remote? (
acct-user/amule
media-libs/libpng:0=
)
stats? ( media-libs/gd:=[jpeg,png] )
upnp? ( net-libs/libupnp:0 )
"
DEPEND="${RDEPEND}
X? ( dev-util/desktop-file-utils )
"
BDEPEND="
virtual/pkgconfig
>=dev-build/boost-m4-0.4_p20221019
nls? ( sys-devel/gettext )
"
PATCHES=(
"${FILESDIR}/${PN}-2.3.2-disable-version-check.patch"
"${FILESDIR}/${PN}-2.3.3-fix-exception.patch"
"${FILESDIR}/${P}-autoconf-2.70.patch"
"${FILESDIR}/${PN}-2.3.3-backport-pr368.patch"
"${FILESDIR}/${PN}-2.3.3-wx3.2.patch"
"${FILESDIR}/${PN}-2.3.3-use-xdg-open-as-preview-default.patch"
)
src_prepare() {
default
rm m4/boost.m4 || die
if [[ ${PV} == 9999 ]]; then
./autogen.sh || die
else
eautoreconf
fi
}
src_configure() {
setup-wxwidgets
use debug || append-cppflags -DwxDEBUG_LEVEL=0
append-cxxflags -std=gnu++14
local myconf=(
--with-denoise-level=0
--with-wx-config="${WX_CONFIG}"
--enable-amulecmd
--with-boost
$(use_enable debug)
$(use_enable daemon amule-daemon)
$(use_enable geoip)
$(use_enable nls)
$(use_enable remote webserver)
$(use_enable stats cas)
$(use_enable stats alcc)
$(use_enable upnp)
)
if use X; then
myconf+=(
$(use_enable remote amule-gui)
$(use_enable stats alc)
$(use_enable stats wxcas)
)
else
myconf+=(
--disable-monolithic
--disable-amule-gui
--disable-alc
--disable-wxcas
)
fi
econf "${myconf[@]}"
}
src_test() {
emake check
}
src_install() {
default
if use daemon; then
newconfd "${FILESDIR}"/amuled.confd-r1 amuled
newinitd "${FILESDIR}"/amuled.initd amuled
fi
if use remote; then
newconfd "${FILESDIR}"/amuleweb.confd-r1 amuleweb
newinitd "${FILESDIR}"/amuleweb.initd amuleweb
fi
if use daemon || use remote; then
keepdir /var/lib/${PN}
fowners amule:amule /var/lib/${PN}
fperms 0750 /var/lib/${PN}
fi
}
pkg_postinst() {
local ver
if use daemon || use remote; then
for ver in ${REPLACING_VERSIONS}; do
if ver_test ${ver} -lt "2.3.2-r4"; then
elog "Default user under which amuled and amuleweb daemons are started"
elog "have been changed from p2p to amule. Default home directory have been"
elog "changed as well."
echo
elog "If you want to preserve old download/share location, you can create"
elog "symlink /var/lib/amule/.aMule pointing to the old location and adjust"
elog "files ownership *or* restore AMULEUSER and AMULEHOME variables in"
elog "/etc/conf.d/{amuled,amuleweb} to the old values."
break
fi
done
fi
use X && xdg_desktop_database_update
}
pkg_postrm() {
use X && xdg_desktop_database_update
}
|