diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-08-17 19:03:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-08-17 19:03:06 +0000 |
commit | ba2ca9459ed1878026282cc754f0be1fd2292977 (patch) | |
tree | 497473cd59846c2af01245f7537b91c889a283ea /media-sound/yconsole | |
parent | fix script #26767 (diff) | |
download | historical-ba2ca9459ed1878026282cc754f0be1fd2292977.tar.gz historical-ba2ca9459ed1878026282cc754f0be1fd2292977.tar.bz2 historical-ba2ca9459ed1878026282cc754f0be1fd2292977.zip |
initial ebuild
Diffstat (limited to 'media-sound/yconsole')
-rw-r--r-- | media-sound/yconsole/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/yconsole/files/3.0.1-makefile-cflags.patch | 12 | ||||
-rw-r--r-- | media-sound/yconsole/files/digest-yconsole-3.0.1 | 1 | ||||
-rw-r--r-- | media-sound/yconsole/metadata.xml | 17 | ||||
-rw-r--r-- | media-sound/yconsole/yconsole-3.0.1.ebuild | 35 |
5 files changed, 73 insertions, 0 deletions
diff --git a/media-sound/yconsole/ChangeLog b/media-sound/yconsole/ChangeLog new file mode 100644 index 000000000000..7cbc3b1ccb77 --- /dev/null +++ b/media-sound/yconsole/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for media-sound/yconsole +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/yconsole/ChangeLog,v 1.1 2003/08/17 19:03:06 vapier Exp $ + +*yconsole-3.0.1 (17 Aug 2003) + + 17 Aug 2003; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by me. diff --git a/media-sound/yconsole/files/3.0.1-makefile-cflags.patch b/media-sound/yconsole/files/3.0.1-makefile-cflags.patch new file mode 100644 index 000000000000..8271435dbd0f --- /dev/null +++ b/media-sound/yconsole/files/3.0.1-makefile-cflags.patch @@ -0,0 +1,12 @@ +--- yconsole/Makefile.orig 2003-08-17 14:54:36.590310296 -0400 ++++ yconsole/Makefile 2003-08-17 14:54:59.716794536 -0400 +@@ -2,7 +2,8 @@ + # + PREFIX = /usr + +-CFLAGS = -Wall -O2 -g \ ++CFLAGS = -Wall $(OPTFLAGS) ++CFLAGS += \ + `imlib-config --cflags` -DHAVE_IMLIB \ + `gtk-config --cflags` + diff --git a/media-sound/yconsole/files/digest-yconsole-3.0.1 b/media-sound/yconsole/files/digest-yconsole-3.0.1 new file mode 100644 index 000000000000..145b3c516cf9 --- /dev/null +++ b/media-sound/yconsole/files/digest-yconsole-3.0.1 @@ -0,0 +1 @@ +MD5 57984cb0275b02a5ed331287613658f5 yconsole-3.0.1.tgz 590654 diff --git a/media-sound/yconsole/metadata.xml b/media-sound/yconsole/metadata.xml new file mode 100644 index 000000000000..6a359b042300 --- /dev/null +++ b/media-sound/yconsole/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>vapier@gentoo.org</email> + <name>Mike Frysinger</name> +</maintainer> + <longdescription> +YConsole allows you to monitor and control +the Y server in a GUI environment, using the GTK+ toolkit. +YConsole also features a set of windows including the YAudio +window, YMixer window, and YPlayer window which allow you to +control all aspects of the Y server. The YPlayer window allows +you to play sound objects and control the audio CD. + </longdescription> +</pkgmetadata> diff --git a/media-sound/yconsole/yconsole-3.0.1.ebuild b/media-sound/yconsole/yconsole-3.0.1.ebuild new file mode 100644 index 000000000000..7b2365822664 --- /dev/null +++ b/media-sound/yconsole/yconsole-3.0.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/yconsole/yconsole-3.0.1.ebuild,v 1.1 2003/08/17 19:03:06 vapier Exp $ + +inherit eutils + +DESCRIPTION="monitor and control the Y server" +HOMEPAGE="http://wolfpack.twu.net/YIFF/" +SRC_URI="ftp://wolfpack.twu.net/users/wolfpack/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="=x11-libs/gtk+-1* + media-libs/imlib" +#RDEPEND="" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PV}-makefile-cflags.patch +} + +src_compile() { + cd yconsole + make OPTFLAGS="${CFLAGS}" || die +} + +src_install() { + cd yconsole + make install PREFIX=${D}/usr || die + dodoc AUTHORS README +} |