diff options
author | Robert Coie <rac@gentoo.org> | 2003-03-14 17:14:03 +0000 |
---|---|---|
committer | Robert Coie <rac@gentoo.org> | 2003-03-14 17:14:03 +0000 |
commit | 2c6759093d39af3048e1e1988b09f0588bd4c530 (patch) | |
tree | 7fbace0f232b7f7b597ea77649f86003d25fa51b /media-sound/prokyon3 | |
parent | Version bump (diff) | |
download | historical-2c6759093d39af3048e1e1988b09f0588bd4c530.tar.gz historical-2c6759093d39af3048e1e1988b09f0588bd4c530.tar.bz2 historical-2c6759093d39af3048e1e1988b09f0588bd4c530.zip |
initial commit. submitted in bug #17327
Diffstat (limited to 'media-sound/prokyon3')
-rw-r--r-- | media-sound/prokyon3/ChangeLog | 10 | ||||
-rw-r--r-- | media-sound/prokyon3/files/digest-prokyon3-0.9.1_p1 | 1 | ||||
-rw-r--r-- | media-sound/prokyon3/prokyon3-0.9.1_p1.ebuild | 45 |
3 files changed, 56 insertions, 0 deletions
diff --git a/media-sound/prokyon3/ChangeLog b/media-sound/prokyon3/ChangeLog new file mode 100644 index 000000000000..d6be23235431 --- /dev/null +++ b/media-sound/prokyon3/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for media-sound/prokyon3 +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/prokyon3/ChangeLog,v 1.1 2003/03/14 17:14:03 rac Exp $ + +*prokyon3-0.9.1_p1 (14 Mar 2003) + + 14 Mar 2003; <rac@gentoo.org> prokyon3-0.9.1_p1.ebuild: + Initial commit. Ebuild submitted by Gregorio Guidi <g.guidi@sns.it> + in bug #17327. + diff --git a/media-sound/prokyon3/files/digest-prokyon3-0.9.1_p1 b/media-sound/prokyon3/files/digest-prokyon3-0.9.1_p1 new file mode 100644 index 000000000000..f5dba7f8ea96 --- /dev/null +++ b/media-sound/prokyon3/files/digest-prokyon3-0.9.1_p1 @@ -0,0 +1 @@ +MD5 767f849e9ba4c5c4ec114f64ecf1824b prokyon3-0.9.1-r1.tar.gz 353440 diff --git a/media-sound/prokyon3/prokyon3-0.9.1_p1.ebuild b/media-sound/prokyon3/prokyon3-0.9.1_p1.ebuild new file mode 100644 index 000000000000..050d366f1083 --- /dev/null +++ b/media-sound/prokyon3/prokyon3-0.9.1_p1.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.1_p1.ebuild,v 1.1 2003/03/14 17:14:03 rac Exp $ + +IUSE="oggvorbis" + +S=${WORKDIR}/${PN} +DESCRIPTION="Multithreaded MP3 manager and tag editor based on Qt and MySQL" +HOMEPAGE="http://prokyon3.sourceforge.net" +SRC_URI="mirror://sourceforge/prokyon3/${PN}-${PV/_p/-r}.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 +} |