summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Hood <squinky86@gentoo.org>2004-04-30 21:30:15 +0000
committerJon Hood <squinky86@gentoo.org>2004-04-30 21:30:15 +0000
commitaa035dc96a2ebdc823507f244d47342b8fd77a7b (patch)
tree5ce8f7e20aa04f75b75c695bdeac9989161f0fe9 /net-p2p/smet2html
parentwebapp compatible ebuild (Manifest recommit) (diff)
downloadgentoo-2-aa035dc96a2ebdc823507f244d47342b8fd77a7b.tar.gz
gentoo-2-aa035dc96a2ebdc823507f244d47342b8fd77a7b.tar.bz2
gentoo-2-aa035dc96a2ebdc823507f244d47342b8fd77a7b.zip
Initial commit. Closes #31862.
Diffstat (limited to 'net-p2p/smet2html')
-rw-r--r--net-p2p/smet2html/ChangeLog10
-rw-r--r--net-p2p/smet2html/Manifest2
-rw-r--r--net-p2p/smet2html/files/digest-smet2html-0.11
-rw-r--r--net-p2p/smet2html/metadata.xml5
-rw-r--r--net-p2p/smet2html/smet2html-0.1.ebuild32
5 files changed, 50 insertions, 0 deletions
diff --git a/net-p2p/smet2html/ChangeLog b/net-p2p/smet2html/ChangeLog
new file mode 100644
index 000000000000..85a4e29e7eb0
--- /dev/null
+++ b/net-p2p/smet2html/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-p2p/smet2html
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/smet2html/ChangeLog,v 1.1 2004/04/30 21:30:15 squinky86 Exp $
+
+*smet2html-0.1 (30 Apr 2004)
+
+ 30 Apr 2004; Jon Hood <squinky86@gentoo.org> +metadata.xml,
+ +smet2html-0.1.ebuild:
+ initial commit irt #31862
+
diff --git a/net-p2p/smet2html/Manifest b/net-p2p/smet2html/Manifest
new file mode 100644
index 000000000000..165ef8fae6b2
--- /dev/null
+++ b/net-p2p/smet2html/Manifest
@@ -0,0 +1,2 @@
+MD5 06f9bb71d91503dbf3148d133a6263a9 smet2html-0.1.ebuild 585
+MD5 0e9f3af9ac2552dc46b4f35a4312027e files/digest-smet2html-0.1 63
diff --git a/net-p2p/smet2html/files/digest-smet2html-0.1 b/net-p2p/smet2html/files/digest-smet2html-0.1
new file mode 100644
index 000000000000..f64ed91cd6f9
--- /dev/null
+++ b/net-p2p/smet2html/files/digest-smet2html-0.1
@@ -0,0 +1 @@
+MD5 8fd0de5983944df14fd1fed22d42b8ac smet2html-0.1.tar.gz 4669
diff --git a/net-p2p/smet2html/metadata.xml b/net-p2p/smet2html/metadata.xml
new file mode 100644
index 000000000000..aa0f3664825f
--- /dev/null
+++ b/net-p2p/smet2html/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>net-p2p</herd>
+</pkgmetadata>
diff --git a/net-p2p/smet2html/smet2html-0.1.ebuild b/net-p2p/smet2html/smet2html-0.1.ebuild
new file mode 100644
index 000000000000..e09e5d332fcc
--- /dev/null
+++ b/net-p2p/smet2html/smet2html-0.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/smet2html/smet2html-0.1.ebuild,v 1.1 2004/04/30 21:30:15 squinky86 Exp $
+
+DESCRIPTION="Convert eDonkey2000 server.met to html"
+HOMEPAGE="http://ed2k-tools.sourceforge.net/${PN}.shtml"
+SRC_URI="mirror://sourceforge/ed2k-tools/${P}.tar.gz"
+RESTRICT="nomirror"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND="virtual/glibc"
+
+S="${WORKDIR}/${PN}"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+
+ sed -i -e "s:gcc -Wall:gcc ${CFLAGS} -Wall:g" ${S}/Makefile
+}
+
+src_compile() {
+ make || die "make failed"
+}
+
+src_install() {
+ dobin smet2html
+}