summaryrefslogtreecommitdiff
path: root/audio/gqmpeg-devel
diff options
context:
space:
mode:
Diffstat (limited to 'audio/gqmpeg-devel')
-rw-r--r--audio/gqmpeg-devel/Makefile28
-rw-r--r--audio/gqmpeg-devel/distinfo1
-rw-r--r--audio/gqmpeg-devel/files/patch-aa21
-rw-r--r--audio/gqmpeg-devel/files/patch-ab75
-rw-r--r--audio/gqmpeg-devel/pkg-comment1
-rw-r--r--audio/gqmpeg-devel/pkg-descr7
-rw-r--r--audio/gqmpeg-devel/pkg-plist1
7 files changed, 0 insertions, 134 deletions
diff --git a/audio/gqmpeg-devel/Makefile b/audio/gqmpeg-devel/Makefile
deleted file mode 100644
index 064e1c5a2829..000000000000
--- a/audio/gqmpeg-devel/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# New ports collection makefile for: gqmpeg
-# Version required: 0.5.1
-# Date Created: 28 Oct 1998
-# Whom: Vanilla Pooh Shu <vanilla@FreeBSD.ORG>
-#
-# $Id: Makefile,v 1.11 1999/03/15 18:30:04 nectar Exp $
-#
-
-DISTNAME= gqmpeg-0.5.1
-CATEGORIES= audio
-MASTER_SITES= http://www.geocities.com/SiliconValley/Haven/5235/
-EXTRACT_SUFX= .src.tgz
-
-MAINTAINER= nacai@iname.com
-
-RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123
-LIB_DEPENDS= Imlib.3:${PORTSDIR}/graphics/imlib
-
-USE_X_PREFIX= yes
-ALL_TARGET= gqmpeg
-
-BINGRP= kmem
-BINMODE= 2555
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/gqmpeg ${PREFIX}/bin
-
-.include <bsd.port.mk>
diff --git a/audio/gqmpeg-devel/distinfo b/audio/gqmpeg-devel/distinfo
deleted file mode 100644
index 1e8b6578f40f..000000000000
--- a/audio/gqmpeg-devel/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (gqmpeg-0.5.1.src.tgz) = 9649e5366da9298df19c216791fb9b14
diff --git a/audio/gqmpeg-devel/files/patch-aa b/audio/gqmpeg-devel/files/patch-aa
deleted file mode 100644
index 4e9b9b08dae7..000000000000
--- a/audio/gqmpeg-devel/files/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
---- Makefile.orig Sat Mar 27 21:38:09 1999
-+++ Makefile Tue Mar 30 01:48:05 1999
-@@ -1,13 +1,11 @@
-
--PREFIX=/usr/local
--
--GTK_INCLUDE = `gtk-config --cflags`
--GTK_LIB = `gtk-config --libs`
-+GTK_INCLUDE = `gtk12-config --cflags`
-+GTK_LIB = `gtk12-config --libs`
- IMLIB_INCLUDE = `imlib-config --cflags-gdk`
- IMLIB_LIB = `imlib-config --libs-gdk`
--CFLAGS = $(GTK_INCLUDE) $(IMLIB_INCLUDE)
--LDFLAGS = $(GTK_LIB) $(IMLIB_LIB)
--CC = gcc -Wall $(CFLAGS)
-+CFLAGS += $(GTK_INCLUDE) $(IMLIB_INCLUDE)
-+LDFLAGS = $(GTK_LIB) $(IMLIB_LIB) -lkvm
-+CC += -Wall $(CFLAGS)
-
- GNOME_PREFIX = `gnome-config --prefix`
-
diff --git a/audio/gqmpeg-devel/files/patch-ab b/audio/gqmpeg-devel/files/patch-ab
deleted file mode 100644
index 9a8d2a1fd11d..000000000000
--- a/audio/gqmpeg-devel/files/patch-ab
+++ /dev/null
@@ -1,75 +0,0 @@
---- main.c.orig Tue Mar 30 01:40:15 1999
-+++ main.c Tue Mar 30 01:47:25 1999
-@@ -15,6 +15,27 @@
- #include <gdk/gdkx.h>
- #include <X11/Xlib.h>
-
-+#ifdef __FreeBSD__
-+#include <kvm.h>
-+#include <fcntl.h>
-+#include <sys/user.h>
-+#include <sys/proc.h>
-+#include <sys/param.h>
-+#include <sys/sysctl.h>
-+
-+#ifdef FSCALE
-+#define FIXED_PCTCPU FSCALE
-+#endif
-+
-+#ifdef FIXED_PCTCPU
-+typedef long pctcpu;
-+#define pctdouble(p) ((double)(p) / FIXED_PCTCPU)
-+#else
-+typedef double pctcpu;
-+#define pctdouble(p) (p)
-+#endif
-+#endif
-+
- static gint fast_advance = FALSE;
- static gint advance_max_frame;
- static gint advance_max_sec;
-@@ -99,6 +120,36 @@
- #define HZ 100 /* for FreeBSD? */
- #endif
-
-+#ifdef __FreeBSD__
-+static gfloat check_child_cpu_usage(int childs_pid)
-+{
-+ static gfloat percent_of_cpu = 0.0;
-+
-+ static kvm_t *kd;
-+ kd = kvm_open(NULL, NULL, NULL, O_RDONLY, "kvm_open");
-+ if (kd == NULL) return percent_of_cpu;
-+
-+ {
-+ static struct kinfo_proc *ki;
-+ static int nproc;
-+ ki = kvm_getprocs(kd, KERN_PROC_PID, childs_pid, &nproc);
-+ if (nproc != 1) {
-+ percent_of_cpu = 0.0;
-+ } else {
-+ percent_of_cpu = 100.0 * pctdouble(ki->kp_proc.p_pctcpu);
-+ }
-+ }
-+
-+ kvm_close(kd);
-+
-+ if (percent_of_cpu > 99.0) {
-+ percent_of_cpu = 99;
-+ }
-+
-+ return percent_of_cpu;
-+}
-+
-+#else
- static gfloat check_child_cpu_usage(int childs_pid)
- {
- /* needed for SGI IRIX 5.3 and 6.5 */
-@@ -197,6 +248,7 @@
-
- return percent_of_cpu;
- }
-+#endif
-
- void set_song_info(gint n)
- {
diff --git a/audio/gqmpeg-devel/pkg-comment b/audio/gqmpeg-devel/pkg-comment
deleted file mode 100644
index 6f4af48adce3..000000000000
--- a/audio/gqmpeg-devel/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Another gtk-base MP3 frontend.
diff --git a/audio/gqmpeg-devel/pkg-descr b/audio/gqmpeg-devel/pkg-descr
deleted file mode 100644
index 06586d6e9229..000000000000
--- a/audio/gqmpeg-devel/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-A GTK-based mp3 front-end. Uses mpg123 for decoding and supports
-winamp themes..
-
-WWW: http://www.geocities.com/SiliconValley/Haven/5235/
-
--Vanilla
-vanilla@FreeBSD.ORG
diff --git a/audio/gqmpeg-devel/pkg-plist b/audio/gqmpeg-devel/pkg-plist
deleted file mode 100644
index 47698f51af99..000000000000
--- a/audio/gqmpeg-devel/pkg-plist
+++ /dev/null
@@ -1 +0,0 @@
-bin/gqmpeg