diff options
author | John J. Ellis <jje@gentoo.org> | 2003-09-26 06:22:27 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-09-26 06:22:27 +0000 |
commit | ca299923984abe14f3e63206f32eb4558d85f2ea (patch) | |
tree | 3a2561d59018cf21148d9506d4c7baa824aa117b /media-sound/prokyon3 | |
parent | Version bump, ~x86 masked. Closes #29454. (diff) | |
download | historical-ca299923984abe14f3e63206f32eb4558d85f2ea.tar.gz historical-ca299923984abe14f3e63206f32eb4558d85f2ea.tar.bz2 historical-ca299923984abe14f3e63206f32eb4558d85f2ea.zip |
Version bump, ~x86 masked. Closes #29454.
Diffstat (limited to 'media-sound/prokyon3')
-rw-r--r-- | media-sound/prokyon3/Manifest | 4 | ||||
-rw-r--r-- | media-sound/prokyon3/files/digest-prokyon3-0.9.2_rc2 | 1 | ||||
-rw-r--r-- | media-sound/prokyon3/prokyon3-0.9.2_rc2.ebuild | 45 |
3 files changed, 48 insertions, 2 deletions
diff --git a/media-sound/prokyon3/Manifest b/media-sound/prokyon3/Manifest index 6b3b90ce9400..4e827f80d830 100644 --- a/media-sound/prokyon3/Manifest +++ b/media-sound/prokyon3/Manifest @@ -1,5 +1,5 @@ -MD5 40503a64534e264c2608ceef10014614 ChangeLog 400 +MD5 db507e96cb0624fdc764968499aed08a ChangeLog 551 MD5 5ec0e1dd7a96a264730fa63618ef8b6f prokyon3-0.9.1_p1.ebuild 1124 -MD5 8210782b85d215a09acadae84505383f prokyon3-0.9.2_rc2.ebuild 1125 +MD5 8fa18521f0593f69e8bd02e29bacd9d6 prokyon3-0.9.2_rc2.ebuild 1127 MD5 88a53dd6a990b742c66c0ea184227b76 files/digest-prokyon3-0.9.1_p1 69 MD5 0492b6a5dc07e50fba54ef8902d9fbaa files/digest-prokyon3-0.9.2_rc2 69 diff --git a/media-sound/prokyon3/files/digest-prokyon3-0.9.2_rc2 b/media-sound/prokyon3/files/digest-prokyon3-0.9.2_rc2 new file mode 100644 index 000000000000..a48fc2760272 --- /dev/null +++ b/media-sound/prokyon3/files/digest-prokyon3-0.9.2_rc2 @@ -0,0 +1 @@ +MD5 d232055185ae779967926f2113018728 prokyon3-0.9.2RC2.tar.gz 585402 diff --git a/media-sound/prokyon3/prokyon3-0.9.2_rc2.ebuild b/media-sound/prokyon3/prokyon3-0.9.2_rc2.ebuild new file mode 100644 index 000000000000..eba57853c143 --- /dev/null +++ b/media-sound/prokyon3/prokyon3-0.9.2_rc2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/prokyon3/prokyon3-0.9.2_rc2.ebuild,v 1.1 2003/09/26 06:22:23 jje Exp $ + +IUSE="oggvorbis" + +S=${WORKDIR}/${P/_rc2/} +DESCRIPTION="Multithreaded MP3 manager and tag editor based on Qt and MySQL" +HOMEPAGE="http://prokyon3.sourceforge.net" +SRC_URI="mirror://sourceforge/prokyon3/${PN}-${PV/_rc/RC}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND=">=x11-libs/qt-3.0 + dev-db/mysql + >=media-libs/id3lib-3.8.2 + oggvorbis? ( >=media-libs/libogg-1.0 + >=media-libs/libvorbis-1.0 )" + +RDEPEND="${DEPEND}" + +pkg_setup() { + if [ ! -e ${QTDIR}/plugins/sqldrivers/libqsqlmysql.so ] ; then + eerror "You have installed Qt without MySQL support." + eerror "Please make sure "mysql" is in your USE variable" + eerror "and reemerge Qt" + die "MySQL support for Qt not found" + fi +} + +src_compile() { + local myconf + + use oggvorbis || myconf="--without-ogg" + + econf ${myconf} || die + emake || die +} + +src_install () { + einstall || die + dodoc ChangeLog COPYING INSTALL NEWS README +} |