diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-04-10 17:26:45 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2002-04-10 17:26:45 +0000 |
commit | 83bd979a7428c553f153ea7defd8249d4097c74e (patch) | |
tree | 438e935c01d6c597d21a9e4ef567bcfec8cd3d3d /net-mail/sylpheed-claws | |
parent | two small fixes; changelog knows all (diff) | |
download | gentoo-2-83bd979a7428c553f153ea7defd8249d4097c74e.tar.gz gentoo-2-83bd979a7428c553f153ea7defd8249d4097c74e.tar.bz2 gentoo-2-83bd979a7428c553f153ea7defd8249d4097c74e.zip |
Fixes #1329
Diffstat (limited to 'net-mail/sylpheed-claws')
-rw-r--r-- | net-mail/sylpheed-claws/ChangeLog | 10 | ||||
-rw-r--r-- | net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.4-r2 (renamed from net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.4-r1) | 0 | ||||
-rw-r--r-- | net-mail/sylpheed-claws/sylpheed-claws-0.7.4-r2.ebuild (renamed from net-mail/sylpheed-claws/sylpheed-claws-0.7.4-r1.ebuild) | 17 |
3 files changed, 25 insertions, 2 deletions
diff --git a/net-mail/sylpheed-claws/ChangeLog b/net-mail/sylpheed-claws/ChangeLog index c5f5f9210e67..109359d84a7e 100644 --- a/net-mail/sylpheed-claws/ChangeLog +++ b/net-mail/sylpheed-claws/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-mail/sylpheed-claws # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed-claws/ChangeLog,v 1.4 2002/03/24 13:52:32 karltk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed-claws/ChangeLog,v 1.5 2002/04/10 17:26:44 karltk Exp $ + +*sylpheed-claws-0.7.4-r2 (10 Apr 2002) + + 10 Apr 2002; Karl Trygve Kalleberg <karltk@gentoo.org> sylpheed-claws-0.7.4-r2.ebuild files/digest-sylpheed-claws-0.7.4-r2: + + Can now coexist with normal sylpheed. Binary renamed to sylpheed-claws. + + Removed sylpheed-claws-0.7.4-r1.ebuild files/digest-sylpheed-claws-0.7.4-r1 *sylpheed-claws-0.7.4 ( 12 Mar 2002 ) diff --git a/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.4-r1 b/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.4-r2 index dc161d80397b..dc161d80397b 100644 --- a/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.4-r1 +++ b/net-mail/sylpheed-claws/files/digest-sylpheed-claws-0.7.4-r2 diff --git a/net-mail/sylpheed-claws/sylpheed-claws-0.7.4-r1.ebuild b/net-mail/sylpheed-claws/sylpheed-claws-0.7.4-r2.ebuild index e2f2290c7db0..891d55759830 100644 --- a/net-mail/sylpheed-claws/sylpheed-claws-0.7.4-r1.ebuild +++ b/net-mail/sylpheed-claws/sylpheed-claws-0.7.4-r2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Desktop Team <desktop@gentoo.org> # Author: Karl Trygve Kalleberg <karltk@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed-claws/sylpheed-claws-0.7.4-r1.ebuild,v 1.1 2002/03/20 20:38:18 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/sylpheed-claws/sylpheed-claws-0.7.4-r2.ebuild,v 1.1 2002/04/10 17:26:45 karltk Exp $ S=${WORKDIR}/sylpheed-${PV}claws DESCRIPTION="Bleeding edge version of Sylpheed" @@ -53,8 +53,20 @@ src_compile() { --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ + --program-suffix=-claws \ ${myconf} || die "./configure failed" + for i in `find . -name Makefile` ; do + cp $i ${i}.orig + sed "s/PACKAGE = sylpheed/PACKAGE = sylpheed-claws/" \ + < ${i}.orig \ + > ${i} + done + cp sylpheed.desktop sylpheed.desktop.orig + sed "s/sylpheed.png/sylpheed-claws.png/" \ + < sylpheed.desktop.orig + > sylpheed.desktop + emake || die } @@ -62,4 +74,7 @@ src_install () { make DESTDIR=${D} install || die use gnome || rm -rf ${D}/usr/share/gnome + + mv ${D}/usr/share/pixmaps/sylpheed.png \ + ${D}/usr/share/pixmaps/sylpheed-claws.png } |