diff options
author | 2004-05-02 18:47:48 +0000 | |
---|---|---|
committer | 2004-05-02 18:47:48 +0000 | |
commit | 78d4bdc66e8628c982d6097ee1cc1577a866caa5 (patch) | |
tree | 261b5333f78649b53ba544eba4186c4a6c9f9036 /net-misc | |
parent | ARM is having issues with static linking as the spec file calls for crtbeginT... (diff) | |
download | historical-78d4bdc66e8628c982d6097ee1cc1577a866caa5.tar.gz historical-78d4bdc66e8628c982d6097ee1cc1577a866caa5.tar.bz2 historical-78d4bdc66e8628c982d6097ee1cc1577a866caa5.zip |
Initial import, bug #48790.
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/wput/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/wput/Manifest | 4 | ||||
-rw-r--r-- | net-misc/wput/files/digest-wput-0.4 | 1 | ||||
-rw-r--r-- | net-misc/wput/metadata.xml | 6 | ||||
-rw-r--r-- | net-misc/wput/wput-0.4.ebuild | 30 |
5 files changed, 51 insertions, 0 deletions
diff --git a/net-misc/wput/ChangeLog b/net-misc/wput/ChangeLog new file mode 100644 index 000000000000..0d04d2aa47f1 --- /dev/null +++ b/net-misc/wput/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-misc/wput +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wput/ChangeLog,v 1.1 2004/05/02 18:47:48 kloeri Exp $ + +*wput-0.4 (02 May 2004) + + 02 May 2004; Bryan Østergaard <kloeri@gentoo.org> +metadata.xml, + +wput-0.4.ebuild: + Initial import, bug #48790. + diff --git a/net-misc/wput/Manifest b/net-misc/wput/Manifest new file mode 100644 index 000000000000..390195f98e6d --- /dev/null +++ b/net-misc/wput/Manifest @@ -0,0 +1,4 @@ +MD5 7917801ab6bdd375cdf0abd1a998a915 wput-0.4.ebuild 788 +MD5 e2197bbca51952701bf182a7c4740f74 metadata.xml 218 +MD5 2a65386842ee39712b5492f3169f1e9a ChangeLog 351 +MD5 c4f33a3f597e892402d506bb45c85e71 files/digest-wput-0.4 57 diff --git a/net-misc/wput/files/digest-wput-0.4 b/net-misc/wput/files/digest-wput-0.4 new file mode 100644 index 000000000000..43c06884a7f7 --- /dev/null +++ b/net-misc/wput/files/digest-wput-0.4 @@ -0,0 +1 @@ +MD5 13db5b6b9ff0c4ce3cc2647a70185808 wput-0.4.tgz 151360 diff --git a/net-misc/wput/metadata.xml b/net-misc/wput/metadata.xml new file mode 100644 index 000000000000..1a0fa6ed6c78 --- /dev/null +++ b/net-misc/wput/metadata.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer><email>kloeri@gentoo.org</email></maintainer> +</pkgmetadata> diff --git a/net-misc/wput/wput-0.4.ebuild b/net-misc/wput/wput-0.4.ebuild new file mode 100644 index 000000000000..09a3af7c2941 --- /dev/null +++ b/net-misc/wput/wput-0.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/wput/wput-0.4.ebuild,v 1.1 2004/05/02 18:47:48 kloeri Exp $ + +S="${WORKDIR}/${PN}" + +DESCRIPTION="a tiny program that looks like wget and is designed to upload files or whole directories to remote ftp-servers" +HOMEPAGE="http://itooktheredpill.dyndns.org/wput/" +SRC_URI="http://itooktheredpill.dyndns.org/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="" + +src_compile() { + econf --prefix=${D}usr || die "configure failed" + emake || die "make failed" +} + +src_install() { + dodir /usr/bin + dodir /usr/share/man/man1 + einstall || die "install failed" + + # Documentation + dodoc COPYING ChangeLog INSTALL TODO +} |