summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2002-05-11 02:01:39 +0000
committerGeorge Shapovalov <george@gentoo.org>2002-05-11 02:01:39 +0000
commit638b91ddd72bf3fa79602e341d97104076839785 (patch)
tree2dbb9871721a9ce8a0ef2069bbfb65bfe8d6a9af /app-text/hd2u
parentRemoving X fixes. (diff)
downloadhistorical-638b91ddd72bf3fa79602e341d97104076839785.tar.gz
historical-638b91ddd72bf3fa79602e341d97104076839785.tar.bz2
historical-638b91ddd72bf3fa79602e341d97104076839785.zip
new ebuild: dos2unix (and back) text file converter
Diffstat (limited to 'app-text/hd2u')
-rw-r--r--app-text/hd2u/ChangeLog9
-rw-r--r--app-text/hd2u/files/digest-hd2u-0.8.01
-rw-r--r--app-text/hd2u/hd2u-0.8.0.ebuild36
3 files changed, 46 insertions, 0 deletions
diff --git a/app-text/hd2u/ChangeLog b/app-text/hd2u/ChangeLog
new file mode 100644
index 000000000000..44ce76572c3c
--- /dev/null
+++ b/app-text/hd2u/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-text/hd2u
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/app-text/hd2u/ChangeLog,v 1.1 2002/05/11 02:01:39 george Exp $
+
+*hd2u-0.8.0, (10 May 2002)
+
+ 10 May 2002; G Shapovalov <george@gentoo.org> ChangeLog :
+
+ initial release
diff --git a/app-text/hd2u/files/digest-hd2u-0.8.0 b/app-text/hd2u/files/digest-hd2u-0.8.0
new file mode 100644
index 000000000000..32034e0dfd55
--- /dev/null
+++ b/app-text/hd2u/files/digest-hd2u-0.8.0
@@ -0,0 +1 @@
+MD5 57480e7a43436fb2d5c495e095814516 hd2u-0.8.0.tgz 29179
diff --git a/app-text/hd2u/hd2u-0.8.0.ebuild b/app-text/hd2u/hd2u-0.8.0.ebuild
new file mode 100644
index 000000000000..848c9b1bf2bd
--- /dev/null
+++ b/app-text/hd2u/hd2u-0.8.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# Maintainer: George Shapovalov <georges@its.caltech.edu>
+# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.6 2002/05/07 03:58:19 drobbins Exp
+
+S=${WORKDIR}/${P}
+
+DESCRIPTION="Dos2Unix text file converter"
+
+SRC_URI="http://www.megaloman.com/~hany/_data/hd2u/${P}.tgz"
+HOMEPAGE="http://www.megaloman/~hany/"
+LICENSE="GPL-2"
+
+DEPEND="virtual/glibc"
+
+RDEPEND="${DEPEND}"
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man || die "./configure failed"
+ emake || die
+ #make || die
+}
+
+src_install () {
+ make \
+ prefix=${D}/usr \
+ mandir=${D}/usr/share/man \
+ infodir=${D}/usr/share/info \
+ install || die
+
+ dodoc AUTHORS CREDITS ChangeLog INSTALL NEWS README TODO COPYING
+}