diff options
author | Thomas Beierlein <tomjbe@gentoo.org> | 2014-08-07 06:58:26 +0000 |
---|---|---|
committer | Thomas Beierlein <tomjbe@gentoo.org> | 2014-08-07 06:58:26 +0000 |
commit | 824af723508c94df36c099f618edcd7287856ce4 (patch) | |
tree | 26e0b1922d2e93870be43925acfd1a81e4f8f6c4 /media-radio | |
parent | version bump (bug #519194) (diff) | |
download | gentoo-2-824af723508c94df36c099f618edcd7287856ce4.tar.gz gentoo-2-824af723508c94df36c099f618edcd7287856ce4.tar.bz2 gentoo-2-824af723508c94df36c099f618edcd7287856ce4.zip |
bump EAPI
(Portage version: 2.2.11-r1/cvs/Linux x86_64, signed Manifest commit with key 0x762053D5)
Diffstat (limited to 'media-radio')
-rw-r--r-- | media-radio/dxcc/ChangeLog | 9 | ||||
-rw-r--r-- | media-radio/dxcc/dxcc-20080225-r1.ebuild | 27 |
2 files changed, 34 insertions, 2 deletions
diff --git a/media-radio/dxcc/ChangeLog b/media-radio/dxcc/ChangeLog index 5da8557c02fe..5b2eac4c16dd 100644 --- a/media-radio/dxcc/ChangeLog +++ b/media-radio/dxcc/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-radio/dxcc -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-radio/dxcc/ChangeLog,v 1.3 2010/10/22 14:41:07 fauli Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/dxcc/ChangeLog,v 1.4 2014/08/07 06:58:26 tomjbe Exp $ + +*dxcc-20080225-r1 (07 Aug 2014) + + 07 Aug 2014; Thomas Beierlein <tomjbe@gentoo.org> +dxcc-20080225-r1.ebuild: + bump EAPI 22 Oct 2010; Christian Faulhammer <fauli@gentoo.org> dxcc-20080225.ebuild: stable x86, bug 341467 diff --git a/media-radio/dxcc/dxcc-20080225-r1.ebuild b/media-radio/dxcc/dxcc-20080225-r1.ebuild new file mode 100644 index 000000000000..6f3540307db4 --- /dev/null +++ b/media-radio/dxcc/dxcc-20080225-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-radio/dxcc/dxcc-20080225-r1.ebuild,v 1.1 2014/08/07 06:58:25 tomjbe Exp $ + +EAPI=5 +inherit eutils + +DESCRIPTION="A ham radio callsign DXCC lookup utility" +HOMEPAGE="http://fkurz.net/ham/dxcc.html" +SRC_URI="http://fkurz.net/ham/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="tk" + +RDEPEND="dev-lang/perl + tk? ( dev-perl/perl-tk )" + +src_prepare() { + epatch "${FILESDIR}/Makefile.patch" +} + +src_install() { + emake DESTDIR="${D}/usr" install + dodoc README ChangeLog +} |