diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-04-24 14:41:58 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-04-24 14:41:58 +0000 |
commit | f3711bcaca0da9552b2528b3e742b3becd2496db (patch) | |
tree | 8996bd3061924eae875128c67cbb152a49e432d4 | |
parent | stable for x86 (diff) | |
download | gentoo-2-f3711bcaca0da9552b2528b3e742b3becd2496db.tar.gz gentoo-2-f3711bcaca0da9552b2528b3e742b3becd2496db.tar.bz2 gentoo-2-f3711bcaca0da9552b2528b3e742b3becd2496db.zip |
initial ebuild
-rw-r--r-- | dev-libs/tvision/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/tvision/files/digest-tvision-2.0.1 | 1 | ||||
-rw-r--r-- | dev-libs/tvision/tvision-2.0.1.ebuild | 28 | ||||
-rw-r--r-- | net-p2p/ldcc/ChangeLog | 9 | ||||
-rw-r--r-- | net-p2p/ldcc/files/digest-ldcc-2.0.7 | 1 | ||||
-rw-r--r-- | net-p2p/ldcc/ldcc-2.0.7.ebuild | 26 |
6 files changed, 74 insertions, 0 deletions
diff --git a/dev-libs/tvision/ChangeLog b/dev-libs/tvision/ChangeLog new file mode 100644 index 000000000000..f8c738293acd --- /dev/null +++ b/dev-libs/tvision/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-libs/tvision +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/tvision/ChangeLog,v 1.1 2003/04/24 14:39:58 vapier Exp $ + +*tvision-2.0.1 (24 Apr 2003) + + 24 Apr 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. Stefan Huszics <sauron@pp.sbbs.se> + also made one, Bug #19416. diff --git a/dev-libs/tvision/files/digest-tvision-2.0.1 b/dev-libs/tvision/files/digest-tvision-2.0.1 new file mode 100644 index 000000000000..9e2d339a8c19 --- /dev/null +++ b/dev-libs/tvision/files/digest-tvision-2.0.1 @@ -0,0 +1 @@ +MD5 409c52e8ec111a10f40b41a7fd198766 rhtvision-2.0.1.src.tar.gz 1168371 diff --git a/dev-libs/tvision/tvision-2.0.1.ebuild b/dev-libs/tvision/tvision-2.0.1.ebuild new file mode 100644 index 000000000000..23234dd1d330 --- /dev/null +++ b/dev-libs/tvision/tvision-2.0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/tvision/tvision-2.0.1.ebuild,v 1.1 2003/04/24 14:39:58 vapier Exp $ + +DESCRIPTION="Text User Interface that implements the well known CUA widgets" +HOMEPAGE="http://tvision.sourceforge.net/" +SRC_URI="mirror://sourceforge/tvision/rhtvision-${PV}.src.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +S=${WORKDIR}/${PN} + +src_compile() { + ./configure \ + --prefix=/usr \ + --fhs \ + --no-intl \ + || die + make || die # emake fails +} + +src_install() { + einstall || die + dodoc readme.txt + dohtml -r www-site +} diff --git a/net-p2p/ldcc/ChangeLog b/net-p2p/ldcc/ChangeLog new file mode 100644 index 000000000000..6c95c2b77522 --- /dev/null +++ b/net-p2p/ldcc/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-p2p/ldcc +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ldcc/ChangeLog,v 1.1 2003/04/24 14:41:58 vapier Exp $ + +*ldcc-2.0.7 (24 Apr 2003) + + 24 Apr 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. Stefan Huszics <sauron@pp.sbbs.se> + also made one, Bug #19426. diff --git a/net-p2p/ldcc/files/digest-ldcc-2.0.7 b/net-p2p/ldcc/files/digest-ldcc-2.0.7 new file mode 100644 index 000000000000..d23edbaea22f --- /dev/null +++ b/net-p2p/ldcc/files/digest-ldcc-2.0.7 @@ -0,0 +1 @@ +MD5 1fbaa46a139880c6a91faf3dc5e678ff ldcc-2.0.7.tgz 74060 diff --git a/net-p2p/ldcc/ldcc-2.0.7.ebuild b/net-p2p/ldcc/ldcc-2.0.7.ebuild new file mode 100644 index 000000000000..2793312d06f6 --- /dev/null +++ b/net-p2p/ldcc/ldcc-2.0.7.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ldcc/ldcc-2.0.7.ebuild,v 1.1 2003/04/24 14:41:58 vapier Exp $ + +DESCRIPTION="linux console, text-based client for DIRECT CONNECT" +HOMEPAGE="http://www.softservice.com.pl/ldcc/" +SRC_URI="http://main.loop.com.pl/~softservice/ldcc/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc" + +DEPEND="net-p2p/dctc + dev-libs/tvision" + +src_compile() { + econf \ + --with-tv-include=/usr/include/rhtvision \ + || die + emake || die +} + +src_install() { + make install DESTDIR=${D} || die + dodoc AUTHORS ChangeLog NEWS README +} |