From 8b5efc4a6dea33996cd5235dc2e5f3dcb857f424 Mon Sep 17 00:00:00 2001 From: Rene Ladan Date: Sun, 22 Dec 2013 16:51:40 +0000 Subject: Remove expired ports: graphics/yukon: depends on graphics/seom 2013-12-22 graphics/seom: Broken for more than 6 month --- graphics/seom/Makefile | 58 --------------------------------- graphics/seom/distinfo | 2 -- graphics/seom/files/patch-Makefile | 67 -------------------------------------- graphics/seom/files/patch-warnings | 25 -------------- graphics/seom/pkg-descr | 6 ---- graphics/seom/pkg-plist | 19 ----------- 6 files changed, 177 deletions(-) delete mode 100644 graphics/seom/Makefile delete mode 100644 graphics/seom/distinfo delete mode 100644 graphics/seom/files/patch-Makefile delete mode 100644 graphics/seom/files/patch-warnings delete mode 100644 graphics/seom/pkg-descr delete mode 100644 graphics/seom/pkg-plist (limited to 'graphics/seom') diff --git a/graphics/seom/Makefile b/graphics/seom/Makefile deleted file mode 100644 index a5eada7fffc8..000000000000 --- a/graphics/seom/Makefile +++ /dev/null @@ -1,58 +0,0 @@ -# Created by: bms -# $FreeBSD$ - -PORTNAME= seom -PORTVERSION= 2010011201 -CATEGORIES= graphics -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= bms -DISTNAME= seom-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Real-time capture library for OpenGL applications - -NOMAN= defined - -DEPRECATED= Broken for more than 6 month -EXPIRATION_DATE= 2013-12-22 - -BROKEN= fails to package - -USE_BZIP2= yes -USE_GCC= 4.2+ -USE_XORG= x11 xv -USE_GL= yes -USE_LDCONFIG= yes - -NO_STAGE= yes -.include - -ONLY_FOR_ARCHS= i386 amd64 -ONLY_FOR_ARCHS_REASON= "not yet ported to anything other than i386 and amd64" - -.if ${ARCH} == "i386" || ${ARCH} == "amd64" -BUILD_DEPENDS= ${LOCALBASE}/bin/yasm:${PORTSDIR}/devel/yasm -.endif - -MAKE_ENV+= DATADIR="${DATADIR}" PREFIX="${PREFIX}" - -# -# To roll snapshot: as bms: make BOOTSTRAP=defined fetch -# -.if defined(BOOTSTRAP) -FETCH_DEPENDS+= svn:${PORTSDIR}/devel/subversion -SVN_REV= 196 # svn tip at epoch 2009120801 -SVNROOT_URI= https://devel.neopsis.com/svn/seom - -do-fetch: - ${MKDIR} ${WRKDIR} - svn export -r ${SVN_REV} ${SVNROOT_URI}/trunk ${WRKSRC} - cd ${WRKDIR}; tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME} -.if ${USER} == bms - ${CHMOD} ugo+r ${DISTDIR}/${DISTNAME}.tar.bz2 - scp -p ${DISTDIR}/${DISTNAME}.tar.bz2 \ - freefall.freebsd.org:public_distfiles/ -.endif -.endif # defined(BOOTSTRAP) - -.include diff --git a/graphics/seom/distinfo b/graphics/seom/distinfo deleted file mode 100644 index 75ea6053e4a0..000000000000 --- a/graphics/seom/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (seom-2010011201.tar.bz2) = fcfb18f4aaf6f221eef1ea765fbbec965fb6180ac35879f9a3a19319a8f20bb0 -SIZE (seom-2010011201.tar.bz2) = 24242 diff --git a/graphics/seom/files/patch-Makefile b/graphics/seom/files/patch-Makefile deleted file mode 100644 index 7c8590424bcc..000000000000 --- a/graphics/seom/files/patch-Makefile +++ /dev/null @@ -1,67 +0,0 @@ ---- Makefile 2007-03-27 15:23:25.000000000 -0400 -+++ Makefile 2013-02-07 12:32:37.000000000 -0500 -@@ -1,20 +1,27 @@ -+.SUFFIXES: .c .o .asm - - MAJOR = 0 - LIBRARY = libseom.so - --DESTDIR = -+DESTDIR ?= -+ -+# XXX override passed in - LIBDIR = lib -+LIBDATADIR = libdata - - CC = gcc - ASM = yasm - --CFLAGS = -Iinclude -std=c99 -+CFLAGS += -Iinclude -std=c99 - LDFLAGS = -Wl,--as-needed - --include config.make -+###include config.make -+ -+ARCH = C -+CFLAGS += -I${LOCALBASE}/include -L${LOCALBASE}/lib - - OBJS = src/buffer.o src/client.o src/codec.o src/frame.o src/opengl.o \ -- src/server.o src/stream.o src/arch/$(ARCH)/frame.o -+ src/server.o src/stream.o src/arch/${ARCH:S/i386/x86/g}/frame.o - - APPS = filter player server - playerLIBS = -lX11 -lXv -@@ -22,14 +29,14 @@ - .PHONY: all clean install - all: $(LIBRARY) $(APPS) - --%.o: %.asm -- $(ASM) -m $(ARCH) -f elf -o $@ $< -+.asm.o: -+ $(ASM) -m ${ARCH:S/i386/x86/g} -f elf -o $@ $< - --%.o: %.c -+.c.o: - $(CC) $(CFLAGS) -fPIC -c -o $@ $< - - $(LIBRARY): $(OBJS) -- $(CC) -shared $(LDFLAGS) -Wl,-soname,$@.$(MAJOR) -o $@ $(OBJS) -ldl -lpthread -+ $(CC) -shared $(LDFLAGS) -Wl,-soname,$@.$(MAJOR) -o $@ $(OBJS) -lpthread - - $(APPS): $(LIBRARY) - $(CC) $(CFLAGS) $(LDFLAGS) -L. -o $@ src/$@/main.c -lseom $($@LIBS) -@@ -39,11 +46,11 @@ - - inst = install -m 755 -d $(DESTDIR)$(3); install -m $(1) $(2) $(DESTDIR)$(3)$(if $(4),/$(4)); - install: $(LIBRARY) $(APPS) seom.pc -- $(call inst,644,seom.pc,$(PREFIX)/$(LIBDIR)/pkgconfig) -+ $(call inst,644,seom.pc,$(PREFIX)/$(LIBDATADIR)/pkgconfig) - $(call inst,755,$(LIBRARY),$(PREFIX)/$(LIBDIR),$(LIBRARY).$(MAJOR)) - ln -sf $(LIBRARY).$(MAJOR) $(DESTDIR)$(PREFIX)/$(LIBDIR)/$(LIBRARY) - -- $(call inst,644,art/seom.svg,$(PREFIX)/share/seom,seom.svg) -+ $(call inst,644,art/seom.svg,$(DATADIR),seom.svg) - $(call inst,644,include/seom/*,$(PREFIX)/include/seom) - $(call inst,755,src/scripts/backup,$(PREFIX)/bin,seom-backup) - $(foreach app,$(APPS),$(call inst,755,$(app),$(PREFIX)/bin,seom-$(app))) diff --git a/graphics/seom/files/patch-warnings b/graphics/seom/files/patch-warnings deleted file mode 100644 index 51796c4f6523..000000000000 --- a/graphics/seom/files/patch-warnings +++ /dev/null @@ -1,25 +0,0 @@ ---- src/stream.c 2007-03-27 15:23:25.000000000 -0400 -+++ src/stream.c 2013-02-07 12:35:18.000000000 -0500 -@@ -43,5 +43,5 @@ - - stream->fd = socket(AF_INET, SOCK_STREAM, 0); -- connect(stream->fd, &addr, sizeof(addr)); -+ connect(stream->fd, (struct sockaddr *)&addr, sizeof(addr)); - } else if (strncmp(spec, "ipv6://", 7) == 0) { - fprintf(stderr, "IPv6 unsupported !\n"); ---- src/server.c 2006-10-17 07:12:15.000000000 -0400 -+++ src/server.c 2013-02-07 12:36:56.000000000 -0500 -@@ -64,5 +64,5 @@ - addr.sin_addr.s_addr = htonl(INADDR_ANY); - -- bind(server->socket, &addr, sizeof(addr)); -+ bind(server->socket, (struct sockaddr *)&addr, sizeof(addr)); - listen(server->socket, 1); - -@@ -80,5 +80,5 @@ - socklen_t len = sizeof(addr); - -- int sockfd = accept(server->socket, &addr, &len); -+ int sockfd = accept(server->socket, (struct sockaddr *)&addr, &len); - if (sockfd < 0) { - return; diff --git a/graphics/seom/pkg-descr b/graphics/seom/pkg-descr deleted file mode 100644 index 7a5bd36df710..000000000000 --- a/graphics/seom/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -Yukon is a set of libraries and applications that are designed to -capture realtime videos of OpenGL applications (games). The original -design idea is based on Anandtech's FrameGetter, but was extended -to suit today's high-performance computers. - -WWW: https://devel.neopsis.com/projects/yukon/ diff --git a/graphics/seom/pkg-plist b/graphics/seom/pkg-plist deleted file mode 100644 index 51951bb59c54..000000000000 --- a/graphics/seom/pkg-plist +++ /dev/null @@ -1,19 +0,0 @@ -bin/seom-backup -bin/seom-filter -bin/seom-player -bin/seom-server -lib/libseom.so -lib/libseom.so.0 -libdata/pkgconfig/seom.pc -include/seom/buffer.h -include/seom/client.h -include/seom/codec.h -include/seom/frame.h -include/seom/seom.h -include/seom/server.h -include/seom/stream.h -%%DATADIR%%/seom.svg -@dirrmtry libdata/pkgconfig -@dirrmtry libdata -@dirrm include/seom -@dirrm share/seom -- cgit v1.2.3