diff options
author | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2010-05-18 08:57:54 +0000 |
---|---|---|
committer | Jose Alberto Suarez Lopez <bass@gentoo.org> | 2010-05-18 08:57:54 +0000 |
commit | fa0afbda096d46232ae1a9cf7eb94f9d684f5dda (patch) | |
tree | 1fe46431ecf9123f6b83ce7f9baa27fac15cd5f9 /net-im/coccinella | |
parent | Masking wpa_supplicant 0.7.2 for bug #320097, it is completely broken with Ne... (diff) | |
download | gentoo-2-fa0afbda096d46232ae1a9cf7eb94f9d684f5dda.tar.gz gentoo-2-fa0afbda096d46232ae1a9cf7eb94f9d684f5dda.tar.bz2 gentoo-2-fa0afbda096d46232ae1a9cf7eb94f9d684f5dda.zip |
version bump. close #306019. thanks Vladimir
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'net-im/coccinella')
-rw-r--r-- | net-im/coccinella/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/coccinella/coccinella-0.96.18.ebuild | 79 |
2 files changed, 86 insertions, 1 deletions
diff --git a/net-im/coccinella/ChangeLog b/net-im/coccinella/ChangeLog index 6cf671311632..7250e8e0b5c0 100644 --- a/net-im/coccinella/ChangeLog +++ b/net-im/coccinella/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-im/coccinella # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/coccinella/ChangeLog,v 1.12 2010/03/09 13:03:59 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/coccinella/ChangeLog,v 1.13 2010/05/18 08:57:54 bass Exp $ + +*coccinella-0.96.18 (18 May 2010) + + 18 May 2010; J. Alberto Suárez López <bass@gentoo.org> + +coccinella-0.96.18.ebuild: + version bump. close #306019. thanks Vladimir 09 Mar 2010; Jonathan Callen <abcd@gentoo.org> coccinella-0.96.14.ebuild: QA: Do not use absolute path to icon when in standard dirs (in diff --git a/net-im/coccinella/coccinella-0.96.18.ebuild b/net-im/coccinella/coccinella-0.96.18.ebuild new file mode 100644 index 000000000000..92c6e673af96 --- /dev/null +++ b/net-im/coccinella/coccinella-0.96.18.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/coccinella/coccinella-0.96.18.ebuild,v 1.1 2010/05/18 08:57:54 bass Exp $ + +inherit eutils fdo-mime + +NAME=Coccinella +DESCRIPTION="Jabber Client With a Built-in Whiteboard and VoIP (jingle)" +HOMEPAGE="http://www.thecoccinella.org/" +SRC_URI="mirror://sourceforge/coccinella/${NAME}-${PV}Src.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="ssl" + +DEPEND=">=dev-lang/tk-8.5 + >=dev-tcltk/tkpng-0.9 + >=dev-tcltk/tktreectrl-2.2.9 + >=dev-tcltk/tktray-1.1 + >=dev-tcltk/snack-2.2 + ssl? ( >=dev-tcltk/tls-1.4 ) + >=dev-tcltk/tkimg-1.3" + +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${NAME}-${PV}Src" + +src_unpack() { + unpack ${A} +} + +src_compile() { + einfo "Nothing to compile for ${P}." +} + +src_install () { + rm -R "${S}"/bin/unix/Linux/i686/treectrl + rm -R "${S}"/bin/unix/Linux/i686/tkpng + rm -R "${S}"/bin/unix/Linux/i686/tktray + rm -R "${S}"/bin/unix/Linux/i686/snack2.2 + rm -R "${S}"/bin/unix/Linux/i686/tls1.4 + rm -R "${S}"/bin/unix/Linux/i686/Img1.3 + rm -R "${S}"/bin/macosx + rm -R "${S}"/bin/windows + rm -R "${S}"/bin/unix/NetBSD + + + dodir /opt/coccinella + cp -R "${S}"/* ${D}/opt/coccinella/ + fperms 0755 /opt/coccinella/Coccinella.tcl + dosym /opt/coccinella/Coccinella.tcl /opt/bin/coccinella + dodoc README.txt READMEs/* + + for x in 128 64 32 16 ; do + src=/opt/coccinella/themes/Oxygen/icons/${x}x${x}/coccinella.png + src2=/opt/coccinella/themes/Oxygen/icons/${x}x${x}/coccinella.png + src2shadow=/opt/coccinella/themes/Oxygen/icons/${x}x${x}/coccinella2-shadow.png + dir=/usr/share/icons/hicolor/${x}x${x}/apps + dodir ${dir} + dosym ${src} ${dir}/coccinella.png + dosym ${src2} ${dir}/coccinella2.png + dosym ${src2shadow} ${dir}/coccinella2-shadow.png + unset src + unset src2 + unset src2shadow + unset dir + done + + make_desktop_entry "coccinella" "Coccinella IM Client" "coccinella2-shadow" +} + +pkg_postinst() { + fdo-mime_desktop_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update +}
\ No newline at end of file |