diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-08-16 02:24:09 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-08-16 02:24:09 +0000 |
commit | 04b70e523605229e07e22da14696d227e28a55bb (patch) | |
tree | 61173d540263eb5fe01cec5fde3d624ed509c261 /audio/xmms-dscope | |
parent | 10023af344c6aa64fcb99fd404f68b4da0422a29 (diff) | |
download | pkgsrc-04b70e523605229e07e22da14696d227e28a55bb.tar.gz |
xmms-dscope-1.2: dual scope visual plugin for XMMS
Diffstat (limited to 'audio/xmms-dscope')
-rw-r--r-- | audio/xmms-dscope/Makefile | 23 | ||||
-rw-r--r-- | audio/xmms-dscope/distinfo | 5 | ||||
-rw-r--r-- | audio/xmms-dscope/patches/patch-aa | 56 | ||||
-rw-r--r-- | audio/xmms-dscope/pkg/DESCR | 1 | ||||
-rw-r--r-- | audio/xmms-dscope/pkg/PLIST | 7 |
5 files changed, 92 insertions, 0 deletions
diff --git a/audio/xmms-dscope/Makefile b/audio/xmms-dscope/Makefile new file mode 100644 index 00000000000..5730af1043d --- /dev/null +++ b/audio/xmms-dscope/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/08/16 02:24:09 hubertf Exp $ +# + +DISTNAME= dscope-1.2 +PKGNAME= xmms-dscope-1.2 +CATEGORIES= audio +MASTER_SITES= http://hem.passagen.se/joakime/ + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://hem.passagen.se/joakime/linuxapp.html +COMMENT= XMMS plugin for dual scope + +DEPENDS+= xmms>=1.2.5:../../audio/xmms + +USE_X11= yes +USE_LIBTOOL= yes + +pre-build: + cd ${WRKSRC} ; ${MAKE} clean + +.include "../../audio/xmms/buildlink.mk" +.include "../../x11/gtk/buildlink.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/audio/xmms-dscope/distinfo b/audio/xmms-dscope/distinfo new file mode 100644 index 00000000000..becce9f80cb --- /dev/null +++ b/audio/xmms-dscope/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2001/08/16 02:24:09 hubertf Exp $ + +SHA1 (dscope-1.2.tar.gz) = 5a4750c0a8170c1e2d263df1212262b3adad1210 +Size (dscope-1.2.tar.gz) = 34353 bytes +SHA1 (patch-aa) = 5d58167310bc6b609388518d7026952a2d6ac9bc diff --git a/audio/xmms-dscope/patches/patch-aa b/audio/xmms-dscope/patches/patch-aa new file mode 100644 index 00000000000..722964279be --- /dev/null +++ b/audio/xmms-dscope/patches/patch-aa @@ -0,0 +1,56 @@ +$NetBSD: patch-aa,v 1.1.1.1 2001/08/16 02:24:09 hubertf Exp $ + +--- Makefile.orig Sat Jan 20 15:18:28 2001 ++++ Makefile +@@ -1,12 +1,12 @@ + # Change paths & OPT if necessary + +-CC = gcc +-OPT = -m486 -O2 ++#CC = gcc ++#OPT = -m486 -O2 + #OPT = -mpentium -O6 + #OPT = -mcpu=k6 -march=k6 -O6 +-CFLAGS = $(OPT) -Wall -fPIC `gtk-config --cflags gthread` +-LFLAGS = -shared -fPIC -L/usr/local/lib +-OBJ = dscope.o ++CFLAGS+= $(OPT) -Wall -fPIC `gtk-config --cflags gthread` ++#LFLAGS = -shared -fPIC -L/usr/local/lib ++OBJ = dscope.lo + INSTALL-DIR=`xmms-config --visualization-plugin-dir` + XMMS_DATADIR=`xmms-config --data-dir` + #INSTALL-DIR=$(HOME)/.xmms/Plugins +@@ -14,21 +14,24 @@ + THEME_SUBDIR=dscope_themes + XMMS_DATADIR_FLAGS=-DTHEMEDIR=\"$(XMMS_DATADIR)/$(THEME_SUBDIR)/\" + +-all: libdscope.so ++.SUFFIXES: .c .lo + +-libdscope.so: $(OBJ) +- $(CC) -o libdscope.so $(OBJ) $(LFLAGS) ++all: libdscope.la + +-.c.o: +- $(CC) $(CFLAGS) $(XMMS_DATADIR_FLAGS) -c $< ++libdscope.la: $(OBJ) ++ ${LIBTOOL} $(CC) -o libdscope.la -module -avoid-version $(OBJ) $(LFLAGS) -rpath $(INSTALL-DIR) ++ ++.c.lo: ++ ${LIBTOOL} $(CC) $(CFLAGS) $(XMMS_DATADIR_FLAGS) -c $< + + clean: +- rm -f *.o core *.so* ++ rm -f *.o core *.so* *.lo *.la ++ rm -fr .libs + + distclean: + rm -f *.o core *~ + + install: +- install libdscope.so $(INSTALL-DIR) +- mkdir -p $(XMMS_DATADIR)/$(THEME_SUBDIR) +- install bg_*.xpm $(XMMS_DATADIR)/$(THEME_SUBDIR) ++ ${LIBTOOL} ${INSTALL} libdscope.la $(INSTALL-DIR) ++ ${BSD_INSTALL_DATA_DIR} $(XMMS_DATADIR)/$(THEME_SUBDIR) ++ ${BSD_INSTALL_DATA} bg_*.xpm $(XMMS_DATADIR)/$(THEME_SUBDIR) diff --git a/audio/xmms-dscope/pkg/DESCR b/audio/xmms-dscope/pkg/DESCR new file mode 100644 index 00000000000..f3866964647 --- /dev/null +++ b/audio/xmms-dscope/pkg/DESCR @@ -0,0 +1 @@ +Dual Scope XMMS plugin diff --git a/audio/xmms-dscope/pkg/PLIST b/audio/xmms-dscope/pkg/PLIST new file mode 100644 index 00000000000..074c725c547 --- /dev/null +++ b/audio/xmms-dscope/pkg/PLIST @@ -0,0 +1,7 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2001/08/16 02:24:09 hubertf Exp $ +lib/xmms/Visualization/libdscope.so +lib/xmms/Visualization/libdscope.la +lib/xmms/Visualization/libdscope.a +share/xmms/dscope_themes/bg_xmms.xpm +share/xmms/dscope_themes/bg_gtk.xpm +@dirrm share/xmms/dscope_themes |