summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-util/httpup/ChangeLog8
-rw-r--r--dev-util/httpup/Manifest5
-rw-r--r--dev-util/httpup/files/digest-httpup-0.3.21
-rw-r--r--dev-util/httpup/httpup-0.3.2.ebuild28
4 files changed, 42 insertions, 0 deletions
diff --git a/dev-util/httpup/ChangeLog b/dev-util/httpup/ChangeLog
new file mode 100644
index 000000000000..bba46ef63b60
--- /dev/null
+++ b/dev-util/httpup/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for dev-util/httpup
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/httpup/ChangeLog,v 1.1 2005/02/19 18:07:22 vapier Exp $
+
+*httpup-0.3.2 (19 Feb 2004)
+
+ 19 Feb 2004; Mike Frysinger <vapier@gentoo.org> :
+ Initial import. Ebuild submitted by me.
diff --git a/dev-util/httpup/Manifest b/dev-util/httpup/Manifest
new file mode 100644
index 000000000000..f08b7f4c66eb
--- /dev/null
+++ b/dev-util/httpup/Manifest
@@ -0,0 +1,5 @@
+MD5 e4f9f3af18c613f22ae2050b9ce370f1 ChangeLog 187
+MD5 664d393ce2c056c10b77f1de646532fc metadata.xml 258
+MD5 095f7b453158a8ff66c43d41123998af httpup-0.3.2.ebuild 425
+MD5 fac7ef289622d2f582bf97c77ea288bb files/digest-httpup-1 59
+MD5 d91d25c0128b914eb4f56fbf34ee36a5 files/digest-httpup-0.3.2 63
diff --git a/dev-util/httpup/files/digest-httpup-0.3.2 b/dev-util/httpup/files/digest-httpup-0.3.2
new file mode 100644
index 000000000000..e66f06c95f04
--- /dev/null
+++ b/dev-util/httpup/files/digest-httpup-0.3.2
@@ -0,0 +1 @@
+MD5 25eb7010a00162ae6c95533883777cc4 httpup-0.3.2.tar.gz 19491
diff --git a/dev-util/httpup/httpup-0.3.2.ebuild b/dev-util/httpup/httpup-0.3.2.ebuild
new file mode 100644
index 000000000000..7d7cab7116e8
--- /dev/null
+++ b/dev-util/httpup/httpup-0.3.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/httpup/httpup-0.3.2.ebuild,v 1.1 2005/02/19 18:07:22 vapier Exp $
+
+DESCRIPTION="synchronisation tool for http file repositories"
+HOMEPAGE="http://clc.berlios.de/projects/httpup/"
+SRC_URI="http://jw.tks6.net/files/crux/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="net-misc/curl"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i \
+ -e 's:g++:$(CXX) $(CFLAGS) $(LDFLAGS):' \
+ Makefile
+}
+
+src_install() {
+ dobin httpup httpup-repgen httpup-repgen2 || die "dobin"
+ doman *.8
+ dodoc AUTHORS README TODO ChangeLog httpup.conf.example
+}