Portage is a package management system used by Gentoo Linux
# ChangeLog for net-dialup/gtkterm
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/gtkterm/ChangeLog,v 1.19 2007/05/02 07:56:36 genone Exp $
02 May 2007; Marius Mauch
Replacing einfo with elog
*gtkterm-0.99.5-r1 (14 Mar 2007)
14 Mar 2007; Alin Năstac
-gtkterm-0.99.5.ebuild, +gtkterm-0.99.5-r1.ebuild:
Add nls support and Russian translation, thanks to Alexander Shiyan
24 Oct 2006; Alin Nastac
Add dev-util/pkgconfig to DEPEND (#152534).
26 Jun 2006; Simon Stelling
stable on amd64
12 Mar 2006; Alin Nastac
gtkterm-0.99.5.ebuild:
Remove obsolete version.
02 Jan 2006; Michael Hanselmann
Stable on ppc.
26 Dec 2005; Jason Wever
Stablize the right one on SPARC wrt bug #115640 :)
26 Dec 2005; Jason Wever
Stable on SPARC wrt bug #115640.
26 Dec 2005; Alin Nastac
Stable on x86.
*gtkterm-0.99.5 (26 Nov 2005)
26 Nov 2005; Alin Nastac
+gtkterm-0.99.5.ebuild:
Remove old version. Version bump (#113446).
07 Aug 2005; Michael Hanselmann
Stable on ppc.
16 Jun 2005; Alin Nastac
gtkterm-0.99.4.ebuild:
Stable on x86.
28 Feb 2005; Alex Howells
gtkterm-0.99.4.ebuild:
Adding keywords ~amd64 to both versions currently in the tree, as per the
request in bug 83388.
*gtkterm-0.99.4 (20 Nov 2004)
20 Nov 2004; Alin Nastac
+gtkterm-0.99.4.ebuild:
Added 0.99.4. Marked 0.99.3 stable on x86.
04 Oct 2004; David Holm
Added to ~ppc.
16 Apr 2004; Jason Wever
Added ~sparc keyword.
19 Nov 2003; Heinrich Wendel
metadata
*gtkterm-0.99.3 (09 Jul 2003)
09 Jul 2003; Martin Holzer
Initial ebuild submitted by Zach Bagnall
AUX ru.po 18262 RMD160 f147971399b7611e7b305085fc85e3dc626cd504 SHA1 f2a8a2c46b2cc099e7678f5d06bd6a1bd0055640 SHA256 0a38fda127a2e0fc8686a15ce23b3bbea67bd0324b34b3bec0003aa94052bd99
DIST gtkterm-0.99.5.tar.gz 342355 RMD160 0919489c1ae2dde2cd477e196c19c5a44eb12d87 SHA1 ec91d7e1045b707029ad11259468337e48867f95 SHA256 f9acaf021b8cf08c95d9f9e0fc8f1264a7f883029561b844fd5a13ed928521f5
EBUILD gtkterm-0.99.5-r1.ebuild 1727 RMD160 5207220791314a71a67658d02c2a29f212607a5b SHA1 9806bacdbf8590f6cb15d5ea163ef0b4dcb954d5 SHA256 0b3b6235ed0fb527ca09e86d242efbe6daa3682edb842cb1a076acd44ce92417
MISC ChangeLog 2494 RMD160 56923f7fd2bf70fcc4f81e1b8f72a1f2975684dd SHA1 0690d401f17f7b9a904f1b81e14ddd6e87ecf688 SHA256 b00fab85e960f34c4c14b3e3b162d338bf7a02b308653db9a571b2877766afcc
MISC metadata.xml 290 RMD160 a6dbcd9fbc63ff1772cfbe43cd60f5942a12c577 SHA1 3daed4470a99ff0e37b15cedd539886d7b5dc017 SHA256 7c82dcb17e470831c49b8bac10d506c77c0e4b56d37cafec2300d4f36dc3a91d
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/gtkterm/gtkterm-0.99.5-r1.ebuild,v 1.2 2007/05/02 07:56:36 genone Exp $
DESCRIPTION="A serial port terminal written in GTK+, similar to Windows' HyperTerminal."
HOMEPAGE="http://www.jls-info.com/julien/linux/"
SRC_URI="http://www.jls-info.com/julien/linux/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE="nls"
RDEPEND=">=x11-libs/gtk+-2.0
x11-libs/vte"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
# Supported languages and translated documentation
# Be sure all languages are prefixed with a single space!
MY_AVAILABLE_LINGUAS=" fr hu ru"
IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
src_unpack() {
unpack ${A}
if use nls ; then
cp "${FILESDIR}"/ru.po "${S}"/po/ || die "adding Russian language support failed"
fi
}
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
einstall || die "einstall failed"
if use nls; then
cd "${S}/po"
local MY_LINGUAS="" lang
for lang in ${MY_AVAILABLE_LINGUAS} ; do
if use linguas_${lang} ; then
MY_LINGUAS="${MY_LINGUAS} ${lang}"
fi
done
if [[ -z "${MY_LINGUAS}" ]] ; then
#If no language is selected, install 'em all
MY_LINGUAS="${MY_AVAILABLE_LINGUAS}"
fi
elog "Locale messages will be installed for following languages:"
elog " ${MY_LINGUAS}"
for lang in ${MY_LINGUAS}; do
msgfmt -o ${lang}.mo ${lang}.po && \
insinto /usr/share/locale/${lang}/LC_MESSAGES && \
newins ${lang}.mo gtkterm.mo || \
die "failed to install locale messages for ${lang} language"
done
fi
}