mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Remove expired ports:
2015-07-07 graphics/fli2gif: No public distfiles 2015-07-07 net-im/tkabbur: Upstream development ceased since 2008
This commit is contained in:
parent
9d4e6e3a3d
commit
8a84ad18c2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=391530
2
MOVED
2
MOVED
@ -7682,3 +7682,5 @@ multimedia/ffmpeg23|multimedia/ffmpeg|2015-07-05|Obsolete since recent upstream
|
||||
multimedia/ffmpeg26|multimedia/ffmpeg|2015-07-05|Obsolete since recent upstream upgrade of main ffmpeg port. Use multimedia/ffmpeg instead.
|
||||
x11/docker|x11/docker-tray|2015-07-06|Renamed
|
||||
sysutils/docker|sysutils/docker-freebsd|2015-07-07|Renamed
|
||||
graphics/fli2gif||2015-07-07|Has expired: No public distfiles
|
||||
net-im/tkabbur||2015-07-07|Has expired: Upstream development ceased since 2008
|
||||
|
@ -168,7 +168,6 @@
|
||||
SUBDIR += figurine
|
||||
SUBDIR += flam3
|
||||
SUBDIR += flasm
|
||||
SUBDIR += fli2gif
|
||||
SUBDIR += flphoto
|
||||
SUBDIR += fly
|
||||
SUBDIR += fortytwo
|
||||
|
@ -1,40 +0,0 @@
|
||||
# Created by: giffunip@asme.org
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= fli2gif
|
||||
PORTVERSION= 1.1
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= http://jeff.bovine.net/download/fli2gif/
|
||||
DISTNAME= ${PORTNAME}b
|
||||
|
||||
MAINTAINER= ak@FreeBSD.org
|
||||
COMMENT= Automatic Flic to animated GIF converter
|
||||
|
||||
DEPRECATED= No public distfiles
|
||||
EXPIRATION_DATE= 2015-07-07
|
||||
|
||||
BROKEN= No public distfiles
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
|
||||
USES= dos2unix zip:infozip
|
||||
DOS2UNIX_FILES= fli2gif.cpp FLI2GIF.TXT
|
||||
|
||||
PLIST_FILES= bin/${PORTNAME}
|
||||
PORTDOCS= fli2gif.txt
|
||||
|
||||
post-extract:
|
||||
@(cd ${WRKSRC} && ${UNZIP_CMD} -q source.zip \
|
||||
&& ${LN} -sf GIF.CPP gif.cpp \
|
||||
&& ${LN} -sf FLIPLAY.CPP fliplay.cpp)
|
||||
|
||||
do-build:
|
||||
(cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -o ${PORTNAME} *.cpp)
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/fli2gif ${STAGEDIR}${PREFIX}/bin
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/FLI2GIF.TXT ${STAGEDIR}${DOCSDIR}/fli2gif.txt
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (fli2gifb.zip) = 16dd314a73eb5349657ac7d1f794332854883ba21ab0b1c22756e8dfbabe7da5
|
||||
SIZE (fli2gifb.zip) = 64804
|
@ -1,57 +0,0 @@
|
||||
Index: fli2gif.cpp
|
||||
@@ -43,7 +43,9 @@
|
||||
// ******************
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
-#include <malloc.h>
|
||||
+#ifndef __STDC__
|
||||
+# include <malloc.h>
|
||||
+#endif
|
||||
#include <string.h>
|
||||
#if defined(__TURBOC__) || defined(_MSC_VER)
|
||||
#include <conio.h>
|
||||
@@ -81,7 +83,7 @@
|
||||
// *** Function prototypes ***
|
||||
// *****************************
|
||||
void handle_error(int errorcode);
|
||||
-char *add_extension(char *filename, char *extension, BOOL enforce);
|
||||
+char *add_extension(char *filename, const char *extension, BOOL enforce);
|
||||
|
||||
|
||||
// **************************
|
||||
@@ -95,7 +97,7 @@
|
||||
//############################################################################
|
||||
//############################################################################
|
||||
//############################################################################
|
||||
-void main(int argc, char *argv[])
|
||||
+int main(int argc, char *argv[])
|
||||
{
|
||||
FILE *fp;
|
||||
int i, j;
|
||||
@@ -104,7 +106,7 @@
|
||||
// []----------------[]
|
||||
// | Initialization |
|
||||
// []----------------[]
|
||||
- printf("FLI2GIF.EXE -- Automatic Flic to Animated GIF convertor, v1.1\n");
|
||||
+ printf("FLI2GIF -- Automatic Flic to Animated GIF convertor, v1.1\n");
|
||||
printf(" by JL Enterprises, 1996. (Compiled with "
|
||||
#if defined(__TURBOC__)
|
||||
"Borland"
|
||||
@@ -117,6 +119,8 @@
|
||||
" for Windows"
|
||||
#elif defined(__MSDOS__) || defined(_DOS)
|
||||
" for MS-DOS"
|
||||
+ #elif defined(__FreeBSD__)
|
||||
+ " for FreeBSD"
|
||||
#endif
|
||||
")\n\n");
|
||||
{
|
||||
@@ -389,7 +393,7 @@
|
||||
// Takes a user-entered filename and adds the specified extension if an
|
||||
// entension is not explicitly stated in the passed filename. A pointer
|
||||
// to a static buffer is returned.
|
||||
-char *add_extension(char *filename, char *extension, BOOL enforce)
|
||||
+char *add_extension(char *filename, const char *extension, BOOL enforce)
|
||||
{
|
||||
static char Path[_MAX_PATH];
|
||||
|
@ -1,14 +0,0 @@
|
||||
This little program will take an Autodesk Flic (FLI/FLC) file and convert
|
||||
all of its frames into sequential images in a GIF89a file, along with a
|
||||
Netscape application extension animation chunk. This allows you to easily
|
||||
create animated GIF's that are viewable by Netscape Navigator 2 and
|
||||
Microsoft Internet Explorer 3 (and above) users.
|
||||
|
||||
By using my program, you can use any animation program that can output
|
||||
Autodesk Flic files. This includes Autodesk Animator, Autodesk Animator
|
||||
Pro, Autodesk 3D-Studio, and many others. Additionally, there exist
|
||||
utilities to convert from nearly any other animation format into the
|
||||
flic format, allowing even more possibilities of animation conversion
|
||||
without having to resort to saving out individual frames to separate files.
|
||||
|
||||
WWW: http://jeff.bovine.net
|
@ -173,7 +173,6 @@
|
||||
SUBDIR += telepathy-sofiasip
|
||||
SUBDIR += tkabber
|
||||
SUBDIR += tkabber-plugins
|
||||
SUBDIR += tkabbur
|
||||
SUBDIR += tox
|
||||
SUBDIR += toxic
|
||||
SUBDIR += ttytter
|
||||
|
@ -1,39 +0,0 @@
|
||||
# Created by: Dennis Herrmann <adox@mcx2.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= tkabbur
|
||||
PORTVERSION= 0.8
|
||||
CATEGORIES= net-im
|
||||
MASTER_SITES= GOOGLE_CODE
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Is a modification of XMPP/Jabber client Tkabber
|
||||
|
||||
RUN_DEPENDS= dtplite:${PORTSDIR}/devel/tcllib \
|
||||
tcltls>0:${PORTSDIR}/devel/tcltls \
|
||||
${LOCALBASE}/lib/bwidget/pkgIndex.tcl:${PORTSDIR}/x11-toolkits/bwidget
|
||||
|
||||
DEPRECATED= Upstream development ceased since 2008
|
||||
EXPIRATION_DATE= 2015-07-07
|
||||
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME}
|
||||
USES= tar:bzip2 tk:run
|
||||
NO_BUILD= yes
|
||||
|
||||
SUBDIRS= contrib emoticons ifacetk jabberlib mclistbox \
|
||||
msgs pixmaps plugins sounds tclxml trans
|
||||
|
||||
do-install:
|
||||
${ECHO} -e "#!/bin/sh\nexec ${WISH} ${DATADIR}/tkabbur.tcl \
|
||||
-name tkabbur \"\$$@\"\n" > ${STAGEDIR}${PREFIX}/bin/tkabbur
|
||||
${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/tkabbur
|
||||
${CHMOD} 755 ${WRKSRC}/*.tcl
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
${CP} ${WRKSRC}/*.tcl ${STAGEDIR}${DATADIR}
|
||||
.for i in ${SUBDIRS}
|
||||
${CHMOD} -R 755 ${WRKSRC}/${i}
|
||||
${CP} -R ${WRKSRC}/${i} ${STAGEDIR}${DATADIR}
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,2 +0,0 @@
|
||||
SHA256 (tkabbur-0.8.src.tar.bz2) = 6e0350315f16c6b6aee450ea2ceba2ae09174f2a6a81c0147f16ab2f03ae313d
|
||||
SIZE (tkabbur-0.8.src.tar.bz2) = 1111620
|
@ -1,12 +0,0 @@
|
||||
--- Makefile.orig 2008-10-13 21:54:12.000000000 +0200
|
||||
+++ Makefile 2008-10-13 21:54:37.000000000 +0200
|
||||
@@ -22,8 +22,7 @@
|
||||
mkdir -p $(DESTDIR)/$(TKABBERDIR)
|
||||
cp -r *.tcl $(SUBDIRS) $(DESTDIR)/$(TKABBERDIR)
|
||||
mkdir -p $(DESTDIR)/$(BINDIR)
|
||||
- echo -e "#!/bin/sh\nexec wish $(TKABBERDIR)/tkabbur.tcl -name tkabbur \"\$$@\"\n" \
|
||||
- >$(DESTDIR)/$(BINDIR)/tkabbur
|
||||
+ ··echo -e "#!/bin/sh\nexec wish8.4 $(PREFIX)/share/tkabbur/tkabbur.tcl -name tkabbur \"\$$@\"\n" > $(DESTDIR)/$(PREFIX)/bin/tkabbur
|
||||
chmod 755 $(DESTDIR)/$(BINDIR)/tkabbur
|
||||
|
||||
.PHONY: install install-bin
|
@ -1,4 +0,0 @@
|
||||
Tkabbur is a modification of XMPP/Jabber client Tkabber,
|
||||
that brings many new features.
|
||||
|
||||
WWW: http://code.google.com/p/tkabbur/
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user