forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-radio/grig: Version bump. Fixes bug #561544. Thanks Toralf
Package-Manager: portage-2.2.26
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST grig-0.8.0.tar.gz 514072 SHA256 d621a3400b7720d6671d18bff2e7627cc1442d58df161cc8789851300495d3f3 SHA512 204256a382dd2faf5c380d036d5c75748a24d683e1f3625cc75d5f41a3e73a57c5720cc6db3ad8968c741835516a241680af4e83c32dc0e0951731548fb82357 WHIRLPOOL 2cf6c9f51febdbcb1e3f7caffdb76084a8198c067bead507e9ff9fc61ebacaa787e07b96b702e941725c1e3dcbbc95e4d7acbc0953acc577697b053f8949e506 | ||
DIST grig-0.8.1.tar.gz 621728 SHA256 be8687418fb23efa0468674c3fdd15340fed06eef09be9de21106cc17e033c25 SHA512 84eda8db5d18324f26f0775483c8272296aad05dd75f0572c01a3c7af6dbd14bff7b98cc6a61fe3c43d25193866be4b3dafdc4e68dfc37217e88b53ca53266f9 WHIRLPOOL 21b70d145a7c7b0901cc74748f4ec24ba719a398a3c59e78eb231d0b886e62222477be9e612d21eec411426ba8f520b900ad03ef5c65ff81dcf3f6dd45e05068 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit eutils | ||
|
||
DESCRIPTION="A tool for controlling amateur radios" | ||
HOMEPAGE="http://groundstation.sourceforge.net/grig/" | ||
SRC_URI="mirror://sourceforge/groundstation/${P}.tar.gz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
DEPEND=" | ||
dev-libs/glib:2 | ||
x11-libs/gtk+:2 | ||
media-libs/hamlib" | ||
RDEPEND="${DEPEND}" | ||
|
||
src_configure() { | ||
econf --enable-hardware | ||
} | ||
|
||
src_install() { | ||
default | ||
make_desktop_entry ${PN} "GRig" "/usr/share/pixmaps/grig/grig-logo.png" "HamRadio" | ||
rm -rf "${D}/usr/share/grig" || die "cleanup docs failed" | ||
} |