forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ax25-tools-0.0.10_rc4.ebuild
45 lines (35 loc) · 1.07 KB
/
ax25-tools-0.0.10_rc4.ebuild
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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit eutils
MY_P=${P/_/-}
DESCRIPTION="Basic AX.25 (Amateur Radio) administrative tools and daemons"
HOMEPAGE="http://www.linux-ax25.org/"
SRC_URI="http://www.linux-ax25.org/pub/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="X"
S=${WORKDIR}/${MY_P}
DEPEND="dev-libs/libax25
X? ( x11-libs/libX11
media-libs/mesa )"
RDEPEND=${DEPEND}
src_configure() {
econf $(use_with X x)
}
src_install() {
emake DESTDIR="${D}" install installconf
# Package does not respect --docdir
rm -rf "${D}"/usr/share/doc/ax25-tools || die
dodoc AUTHORS ChangeLog NEWS README tcpip/ttylinkd.README \
user_call/README.user_call yamdrv/README.yamdrv dmascc/README.dmascc \
tcpip/ttylinkd.INSTALL
newinitd "${FILESDIR}"/ax25d.rc ax25d
newinitd "${FILESDIR}"/mheardd.rc mheardd
newinitd "${FILESDIR}"/netromd.rc netromd
newinitd "${FILESDIR}"/rip98d.rc rip98d
newinitd "${FILESDIR}"/rxecho.rc rxecho
newinitd "${FILESDIR}"/ttylinkd.rc ttylinkd
}