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
commitc25ae64632deae7d5378550d1cff74eb73f39e7d (patch)
tree5d669754bbf1a0bd3c2c1ece3dd7389761770bf8 /net-p2p/smet2html/smet2html-0.1.ebuild
parentwebapp compatible ebuild (diff)
downloadhistorical-c25ae64632deae7d5378550d1cff74eb73f39e7d.tar.gz
historical-c25ae64632deae7d5378550d1cff74eb73f39e7d.tar.bz2
historical-c25ae64632deae7d5378550d1cff74eb73f39e7d.zip
Initial commit. Closes #31862.
Diffstat (limited to 'net-p2p/smet2html/smet2html-0.1.ebuild')
-rw-r--r--net-p2p/smet2html/smet2html-0.1.ebuild32
1 files changed, 32 insertions, 0 deletions
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
+}