Date: Fri, 14 Oct 2005 21:15:43 -0300 From: "Alejandro Pulver" <alejandro@varnet.biz> To: "FreeBSD gnats submit" <FreeBSD-gnats-submit@FreeBSD.org> Subject: ports/87471: [NEW PORT] graphics/xmms-dancingparticles - Makes particles dance with very pretty neon colors Message-ID: <1129335343.0@phobos.mars.bsd> Resent-Message-ID: <200510150020.j9F0KHcl005907@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 87471 >Category: ports >Synopsis: [NEW PORT] graphics/xmms-dancingparticles - Makes particles dance with very pretty neon colors >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Oct 15 00:20:17 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Alejandro Pulver >Release: FreeBSD 5.4-RELEASE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: --- xmms-dancingparticles.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # xmms-dancingparticles # xmms-dancingparticles/Makefile # xmms-dancingparticles/distinfo # xmms-dancingparticles/pkg-descr # xmms-dancingparticles/pkg-plist # xmms-dancingparticles/files # xmms-dancingparticles/files/patch-Makefile # echo c - xmms-dancingparticles mkdir -p xmms-dancingparticles > /dev/null 2>&1 echo x - xmms-dancingparticles/Makefile sed 's/^X//' >xmms-dancingparticles/Makefile << 'END-of-xmms-dancingparticles/Makefile' X# New ports collection makefile for: xmms-dancingparticles X# Date created: 14 Oct 2005 X# Whom: Alejandro Pulver <alejandro@varnet.biz> X# X# $FreeBSD$ X# X XPORTNAME= dancingparticles XPORTVERSION= 0.6 XCATEGORIES= graphics XMASTER_SITES= http://tardyp.free.fr/dancingparticles/ XPKGNAMEPREFIX= xmms- XDISTNAME= ${PORTNAME}${PORTVERSION} XEXTRACT_SUFX= .tgz X XMAINTAINER= alejandro@varnet.biz XCOMMENT= Makes particles dance with very pretty neon colors X XLIB_DEPENDS= t1.5:${PORTSDIR}/devel/t1lib \ X xmms.4:${PORTSDIR}/multimedia/xmms X XUSE_X_PREFIX= yes XUSE_REINPLACE= yes XUSE_GL= yes XUSE_GNOME= gtk12 XUSE_SDL= sdl X Xpost-patch: X @${REINPLACE_CMD} -e 's|\(#include.*\)SDL/\(SDL.*\)|\1\2| ; \ X s|/usr/local|${PREFIX}|' \ X ${WRKSRC}/*.cc ${WRKSRC}/*.h X X.include <bsd.port.mk> END-of-xmms-dancingparticles/Makefile echo x - xmms-dancingparticles/distinfo sed 's/^X//' >xmms-dancingparticles/distinfo << 'END-of-xmms-dancingparticles/distinfo' XMD5 (dancingparticles0.6.tgz) = c780e55d8b1c350d1fb4c09685e33fd2 XSIZE (dancingparticles0.6.tgz) = 69299 END-of-xmms-dancingparticles/distinfo echo x - xmms-dancingparticles/pkg-descr sed 's/^X//' >xmms-dancingparticles/pkg-descr << 'END-of-xmms-dancingparticles/pkg-descr' XThis plugin makes particles dance. Very pretty neon colors. X XWWW: http://tardyp.free.fr/dancingparticles/ END-of-xmms-dancingparticles/pkg-descr echo x - xmms-dancingparticles/pkg-plist sed 's/^X//' >xmms-dancingparticles/pkg-plist << 'END-of-xmms-dancingparticles/pkg-plist' Xlib/xmms/Visualization/libdancingparticles2.so X%%DATADIR%%/dance.epic X%%DATADIR%%/dancingparticles.conf X%%DATADIR%%/font.pfb X%%DATADIR%%/xmms.epic X@dirrm %%DATADIR%% END-of-xmms-dancingparticles/pkg-plist echo c - xmms-dancingparticles/files mkdir -p xmms-dancingparticles/files > /dev/null 2>&1 echo x - xmms-dancingparticles/files/patch-Makefile sed 's/^X//' >xmms-dancingparticles/files/patch-Makefile << 'END-of-xmms-dancingparticles/files/patch-Makefile' X--- Makefile.orig Sat Jan 31 08:05:51 2004 X+++ Makefile Fri Oct 14 20:53:22 2005 X@@ -1,14 +1,13 @@ X-CC = gcc X #OPT = -m486 -O2 X #OPT = -mpentium -O6 X-OPT = -mcpu=k6 -march=k6 -O6 X-CFLAGS = $(OPT) -Wall -fPIC `gtk-config --cflags gthread` X-LFLAGS = -shared -fPIC -L/usr/local/lib -lm -lstdc++ -lGL -lGLU -L/usr/X11R6/lib -lt1 -lSDL X-LFLAGS2 = -L/usr/local/lib -lm -lstdc++ -lGL -lGLU -L/usr/X11R6/lib -lpthread -lgtk -lgdk -lglut -lt1 X+CFLAGS += -fPIC `gtk-config --cflags gthread` `${SDL_CONFIG} --cflags` X+LFLAGS = -shared -fPIC -L${LOCALBASE}/lib -lm -lstdc++ -lGL -lGLU -L${X11BASE}/lib -lt1 `${SDL_CONFIG} --libs` X+LFLAGS2 = -L${LOCALBASE}/lib -lm -lstdc++ -lGL -lGLU -L${X11BASE}/lib -lgtk -lgdk -lglut -lt1 X OBJ = plugin.o gl.o etoile.o readme.o parameters.o epic.o config.o signal.o t1font.o X X INSTALL-DIR=`xmms-config --visualization-plugin-dir` X XMMS_DATADIR=`xmms-config --data-dir` X+DATADIR=${PREFIX}/share/dancingparticles X BIN=libdancingparticles2.so X all: $(BIN) X X@@ -33,14 +32,12 @@ X rm -f *.o core *~ X X install: $(BIN) X- strip $(BIN) X- install $(BIN) $(INSTALL-DIR) X- rm -Rf /usr/local/share/dancingparticles X- mkdir /usr/local/share/dancingparticles X- install dance.epic /usr/local/share/dancingparticles/ X- install dancingparticles.conf /usr/local/share/dancingparticles/ X- install xmms.epic /usr/local/share/dancingparticles/ X- install font.pfb /usr/local/share/dancingparticles/ X+ $(BSD_INSTALL_PROGRAM) $(BIN) $(INSTALL-DIR) X+ mkdir $(DATADIR) X+ $(BSD_INSTALL_DATA) dance.epic $(DATADIR) X+ $(BSD_INSTALL_DATA) dancingparticles.conf $(DATADIR) X+ $(BSD_INSTALL_DATA) xmms.epic $(DATADIR) X+ $(BSD_INSTALL_DATA) font.pfb $(DATADIR) X X X plugin.o: plugin.cc etoile.h END-of-xmms-dancingparticles/files/patch-Makefile exit --- xmms-dancingparticles.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1129335343.0>