diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 19:18:35 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-25 19:18:35 +0000 |
commit | 6ac305a4a3efb9be218c55f45fb585aec0ffd061 (patch) | |
tree | 3ca505bd954944333b6d6cada5fb936e500cbf12 /app-misc/multimon/multimon-1.0.ebuild | |
parent | Added SLOT, KEYWORDS, LICENSE, and RDEPEND. (diff) | |
download | gentoo-2-6ac305a4a3efb9be218c55f45fb585aec0ffd061.tar.gz gentoo-2-6ac305a4a3efb9be218c55f45fb585aec0ffd061.tar.bz2 gentoo-2-6ac305a4a3efb9be218c55f45fb585aec0ffd061.zip |
repoman'd
Diffstat (limited to 'app-misc/multimon/multimon-1.0.ebuild')
-rw-r--r-- | app-misc/multimon/multimon-1.0.ebuild | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/app-misc/multimon/multimon-1.0.ebuild b/app-misc/multimon/multimon-1.0.ebuild index 16fa01a6dc20..10d7b1354708 100644 --- a/app-misc/multimon/multimon-1.0.ebuild +++ b/app-misc/multimon/multimon-1.0.ebuild @@ -1,20 +1,24 @@ -# Copyright 1999-2001 Gentoo Technologies, Inc. +# Copyright 1999-2002 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 $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/multimon/multimon-1.0.ebuild,v 1.4 2002/07/25 19:18:34 seemant 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" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND="virtual/x11" src_compile() { - try make CFLAGS="${CFLAGS}" + make CFLAGS="${CFLAGS}" || die } src_install() { - local myarch - myarch=`uname -m` - dobin bin-${myarch}/gen bin-${myarch}/mkcostab bin-${myarch}/multimon - + local myarch + myarch=`uname -m` + dobin bin-${myarch}/gen bin-${myarch}/mkcostab bin-${myarch}/multimon } |