diff options
author | Daniel Black <dragonheart@gentoo.org> | 2005-08-07 07:33:53 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2005-08-07 07:33:53 +0000 |
commit | 8b942291ab5b6b1ee71ba9641a41bcd6e3593045 (patch) | |
tree | 74a991f7d9e00b874379e52e1271ae1f64779ff5 /dev-libs/mdsplib/mdsplib-0.11.ebuild | |
parent | initial import #65374 (diff) | |
download | gentoo-2-8b942291ab5b6b1ee71ba9641a41bcd6e3593045.tar.gz gentoo-2-8b942291ab5b6b1ee71ba9641a41bcd6e3593045.tar.bz2 gentoo-2-8b942291ab5b6b1ee71ba9641a41bcd6e3593045.zip |
initial import as per bug #99262
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-libs/mdsplib/mdsplib-0.11.ebuild')
-rw-r--r-- | dev-libs/mdsplib/mdsplib-0.11.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-libs/mdsplib/mdsplib-0.11.ebuild b/dev-libs/mdsplib/mdsplib-0.11.ebuild new file mode 100644 index 000000000000..bdd5f20c6f3d --- /dev/null +++ b/dev-libs/mdsplib/mdsplib-0.11.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/mdsplib/mdsplib-0.11.ebuild,v 1.1 2005/08/07 07:33:53 dragonheart Exp $ + +DESCRIPTION="METAR Decoder Software Package Library" +HOMEPAGE="http://limulus.net/mdsplib/" +SRC_URI="http://limulus.net/mdsplib/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~ppc" + +DEPEND="virtual/libc" +RDEPEND="virtual/libc" + +src_compile() { + emake -e all || die "make failed" +} + +src_install() { + insinto /usr/include + insopts -m0644 + newins ${S}/metar.h metar.h + insinto /usr/lib + insopts -m0644 + newins ${S}/libmetar.a libmetar.a + dodoc README README.MDSP + dobin dmetar +} + |