1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

Remove expired leaf ports:

2006-02-28 graphics/quickpics
2006-02-28 graphics/threeDS
This commit is contained in:
Vasil Dimov 2006-03-15 07:10:44 +00:00
parent 4fcab4c05c
commit 02dd6f1e33
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=157140
14 changed files with 2 additions and 224 deletions

2
MOVED
View File

@ -2211,3 +2211,5 @@ japanese/squirrelmail|mail/squirrelmail|2006-03-05|Integrated to mail/squirrelma
japanese/vje30-trial||2006-03-07|no longer distributed
security/hpn-ssh|security/openssh-portable|2006-03-15|Now an option in security/openssh-portable
audio/musicbrainz||2006-03-15|Remove expired port
graphics/quickpics||2006-03-15|Remove expired port
graphics/threeDS||2006-03-15|Remove expired port

View File

@ -500,7 +500,6 @@
SUBDIR += quat
SUBDIR += quat-gui
SUBDIR += quesa
SUBDIR += quickpics
SUBDIR += qvplay
SUBDIR += ray++
SUBDIR += rayshade
@ -564,7 +563,6 @@
SUBDIR += telak
SUBDIR += tgif
SUBDIR += tgif-nls
SUBDIR += threeDS
SUBDIR += tif22pnm
SUBDIR += tiff
SUBDIR += tiff2png

View File

@ -1,35 +0,0 @@
# New ports collection makefile for: QuickPics
# Date Created: 10 March 2000
# Whom: Stever <stever@transmission23.com>
#
# $FreeBSD$
#
PORTNAME= quickpics
PORTVERSION= 1.8
PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= #
DISTNAME= QuickPics-${PORTVERSION}
MAINTAINER= bifrost@kizmiaz.dis.org
COMMENT= A really handy tool for large image collections and digital cameras
DEPRECATED= mastersite disappeared, no longer maintained by author
EXPIRATION_DATE= 2006-02-28
LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg
WRKSRC= ${WRKDIR}/${DISTNAME}/src
GNU_CONFIGURE= yes
ALL_TARGET= qp
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/qp ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/qp
${INSTALL_DATA} ${WRKSRC}/../README ${PREFIX}/share/doc/qp
.endif
.include <bsd.port.mk>

View File

@ -1,3 +0,0 @@
MD5 (QuickPics-1.8.tar.gz) = 5f11c29d7dabeeceb56a81a0292a9dbf
SHA256 (QuickPics-1.8.tar.gz) = eb1b62dc2765dee29d2cf397a490de961dac4e0b63706d10e32976fbe21f7d28
SIZE (QuickPics-1.8.tar.gz) = 588304

View File

@ -1,36 +0,0 @@
--- Makefile.in.orig Fri Sep 18 23:23:19 1998
+++ Makefile.in Sun Apr 30 18:42:42 2000
@@ -7,18 +7,19 @@
#############################################################################
# Executable name
-INST_NAME = ../qp
+INST_NAME = qp
DEFINES = -DHAVE_CONFIG_H
# Do you have libjpeg already on your system? If so, set this.
-LIBJPEGPATH = ../jpeg-6a
+LIBJPEGPATH = ${PREFIX}/lib
+INCJPEGPATH = ${PREFIX}/include
+CC ?= gcc
+CFLAGS ?= -fno-strength-reduce -Wall -Wno-implicit @CFLAGS@
-CC = gcc
-CFLAGS = -fno-strength-reduce -Wall -Wno-implicit @CFLAGS@
CLINKFLAGS = @LIBS@
-INCLUDEDIRS = -I. -I$(LIBJPEGPATH)
+INCLUDEDIRS = -I. -I$(INCJPEGPATH)
# No need to change anything below this line
@@ -28,7 +29,7 @@
SOURCES = html.c qp.c image.c dir.c utility.c main.c
$(INST_NAME): $(OBJECTS)
- $(CC) -o $(INST_NAME) $(OBJECTS) $(LIBJPEGPATH)/libjpeg.a $(CLINKFLAGS)
+ $(CC) -o $(INST_NAME) $(OBJECTS) $(CLINKFLAGS) -ljpeg
@echo ""
@echo "Successful compile: $(INST_NAME)"
@echo ""

View File

@ -1,47 +0,0 @@
--- main.c.orig Sun Apr 30 18:43:28 2000
+++ main.c Sun Apr 30 18:44:14 2000
@@ -21,7 +21,7 @@
/* Prototypes */
void do_arg(char *arg);
-void main(int argc, char **argv)
+int main(int argc, char **argv)
{
char cwd[MAXTEXTLEN], yn[1024];
int first_time = 0, i;
@@ -53,7 +53,7 @@
if(!IsDirectory(QP.rootdir))
{
printf("*** ERROR: \"%s\" is not a directory.\n",QP.rootdir);
- return;
+ return 1;
}
chmod(QP.rootdir,0755);
@@ -62,7 +62,7 @@
if(chdir(QP.rootdir) != 0)
{
printf("*** ERROR: Unable to change to directory \"%s\".\n",QP.rootdir);
- return;
+ return 1;
}
/* Read configfile from specified directory. */
@@ -102,7 +102,7 @@
printf(" Execution halted.\n");
printf(" Config file is: %s/%s.\n",BaseFilename(QP.rootdir),QP.configfile);
printf("\n");
- return;
+ return 1;
}
printf("\n");
@@ -169,7 +169,7 @@
printf(" Use the link \"%s/%s\" to view the gallery.\n",BaseFilename(QP.rootdir),QP.index_html);
printf(" Have fun!\n");
printf("\n");
- return;
+ return 0;
}
void do_arg(char *arg)

View File

@ -1,19 +0,0 @@
*** image.c.orig Tue Sep 25 09:25:40 2001
--- image.c Tue Sep 25 09:26:26 2001
***************
*** 205,211 ****
cinfo.image_width = output_width;
cinfo.image_height = output_height;
cinfo.input_components = out_color_components;
! cinfo.in_color_space = JCS_RGB;
/* compression parameters */
jpeg_set_defaults(&cinfo);
--- 205,211 ----
cinfo.image_width = output_width;
cinfo.image_height = output_height;
cinfo.input_components = out_color_components;
! cinfo.in_color_space = dinfo.out_color_space;
/* compression parameters */
jpeg_set_defaults(&cinfo);

View File

@ -1,17 +0,0 @@
--- dir.c.orig Tue Apr 7 03:31:14 1998
+++ dir.c Fri Aug 23 20:08:24 2002
@@ -479,12 +479,12 @@
rmspace(description);
if(!description[0])
{
- sprintf(description,"Description of %s goes here.",
+ sprintf(description,"%s",
img->name);
}
}
else
- sprintf(description,"Description of %s goes here.",
+ sprintf(description,"%s",
img->name);
imgrec_setdescription(img,description);

View File

@ -1,12 +0,0 @@
QuickPics is a unix-based application that creates an HTML web gallery
based on the directory structure and the images therein. All thumbnails
are created by the program using direct calls to the jpeg library for
fast thumbnail creation. One of my main requirements is that it will not
not have to rely on CGI access to run. It also does not need require
Perl or other jpeg libraries. Only the executable 'qp' is needed to
create any gallery of any size.
If you have an image gallery and you are tired of editing all the HTML
pages and resizing thumbnails, try QuickPics.
by Steve Rider - stever@retina.net

View File

@ -1,3 +0,0 @@
bin/qp
share/doc/qp/README
@dirrm share/doc/qp

View File

@ -1,36 +0,0 @@
# New ports collection makefile for: threeDS
# Date created: 5 December 2000
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= threeDS
PORTVERSION= 0.3.1
PORTREVISION= 1
CATEGORIES= graphics python
MASTER_SITES= http://www.demonseed.net/~jp/code/threeDS/
MAINTAINER= ports@FreeBSD.org
COMMENT= A Python module and viewer for loading and displaying models in 3DS format
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/OpenGL/__init__.py:${PORTSDIR}/graphics/py-opengl
USE_PYTHON= yes
DEPRECATED= dead project
EXPIRATION_DATE= 2006-02-28
IGNORE= does not run
do-build:
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -l ${WRKSRC}
do-install:
${MKDIR} ${PREFIX}/share/threeDS
${MKDIR} ${PREFIX}/lib/${PYTHON_VERSION}/site-packages
${RM} -f ${WRKSRC}/*.orig
${INSTALL_DATA} ${WRKSRC}/threeDS.py* ${PREFIX}/lib/${PYTHON_VERSION}/site-packages
${INSTALL_SCRIPT} ${WRKSRC}/view3ds.py* ${PREFIX}/share/threeDS
${LN} -sf ${PREFIX}/share/threeDS/view3ds.py ${PREFIX}/bin/view3ds
.include <bsd.port.mk>

View File

@ -1,3 +0,0 @@
MD5 (threeDS-0.3.1.tar.gz) = d615b23a12a0dd0bb9d91d4965ef47dc
SHA256 (threeDS-0.3.1.tar.gz) = 70795ac6d35c1b3e2aea71d0527afff7a678b65b9b34c9c077c0718c3e009d08
SIZE (threeDS-0.3.1.tar.gz) = 13047

View File

@ -1,5 +0,0 @@
ThreeDS is a Python module for loading and displaying 3D models in the
3DStudio Max 3DS format. It comes with view3DS, a simple model viewer written
in Python.
WWW: http://www.demonseed.net/~jp/code/threeDS/index.html

View File

@ -1,6 +0,0 @@
bin/view3ds
lib/%%PYTHON_VERSION%%/site-packages/threeDS.py
lib/%%PYTHON_VERSION%%/site-packages/threeDS.pyc
share/threeDS/view3ds.py
share/threeDS/view3ds.pyc
@dirrm share/threeDS