summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Houser <chouser@gentoo.org>2002-03-01 21:29:58 +0000
committerChris Houser <chouser@gentoo.org>2002-03-01 21:29:58 +0000
commit9bd76b946668888454227edd5bd78f390cec72e7 (patch)
tree7cffc3654429c4689417e98c76f51c832c8da1a1 /net-misc/mmsclient
parentAdded 3.0.4 and removed all earlier 3.0.x ebuilds. I still need to (diff)
downloadhistorical-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')
-rw-r--r--net-misc/mmsclient/ChangeLog9
-rw-r--r--net-misc/mmsclient/files/digest-mmsclient-0.0.31
-rw-r--r--net-misc/mmsclient/mmsclient-0.0.3.ebuild21
3 files changed, 31 insertions, 0 deletions
diff --git a/net-misc/mmsclient/ChangeLog b/net-misc/mmsclient/ChangeLog
new file mode 100644
index 000000000000..a60e81432ca5
--- /dev/null
+++ b/net-misc/mmsclient/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for net-misc/mmsclient
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mmsclient/ChangeLog,v 1.1 2002/03/01 21:29:58 chouser Exp $
+
+*mmsclient-0.0.3 (01 Mar 2002)
+
+ 01 Mar 2002; Chris Houser <chouser@gentoo.org> :
+
+ First Gentoo package of a simple tool for downloading mms-protocol streams
diff --git a/net-misc/mmsclient/files/digest-mmsclient-0.0.3 b/net-misc/mmsclient/files/digest-mmsclient-0.0.3
new file mode 100644
index 000000000000..d621ad9d5638
--- /dev/null
+++ b/net-misc/mmsclient/files/digest-mmsclient-0.0.3
@@ -0,0 +1 @@
+MD5 c91171a0bbbfb94290d362e907432787 mms_client-0.0.3.tar.gz 117424
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
+}