diff options
author | Bart Lauwers <blauwers@gentoo.org> | 2002-06-04 00:26:29 +0000 |
---|---|---|
committer | Bart Lauwers <blauwers@gentoo.org> | 2002-06-04 00:26:29 +0000 |
commit | 2fae8c4078ee439f87ebddefdafe39b198c29594 (patch) | |
tree | 248d17a2b58e6f67b53054a8f672bed32f25c9d3 /net-misc/tintin | |
parent | check dga in USE variable (diff) | |
download | historical-2fae8c4078ee439f87ebddefdafe39b198c29594.tar.gz historical-2fae8c4078ee439f87ebddefdafe39b198c29594.tar.bz2 historical-2fae8c4078ee439f87ebddefdafe39b198c29594.zip |
Added per enhancement bug 3079
Diffstat (limited to 'net-misc/tintin')
-rw-r--r-- | net-misc/tintin/Changelog | 8 | ||||
-rw-r--r-- | net-misc/tintin/files/digest-tintin-1.86 | 1 | ||||
-rw-r--r-- | net-misc/tintin/tintin-1.86.ebuild | 29 |
3 files changed, 38 insertions, 0 deletions
diff --git a/net-misc/tintin/Changelog b/net-misc/tintin/Changelog new file mode 100644 index 000000000000..94cad2bc8099 --- /dev/null +++ b/net-misc/tintin/Changelog @@ -0,0 +1,8 @@ +# ChangeLog for net-misc/tintin +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/tintin/Changelog,v 1.1 2002/06/04 00:26:29 blauwers Exp $ + +*tintin-1.86 (04 JUN 2002) + + 04 Jun 2002; B.Lauwers <blauwers@gentoo.org> Changelog, tintin-1.86.ebuild: + Added initial ebuild for tintin as requested in enhancement bug 3079. diff --git a/net-misc/tintin/files/digest-tintin-1.86 b/net-misc/tintin/files/digest-tintin-1.86 new file mode 100644 index 000000000000..8801d050d25d --- /dev/null +++ b/net-misc/tintin/files/digest-tintin-1.86 @@ -0,0 +1 @@ +MD5 9cc2e269159ae2a27ded144066310556 tintin++v1.86.tar.gz 227524 diff --git a/net-misc/tintin/tintin-1.86.ebuild b/net-misc/tintin/tintin-1.86.ebuild new file mode 100644 index 000000000000..d0f85c9908aa --- /dev/null +++ b/net-misc/tintin/tintin-1.86.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/tintin/tintin-1.86.ebuild,v 1.1 2002/06/04 00:26:29 blauwers Exp $ + +# Author gaarde <gaarde at users dot sourceforge dot net> + +S=${WORKDIR}/tintin++/src +DESCRIPTION="(T)he k(I)cki(N) (T)ickin d(I)kumud clie(N)t" +SRC_URI="http://mail.newclear.net/tintin/download/tintin++v${PV}.tar.gz" +HOMEPAGE="http://mail.newclear.net/tintin/" +LICENSE="GPL-2" + +DEPEND="sys-libs/ncurses" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake CFLAGS="$CFLAGS" || die +} + +src_install () { + dobin tt++ + + dodoc ../BUGS ../CHANGES ../CREDITS ../FAQ ../INSTALL ../README \ + ../TODO ../docs/* +} |