diff options
author | Chris Houser <chouser@gentoo.org> | 2002-03-01 21:29:58 +0000 |
---|---|---|
committer | Chris Houser <chouser@gentoo.org> | 2002-03-01 21:29:58 +0000 |
commit | 9bd76b946668888454227edd5bd78f390cec72e7 (patch) | |
tree | 7cffc3654429c4689417e98c76f51c832c8da1a1 /net-misc/mmsclient/mmsclient-0.0.3.ebuild | |
parent | Added 3.0.4 and removed all earlier 3.0.x ebuilds. I still need to (diff) | |
download | historical-9bd76b946668888454227edd5bd78f390cec72e7.tar.gz historical-9bd76b946668888454227edd5bd78f390cec72e7.tar.bz2 historical-9bd76b946668888454227edd5bd78f390cec72e7.zip |
First Gentoo package of a simple tool for downloading mms-protocol streams
Diffstat (limited to 'net-misc/mmsclient/mmsclient-0.0.3.ebuild')
-rw-r--r-- | net-misc/mmsclient/mmsclient-0.0.3.ebuild | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net-misc/mmsclient/mmsclient-0.0.3.ebuild b/net-misc/mmsclient/mmsclient-0.0.3.ebuild new file mode 100644 index 000000000000..16103124a399 --- /dev/null +++ b/net-misc/mmsclient/mmsclient-0.0.3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-misc/mmsclient/mmsclient-0.0.3.ebuild,v 1.1 2002/03/01 21:29:58 chouser Exp $ + +S=${WORKDIR}/mms_client-${PV} +DESCRIPTION="mms protocol download utility" +SRC_URI="http://www.geocities.com/majormms/mms_client-${PV}.tar.gz" +HOMEPAGE="http://www.geocities.com/majormms/" +DEPEND="virtual/glibc" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr || die "./configure failed" + emake || die "emake failed" +} + +src_install () { + make DESTDIR=${D} install || die "make install failed" + dodoc COPYING +} |