diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2006-08-06 04:58:43 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2006-08-06 04:58:43 +0000 |
commit | 0db6527ac5744f9f5b7a3be6cae6c2af19132b04 (patch) | |
tree | 5988c23ea8464b9d5c45e35b9411aa53223a67d2 /media-libs/phat | |
parent | New upstream version. (diff) | |
download | gentoo-2-0db6527ac5744f9f5b7a3be6cae6c2af19132b04.tar.gz gentoo-2-0db6527ac5744f9f5b7a3be6cae6c2af19132b04.tar.bz2 gentoo-2-0db6527ac5744f9f5b7a3be6cae6c2af19132b04.zip |
Version bumped, bug 137011.
(Portage version: 2.1-r1)
Diffstat (limited to 'media-libs/phat')
-rw-r--r-- | media-libs/phat/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/phat/files/digest-phat-0.2.3 | 2 | ||||
-rw-r--r-- | media-libs/phat/files/digest-phat-0.4.0 | 3 | ||||
-rw-r--r-- | media-libs/phat/phat-0.4.0.ebuild | 27 |
4 files changed, 39 insertions, 2 deletions
diff --git a/media-libs/phat/ChangeLog b/media-libs/phat/ChangeLog index e2c56f117b71..c4556ed94a63 100644 --- a/media-libs/phat/ChangeLog +++ b/media-libs/phat/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/phat -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/phat/ChangeLog,v 1.7 2005/08/07 13:18:08 hansmi Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/phat/ChangeLog,v 1.8 2006/08/06 04:58:43 matsuu Exp $ + +*phat-0.4.0 (06 Aug 2006) + + 06 Aug 2006; MATSUU Takuto <matsuu@gentoo.org> +phat-0.4.0.ebuild: + Version bumped, bug 137011. 07 Aug 2005; Michael Hanselmann <hansmi@gentoo.org> phat-0.2.3.ebuild: Stable on ppc. diff --git a/media-libs/phat/files/digest-phat-0.2.3 b/media-libs/phat/files/digest-phat-0.2.3 index fff41bad5c04..38cc69a61f96 100644 --- a/media-libs/phat/files/digest-phat-0.2.3 +++ b/media-libs/phat/files/digest-phat-0.2.3 @@ -1 +1,3 @@ MD5 e06f136041c257c86a144345c10dd8fd phat-0.2.3.tar.gz 353417 +RMD160 fa750eca1eb9b208524c24802f3e06b8bf2134f6 phat-0.2.3.tar.gz 353417 +SHA256 bb18dc8e46ab32051b3c607cb62bda0a85092e9d91f02438766a3cbd2e0334db phat-0.2.3.tar.gz 353417 diff --git a/media-libs/phat/files/digest-phat-0.4.0 b/media-libs/phat/files/digest-phat-0.4.0 new file mode 100644 index 000000000000..4e7c3b77fefa --- /dev/null +++ b/media-libs/phat/files/digest-phat-0.4.0 @@ -0,0 +1,3 @@ +MD5 f70c939f2329133966831878689ba104 phat-0.4.0.tar.gz 540781 +RMD160 0a61fdd53442000367b36e5e8d215545aa605d67 phat-0.4.0.tar.gz 540781 +SHA256 536ffec1d63e660a6a2318a7951d0acd19933162f9de3bb47f5c2e729c5f5908 phat-0.4.0.tar.gz 540781 diff --git a/media-libs/phat/phat-0.4.0.ebuild b/media-libs/phat/phat-0.4.0.ebuild new file mode 100644 index 000000000000..065e1ec16219 --- /dev/null +++ b/media-libs/phat/phat-0.4.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/phat/phat-0.4.0.ebuild,v 1.1 2006/08/06 04:58:43 matsuu Exp $ + +IUSE="debug doc" + +DESCRIPTION="PHAT is a collection of GTK+ widgets geared toward pro-audio apps." +HOMEPAGE="http://phat.berlios.de/" +SRC_URI="http://download.berlios.de/phat/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +DEPEND=">=x11-libs/gtk+-2.4" + +src_compile() { + econf $(use_enable debug) \ + $(use_enable doc gtk-doc) || die + + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README TODO +} |