summaryrefslogtreecommitdiff
blob: 8bdcdfc3d827034cd593f126cfd7f64e4efb652a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Martin Schlemmer <azarah@gentoo.org>

S=${WORKDIR}/${P}
DESCRIPTION="Extended version of the Gnome Terminal."
SRC_URI="http://multignometerm.sourceforge.net/${P}.tar.bz2"
HOMEPAGE="http://multignometerm.sourceforge.net/"

DEPEND=">=x11-libs/gtk+-1.2.10-r4
	>=gnome-base/gnome-libs-1.4.1.2-r1
	>=media-libs/gdk-pixbuf-0.11.0-r1
	>=gnome-base/libglade-0.17-r1
	>=app-text/scrollkeeper-0.2
	>=gnome-base/ORBit-0.5.10-r1
	nls? ( sys-devel/gettext )"


src_compile() {

	local myconf
	use nls     || myconf=--disable-nls
		
	./configure --host=${CHOST} 					\
		    --prefix=/usr					\
		    --mandir=/usr/share/man				\
		    --infodir=/usr/share/info				\
		    --sysconfdir=/etc					\
		    ${myconf} || die

	emake || die
}

src_install() {

	make prefix=${D}/usr						\
	     mandir=${D}/usr/share/man					\
	     infodir=${D}/usr/share/info				\
	     sysconfdir=${D}/etc					\
	     install || die

	insinto /usr/share/pixmaps
	doins pixmaps/multignometerm.png

	dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README
}

pkg_postinst() {

	echo
	echo "********************************************************************"
	echo "*  Please note that the shortcut keys to create a new shell is not *"
	echo '*  "ctrl-l n" like stated in the docs, but "ctrl-l p".             *'
	echo "********************************************************************"
	echo
}