summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2004-02-17 16:31:34 +0000
committerAkinori Hattori <hattya@gentoo.org>2004-02-17 16:31:34 +0000
commitb2bde2479d4f138d5910a74a75e5fbc72bbbd7bf (patch)
tree0350a9579d056257cd3bc2817c13f353fef2e55c /app-editors/shed
parentversion bump of both benh and gcloop patch (Manifest recommit) (diff)
downloadgentoo-2-b2bde2479d4f138d5910a74a75e5fbc72bbbd7bf.tar.gz
gentoo-2-b2bde2479d4f138d5910a74a75e5fbc72bbbd7bf.tar.bz2
gentoo-2-b2bde2479d4f138d5910a74a75e5fbc72bbbd7bf.zip
Initial revision. Ebuild submitted by Sven Wegener <sven.wegener@stealer.net> in bug #41629.
Diffstat (limited to 'app-editors/shed')
-rw-r--r--app-editors/shed/ChangeLog11
-rw-r--r--app-editors/shed/Manifest2
-rw-r--r--app-editors/shed/files/digest-shed-1.101
-rw-r--r--app-editors/shed/metadata.xml8
-rw-r--r--app-editors/shed/shed-1.10.ebuild32
5 files changed, 54 insertions, 0 deletions
diff --git a/app-editors/shed/ChangeLog b/app-editors/shed/ChangeLog
new file mode 100644
index 000000000000..94779ec0d7c4
--- /dev/null
+++ b/app-editors/shed/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for app-editors/shed
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/shed/ChangeLog,v 1.1 2004/02/17 16:31:34 hattya Exp $
+
+*shed-1.10 (18 Feb 2004)
+
+ 18 Feb 2004; Akinori Hattori <hattya@gentoo.org> metadata.xml,
+ shed-1.10.ebuild:
+ Initial revision. Ebuild submitted by Sven Wegener <sven.wegener@stealer.net>
+ in bug #41629.
+
diff --git a/app-editors/shed/Manifest b/app-editors/shed/Manifest
new file mode 100644
index 000000000000..4f3d14c991d4
--- /dev/null
+++ b/app-editors/shed/Manifest
@@ -0,0 +1,2 @@
+MD5 380e640cab7cd303024b68d5f1bbea12 shed-1.10.ebuild 597
+MD5 46d19846ada4563cc6da45275faa7beb files/digest-shed-1.10 60
diff --git a/app-editors/shed/files/digest-shed-1.10 b/app-editors/shed/files/digest-shed-1.10
new file mode 100644
index 000000000000..38e9c7691298
--- /dev/null
+++ b/app-editors/shed/files/digest-shed-1.10
@@ -0,0 +1 @@
+MD5 91f3822a3afa3e387028d0c0ee900f6d shed-1.10.tar.gz 30869
diff --git a/app-editors/shed/metadata.xml b/app-editors/shed/metadata.xml
new file mode 100644
index 000000000000..bfe33a26e11c
--- /dev/null
+++ b/app-editors/shed/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>no-herd</herd>
+ <maintainer>
+ <email>hattya@gentoo.org</email>
+ </maintainer>
+</pkgmetadata>
diff --git a/app-editors/shed/shed-1.10.ebuild b/app-editors/shed/shed-1.10.ebuild
new file mode 100644
index 000000000000..9d19864bb65c
--- /dev/null
+++ b/app-editors/shed/shed-1.10.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/app-editors/shed/shed-1.10.ebuild,v 1.1 2004/02/17 16:31:34 hattya Exp $
+
+IUSE=""
+
+DESCRIPTION="Simple Hex EDitor"
+HOMEPAGE="http://shed.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+RESTRICT="nomirror"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+SLOT="0"
+
+DEPEND=">=sys-libs/ncurses-5.3"
+
+src_compile() {
+
+ econf || die "econf failed"
+ emake AM_CXXFLAGS="${CXXFLAGS}" || die "emake failed"
+
+}
+
+src_install() {
+
+ dodir /usr/bin /usr/share/man/man1
+ make DESTDIR=${D} install || die "install failed"
+
+ dodoc [A-Z][A-Z]* ChangeLog
+
+}