diff options
author | Marius Mauch <genone@gentoo.org> | 2004-10-17 23:10:46 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2004-10-17 23:10:46 +0000 |
commit | 6f09d6e3fca97eed4528987bf1e0a3c8bc73a631 (patch) | |
tree | 82d70701e62a27979b2dc1f5412bb43174acb43e /mail-client/sylpheed-claws-ghostscript-viewer | |
parent | Fixed broken Manifest. (diff) | |
download | historical-6f09d6e3fca97eed4528987bf1e0a3c8bc73a631.tar.gz historical-6f09d6e3fca97eed4528987bf1e0a3c8bc73a631.tar.bz2 historical-6f09d6e3fca97eed4528987bf1e0a3c8bc73a631.zip |
sylpheed-claws plugin splitup
Diffstat (limited to 'mail-client/sylpheed-claws-ghostscript-viewer')
5 files changed, 56 insertions, 0 deletions
diff --git a/mail-client/sylpheed-claws-ghostscript-viewer/ChangeLog b/mail-client/sylpheed-claws-ghostscript-viewer/ChangeLog new file mode 100644 index 000000000000..781c7dbf9c17 --- /dev/null +++ b/mail-client/sylpheed-claws-ghostscript-viewer/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for mail-client/sylpheed-claws-ghostscript-viewer +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-ghostscript-viewer/ChangeLog,v 1.1 2004/10/17 23:07:40 genone Exp $ + +*sylpheed-claws-ghostscript-viewer-0.8 (18 Oct 2004) + + 18 Oct 2004; <genone@gentoo.org> +metadata.xml, + +sylpheed-claws-ghostscript-viewer-0.8.ebuild: + initial commit, this package was split from the main sylpheed-claws package + for easier maintenance. + diff --git a/mail-client/sylpheed-claws-ghostscript-viewer/Manifest b/mail-client/sylpheed-claws-ghostscript-viewer/Manifest new file mode 100644 index 000000000000..3140119262b3 --- /dev/null +++ b/mail-client/sylpheed-claws-ghostscript-viewer/Manifest @@ -0,0 +1,2 @@ +MD5 83e18fc9f634ff11326451c71d3204c3 sylpheed-claws-ghostscript-viewer-0.8.ebuild 578 +MD5 566010d620f19ccb2e1f5bc9c9cb3cb0 files/digest-sylpheed-claws-ghostscript-viewer-0.8 75 diff --git a/mail-client/sylpheed-claws-ghostscript-viewer/files/digest-sylpheed-claws-ghostscript-viewer-0.8 b/mail-client/sylpheed-claws-ghostscript-viewer/files/digest-sylpheed-claws-ghostscript-viewer-0.8 new file mode 100644 index 000000000000..047c49b889dd --- /dev/null +++ b/mail-client/sylpheed-claws-ghostscript-viewer/files/digest-sylpheed-claws-ghostscript-viewer-0.8 @@ -0,0 +1 @@ +MD5 5309534a97914710d180550bc6bdcab9 ghostscript-viewer-0.8.tar.bz2 293933 diff --git a/mail-client/sylpheed-claws-ghostscript-viewer/metadata.xml b/mail-client/sylpheed-claws-ghostscript-viewer/metadata.xml new file mode 100644 index 000000000000..770af1a84c86 --- /dev/null +++ b/mail-client/sylpheed-claws-ghostscript-viewer/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-mail</herd> +<maintainer> + <email>genone@gentoo.org</email> + <description>Primary maintainer</description> +</maintainer> +<maintainer> + <email>seemant@gentoo.org</email> +</maintainer> +<maintainer> + <email>bcowan@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/mail-client/sylpheed-claws-ghostscript-viewer/sylpheed-claws-ghostscript-viewer-0.8.ebuild b/mail-client/sylpheed-claws-ghostscript-viewer/sylpheed-claws-ghostscript-viewer-0.8.ebuild new file mode 100644 index 000000000000..4e917d474dde --- /dev/null +++ b/mail-client/sylpheed-claws-ghostscript-viewer/sylpheed-claws-ghostscript-viewer-0.8.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws-ghostscript-viewer/sylpheed-claws-ghostscript-viewer-0.8.ebuild,v 1.1 2004/10/17 23:07:40 genone Exp $ + +MY_P="${P##sylpheed-claws-}" + +DESCRIPTION="Plugin for sylpheed-claws to view pdf and postscript attachments inline" +HOMEPAGE="http://sylpheed-claws.sourceforge.net" +SRC_URI="mirror://sourceforge/sylpheed-claws/${MY_P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" +DEPEND=">=mail-client/sylpheed-claws-0.9.12b-r1 + app-text/ghostscript" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README +} |