diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-19 07:53:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-19 07:53:25 +0000 |
commit | 972bb245aa93376493e31140ad3ceecb0d6ae811 (patch) | |
tree | a6c75ede2a5672ca0f62af8e19aeae73c495c121 /app-misc | |
parent | version bump as per bug #93192 (diff) | |
download | historical-972bb245aa93376493e31140ad3ceecb0d6ae811.tar.gz historical-972bb245aa93376493e31140ad3ceecb0d6ae811.tar.bz2 historical-972bb245aa93376493e31140ad3ceecb0d6ae811.zip |
old
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/twin/files/digest-twin-0.4.5 | 1 | ||||
-rw-r--r-- | app-misc/twin/twin-0.4.5.ebuild | 74 |
2 files changed, 0 insertions, 75 deletions
diff --git a/app-misc/twin/files/digest-twin-0.4.5 b/app-misc/twin/files/digest-twin-0.4.5 deleted file mode 100644 index a987ea238e1d..000000000000 --- a/app-misc/twin/files/digest-twin-0.4.5 +++ /dev/null @@ -1 +0,0 @@ -MD5 95f942a6f1be1144b11603579d6c366a twin-0.4.5.tar.gz 1075254 diff --git a/app-misc/twin/twin-0.4.5.ebuild b/app-misc/twin/twin-0.4.5.ebuild deleted file mode 100644 index a4fc79901584..000000000000 --- a/app-misc/twin/twin-0.4.5.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/twin/twin-0.4.5.ebuild,v 1.16 2005/01/01 15:27:52 eradicator Exp $ - -DESCRIPTION="A text-mode window environment" -HOMEPAGE="http://twin.sourceforge.net/" -SRC_URI="mirror://sourceforge/twin/${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2" -SLOT="0" -KEYWORDS="x86 ppc sparc alpha hppa ia64 amd64" -IUSE="X gtk ggi" - -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 - - if use X ; then - insinto /usr/X11R6/lib/X11/fonts/misc - doins fonts/vga.pcf.gz - fi - - rm -rf ${D}/usr/share/twin/{BUGS,docs,COP*,READ*,Change*,INSTALL*} - - dodoc BUGS Change* README* TODO/TODO TODO/twin-thoughts - doman docs/twin.1; rm -rf docs/twin.1 - dodoc docs/* - -} - -pkg_postinst() { - if use X ; then - /usr/X11R6/bin/mkfontdir /usr/X11R6/lib/X11/fonts/misc - /usr/X11R6/bin/xset fp rehash - fi -} - -pkg_postrm() { - if use X ; then - /usr/X11R6/bin/mkfontdir /usr/X11R6/lib/X11/fonts/misc - /usr/X11R6/bin/xset fp rehash - fi -} |