blob: 16fa01a6dc200d18e8ce91a0204d409d9e3d6ea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-misc/multimon/multimon-1.0.ebuild,v 1.3 2002/07/11 06:30:16 drobbins Exp $
S=${WORKDIR}/multimon
SRC_URI="http://www.baycom.org/~tom/ham/linux/multimon.tar.gz"
HOMEPAGE="http://www.baycom.org/~tom/ham/linux/multimon.html"
DESCRIPTION="Multimon decodes digital transmission codes using OSS"
DEPEND="virtual/glibc virtual/x11"
src_compile() {
try make CFLAGS="${CFLAGS}"
}
src_install() {
local myarch
myarch=`uname -m`
dobin bin-${myarch}/gen bin-${myarch}/mkcostab bin-${myarch}/multimon
}
|