diff options
-rw-r--r-- | media-radio/ax25-apps/ChangeLog | 10 | ||||
-rw-r--r-- | media-radio/ax25-apps/ax25-apps-0.0.8_rc3.ebuild | 40 |
2 files changed, 48 insertions, 2 deletions
diff --git a/media-radio/ax25-apps/ChangeLog b/media-radio/ax25-apps/ChangeLog index c72e66516d8f..bfb7ca851d1e 100644 --- a/media-radio/ax25-apps/ChangeLog +++ b/media-radio/ax25-apps/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-radio/ax25-apps -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/ax25-apps/ChangeLog,v 1.20 2012/11/11 18:49:21 tomjbe Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/ax25-apps/ChangeLog,v 1.21 2013/06/09 17:32:44 tomjbe Exp $ + +*ax25-apps-0.0.8_rc3 (09 Jun 2013) + + 09 Jun 2013; Thomas Beierlein <tomjbe@gentoo.org> + +ax25-apps-0.0.8_rc3.ebuild: + Version bump 11 Nov 2012; Thomas Beierlein <tomjbe@gentoo.org> ax25-apps-0.0.6-r1.ebuild, +files/ax25-apps-0.0.6-cflags.patch: diff --git a/media-radio/ax25-apps/ax25-apps-0.0.8_rc3.ebuild b/media-radio/ax25-apps/ax25-apps-0.0.8_rc3.ebuild new file mode 100644 index 000000000000..8e04a301460d --- /dev/null +++ b/media-radio/ax25-apps/ax25-apps-0.0.8_rc3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/ax25-apps/ax25-apps-0.0.8_rc3.ebuild,v 1.1 2013/06/09 17:32:44 tomjbe Exp $ + +EAPI=5 + +MY_P=${P/_/-} + +DESCRIPTION="Basic AX.25 (Amateur Radio) user tools, additional 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="" + +DEPEND=">=dev-libs/libax25-0.0.12_rc2 + sys-libs/ncurses + !media-sound/listen" +RDEPEND=${DEPEND} + +S=${WORKDIR}/${MY_P} + +src_install() { + default + + newinitd "${FILESDIR}"/ax25ipd.rc ax25ipd + newinitd "${FILESDIR}"/ax25mond.rc ax25mond + newinitd "${FILESDIR}"/ax25rtd.rc ax25rtd + + rm -rf "${ED}"/usr/share/doc/ax25-apps + + dodoc AUTHORS ChangeLog NEWS README ax25ipd/README.ax25ipd \ + ax25rtd/README.ax25rtd ax25ipd/HISTORY.ax25ipd ax25rtd/TODO.ax25rtd + + dodir /var/lib/ax25/ax25rtd + touch "${ED}"/var/lib/ax25/ax25rtd/ax25_route + touch "${ED}"/var/lib/ax25/ax25rtd/ip_route +} |