diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-09-10 12:32:57 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-09-10 12:32:57 +0000 |
commit | f49beb288f906d8456f62977a593f5eadc14428a (patch) | |
tree | b654cd77507323b35111e8bd7bb3aedb62c17e29 /app-misc/twin | |
parent | masked new libnet (diff) | |
download | gentoo-2-f49beb288f906d8456f62977a593f5eadc14428a.tar.gz gentoo-2-f49beb288f906d8456f62977a593f5eadc14428a.tar.bz2 gentoo-2-f49beb288f906d8456f62977a593f5eadc14428a.zip |
version bump, long needed
Diffstat (limited to 'app-misc/twin')
-rw-r--r-- | app-misc/twin/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/twin/files/digest-twin-0.4.4 | 1 | ||||
-rw-r--r-- | app-misc/twin/twin-0.4.4.ebuild | 77 |
3 files changed, 86 insertions, 1 deletions
diff --git a/app-misc/twin/ChangeLog b/app-misc/twin/ChangeLog index c3fb454d7d00..38d72f4cea03 100644 --- a/app-misc/twin/ChangeLog +++ b/app-misc/twin/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-misc/twin # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-misc/twin/ChangeLog,v 1.2 2002/08/07 20:57:06 cselkirk Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/twin/ChangeLog,v 1.3 2002/09/10 12:32:57 seemant Exp $ + +*twin-0.4.4 (10 Sep 2002) + + 10 Sep 2002; Seemant Kulleen <seemant@gentoo.org> twin-0.4.4.ebuild + files/digest-twin-0.4.4 : + + Long needed version bump. What are we, debian? *twin-0.3.8-r1 (1 Feb 2002) diff --git a/app-misc/twin/files/digest-twin-0.4.4 b/app-misc/twin/files/digest-twin-0.4.4 new file mode 100644 index 000000000000..193414facc54 --- /dev/null +++ b/app-misc/twin/files/digest-twin-0.4.4 @@ -0,0 +1 @@ +MD5 894c3de70d27c002d2c376e8f321bbc8 twin-0.4.4.tar.gz 884477 diff --git a/app-misc/twin/twin-0.4.4.ebuild b/app-misc/twin/twin-0.4.4.ebuild new file mode 100644 index 000000000000..8eaaff4ee1db --- /dev/null +++ b/app-misc/twin/twin-0.4.4.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-misc/twin/twin-0.4.4.ebuild,v 1.1 2002/09/10 12:32:57 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="A text-mode window environment" +SRC_URI="mirror://sourceforge/twin/${P}.tar.gz" +HOMEPAGE="http://twin.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2 LGPL-2" +KEYWORDS="x86 ppc" + +DEPEND="X? ( virtual/x11 ) + ggi? ( >=media-libs/libggi-1.9 ) + gtk? ( =x11-libs/gtk+-1.2* ) + >=sys-libs/gpm-1.19.3 + >=sys-libs/ncurses-5.2" + +src_compile() { + local myconf + + use X \ + && myconf="--with-x --enable-hw-x11=yes" + + use ggi \ + && myconf="${myconf} --enable-hw-ggi=yes" \ + || myconf="${myconf} --enable-hw-ggi=no" + + use gtk \ + && myconf="${myconf} --enable-tt-hw-gtk=yes" \ + || myconf="${myconf} --enable-tt-hw-gtk=no" + + econf \ + --enable-shlibs=yes \ + --enable-modules=yes \ + --enable-unicode=yes \ + --enable-socket=yes \ + --enable-socket-gz=yes \ + --enable-socket-pthreads=yes \ + --enable-socket-alien=yes \ + --enable-h2-tty-termcap=yes \ + --enable-term=yes \ + ${myconf} || die + + make || die +} + +src_install() { + + einstall || die + + use X && ( \ + insinto /usr/X11R6/lib/X11/fonts/misc + doins fonts/vga.pcf.gz + ) + + rm -rf ${D}/usr/share/twin/{BUGS,docs,COP*,READ*,Change*,INSTALL*} + + dodoc BUGS COPYING* Change* README* TODO* + dodoc docs/* + +} + +pkg_postinst() { + use X && ( \ + /usr/X11R6/bin/mkfontdir /usr/X11R6/lib/X11/fonts/misc + /usr/X11R6/bin/xset fp rehash + ) +} + +pkg_postrm() { + use X && ( \ + /usr/X11R6/bin/mkfontdir /usr/X11R6/lib/X11/fonts/misc + /usr/X11R6/bin/xset fp rehash + ) +} |