Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 91 - multi-gnome-terminal-1.3.8.ebuild (New Package)
Summary: multi-gnome-terminal-1.3.8.ebuild (New Package)
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: x86 Linux
: High enhancement (vote)
Assignee: Mikael Hallendal (hallski) (RETIRED)
URL:
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2002-01-08 19:01 UTC by Ilian Zarov
Modified: 2003-02-04 19:42 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
multi-gnome-terminal-1.3.8.ebuild (multi-gnome-terminal-1.3.8.ebuild,610 bytes, text/plain)
2002-01-08 19:03 UTC, Ilian Zarov
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Ilian Zarov 2002-01-08 19:01:06 UTC
Hello,
attached is multi-gnome-terminal-1.3.8.ebuild.
(http://multignometerm.sourceforge.net):
Multi GNOME Terminal is an enhanced  version of gnome-terminal which has
the following features added:
    Many terminals in each window
    Switch between terminals using shortcuts
    Execution of user defined commands in new terminals
    Notification of terminal states (changed, changing, unchanged) using
different tabs colors
    Reorderable tabs

I suggest app-misc/multi-gnome-terminal for this package.


   Best Regards,
    Ilian Zarov
Comment 1 Ilian Zarov 2002-01-08 19:03:00 UTC
Created attachment 30 [details]
multi-gnome-terminal-1.3.8.ebuild
Comment 2 Mikael Hallendal (hallski) (RETIRED) gentoo-dev 2002-01-08 19:08:57 UTC
multi-gnome-terminal is already in portage (x11-term/multi-gnome-terminal),
updated from 1.3.7 to 1.3.8 though.
Comment 3 Ilian Zarov 2002-01-08 19:36:10 UTC
 I just noticed that the settings menu is not working. Sorry. Here's the
corrected version (note: I used cp to copy a default configuration file -
multi-gnome-terminal.glade, because the file should be in
/usr/share/gnome-terminal/glade - configuration directory of gnome-terminal).
Comment 4 Ilian Zarov 2002-01-08 19:44:35 UTC
There was a problem with creating a new attachment (No file was provided, or it
was empty) though it was there. Put a tab in front of cp :)
--- multi-gnome-terminal-1.3.8-r1.ebuild
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Ilian Zarov <coder@descom.com>

S=${WORKDIR}/${P}
SRC_URI="http://prdownloads.sourceforge.net/multignometerm/${P}.tar.bz2"
HOMEPAGE="http://multignometerm.sf.net"
DESCRIPTION="MGT is an enchanced version of gnome-terminal with many terminals
in each window support ala konsole"

DEPEND=">=x11-libs/gtk+-1.2.10
	>=gnome-base/gnome-libs-1.0.59
	>=media-libs/gdk-pixbuf-0.7.0
	>=gnome-base/libglade-0.17-r1
        >=app-text/scrollkeeper-0.2
        >=gnome-base/ORBit-0.5.10-r1"

src_unpack() {
        unpack ${A}
        cd ${S}
cp gnome-terminal/multi-gnome-terminal.glade /usr/share/gnome-terminal/glade
}

src_compile() {
	./configure --prefix=/usr --host=${CHOST} 	\
	--build=${CHOST}
	emake || die
}

src_install() {
	make prefix=${D} install || die
}
Comment 5 Mikael Hallendal (hallski) (RETIRED) gentoo-dev 2002-01-08 19:49:01 UTC
multi-gnome-term 1.3.8 is already in portage. (I upgraded it before).

Also, you should never do 

cp gnome-terminal/multi-gnome-terminal.glade /usr/share/gnome-terminal/glade

in src_unpack (this makes it copy a file directly to the filesystem without
being installed the correct way).

Anyway, just use the .ebuild that already in x11-misc/multi-gnome-term, it works.