As previously announced, remove these broken or obsolete ports.
This commit is contained in:
parent
c56ddf9af1
commit
ff996e3290
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=108672
58 changed files with 0 additions and 1541 deletions
|
@ -49,7 +49,6 @@
|
|||
SUBDIR += arm-rtems-gdb
|
||||
SUBDIR += arm-rtems-objc
|
||||
SUBDIR += as31
|
||||
SUBDIR += as80
|
||||
SUBDIR += asis
|
||||
SUBDIR += asl
|
||||
SUBDIR += asmutils
|
||||
|
@ -1076,7 +1075,6 @@
|
|||
SUBDIR += qextmdi
|
||||
SUBDIR += qmake
|
||||
SUBDIR += qssl
|
||||
SUBDIR += qt-designer
|
||||
SUBDIR += qtez
|
||||
SUBDIR += qtk
|
||||
SUBDIR += ragel
|
||||
|
@ -1236,7 +1234,6 @@
|
|||
SUBDIR += tvision
|
||||
SUBDIR += uclmmbase
|
||||
SUBDIR += ucpp
|
||||
SUBDIR += uisp
|
||||
SUBDIR += umbrello
|
||||
SUBDIR += upnp
|
||||
SUBDIR += ups-debug
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
# New ports collection makefile for: as80
|
||||
# Date created: 02 January 2001
|
||||
# Whom: George Reid <greid@ukug.uk.freebsd.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= as80
|
||||
PORTVERSION= 0.8
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= # dead
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A lightweight 8080/8085 assembler
|
||||
|
||||
DEPRECATED= "mastersite disappeared\; alternatives are available, such as devel/asl"
|
||||
EXPIRATION_DATE= "April 22, 2004"
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
BUILD_WRKSRC= ${WRKSRC}/src
|
||||
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"
|
||||
ALL_TARGET= as80
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/as80 ${PREFIX}/bin
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/as80
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/as80
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
|
@ -1,2 +0,0 @@
|
|||
MD5 (as80-0.8.tar.gz) = 6b002716ce22df6410d54edc926dfb00
|
||||
SIZE (as80-0.8.tar.gz) = 20480
|
|
@ -1,14 +0,0 @@
|
|||
|
||||
$FreeBSD$
|
||||
|
||||
--- README.orig Sat Dec 1 14:17:47 2001
|
||||
+++ README Sat Dec 1 14:18:09 2001
|
||||
@@ -18,7 +18,7 @@
|
||||
This is version 0.8
|
||||
|
||||
|
||||
-usage: asm80 infile [outfile] [-l listfile] [-s symfile]
|
||||
+usage: as80 infile [outfile] [-l listfile] [-s symfile]
|
||||
|
||||
infile is the assembler's input
|
||||
outfile is the binary output file
|
|
@ -1,105 +0,0 @@
|
|||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/as80.c.orig Fri Nov 30 02:34:26 2001
|
||||
+++ src/as80.c Fri Nov 30 02:36:13 2001
|
||||
@@ -26,11 +26,6 @@
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
-
|
||||
-#if SYSTEM == GNU
|
||||
-#include <getopt.h>
|
||||
-#endif
|
||||
-
|
||||
#include "types.h"
|
||||
#include "symtbl.h"
|
||||
#include "as80.h"
|
||||
@@ -218,8 +213,6 @@
|
||||
int
|
||||
init (int argc, char **argv)
|
||||
{
|
||||
-/* on a GNU system we can use getopt to parse command line options */
|
||||
-#if SYSTEM == GNU
|
||||
int index, c;
|
||||
|
||||
/* no proper command line input */
|
||||
@@ -294,78 +287,6 @@
|
||||
break;
|
||||
}
|
||||
}
|
||||
-
|
||||
-#else
|
||||
- /* otherwise we have to do it manually */
|
||||
- int arg = 1;
|
||||
-
|
||||
- puts ("non-GNU system\n");
|
||||
-
|
||||
- /* no proper command line input */
|
||||
- if (argc < 2)
|
||||
- {
|
||||
- fprintf (stderr,
|
||||
- "usage: %s infile [-o outfile] [-l listfile] [-s symfile]\n",
|
||||
- argv[0]);
|
||||
- return ERR_INIT;
|
||||
- }
|
||||
-
|
||||
- /* parse */
|
||||
- while (arg < argc)
|
||||
- {
|
||||
- if (argv[arg][0] != '-')
|
||||
- {
|
||||
- iname = argv[arg];
|
||||
- if ((IN = fopen (iname, "r")) == NULL)
|
||||
- {
|
||||
- perror ("couldn't open input file");
|
||||
- return ERR_INIT;
|
||||
- }
|
||||
- arg = 1;
|
||||
- break;
|
||||
- }
|
||||
- arg++;
|
||||
- }
|
||||
-
|
||||
- while ((arg < argc) && (argv[arg][0] == '-'))
|
||||
- {
|
||||
- if (strcmp (argv[arg], "-o"))
|
||||
- {
|
||||
- if ((OUT = fopen (argv[++arg], "wb")) == NULL)
|
||||
- {
|
||||
- perror ("couldn't topen output file");
|
||||
- return ERR_INIT;
|
||||
- }
|
||||
- doout = 1;
|
||||
- }
|
||||
- else if (strcmp (argv[arg], "-l"))
|
||||
- {
|
||||
- if ((LST = fopen (optarg, "w")) == NULL)
|
||||
- {
|
||||
- perror ("couldn't open list file");
|
||||
- return ERR_INIT;
|
||||
- }
|
||||
- dolist = 1;
|
||||
- }
|
||||
- else if (strcmp (argv[arg], "-s"))
|
||||
- {
|
||||
- if ((SYM = fopen (optarg, "w")) == NULL)
|
||||
- {
|
||||
- perror ("couldn't open symbol file");
|
||||
- return ERR_INIT;
|
||||
- }
|
||||
- dosym = 1;
|
||||
- }
|
||||
- else
|
||||
- {
|
||||
- fprintf (stderr, "unknown option %s\n", argv[arg]);
|
||||
- return ERR_INIT;
|
||||
- }
|
||||
-
|
||||
- arg++;
|
||||
- }
|
||||
-
|
||||
-#endif
|
||||
|
||||
/* open default outputfile */
|
||||
if (doout == 0)
|
|
@ -1,13 +0,0 @@
|
|||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/aux.c.orig Fri Nov 30 02:36:50 2001
|
||||
+++ src/aux.c Fri Nov 30 02:36:51 2001
|
||||
@@ -22,6 +22,7 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
+#include <string.h>
|
||||
#include "aux.h"
|
||||
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/symtbl.c.orig Fri Nov 30 02:35:55 2001
|
||||
+++ src/symtbl.c Fri Nov 30 02:36:08 2001
|
||||
@@ -22,6 +22,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
+#include <string.h>
|
||||
#include "types.h"
|
||||
#include "symtbl.h"
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
As80 is a table-driven assembler for the 8080/8085 line of
|
||||
microprocessors from Intel. It uses cpp for macros and includes.
|
||||
|
||||
WWW: http://www.tstrathmann.de/as80.html
|
|
@ -1,4 +0,0 @@
|
|||
@comment $FreeBSD$
|
||||
bin/as80
|
||||
share/doc/as80/README
|
||||
@dirrm share/doc/as80
|
|
@ -1,61 +0,0 @@
|
|||
# New ports collection makefile for: Qt Designer
|
||||
# Date created: Sat Feb 3 23:04:41 EST 2001
|
||||
# Whom: will
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= qt-designer
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= GUI C++ IDE based on QT
|
||||
|
||||
LIB_DEPENDS+= qt2.4:${PORTSDIR}/x11-toolkits/qt23
|
||||
|
||||
MASTERDIR= ${.CURDIR}/../../x11-toolkits/qt23
|
||||
|
||||
CONFLICTS= qt-3.*
|
||||
BROKEN= "fails to install"
|
||||
DEPRECATED= ${BROKEN}
|
||||
EXPIRATION_DATE=2004-04-21
|
||||
|
||||
WRKSRC= ${WRKDIR}/qt-${PORTVERSION}
|
||||
PATCH_WRKSRC= ${WRKSRC}
|
||||
PKGDIR= ${.CURDIR}
|
||||
MAKE_ENV= QTDIR=${PREFIX} LD_LIBRARY_PATH=${PREFIX}/lib PREFIX=${PREFIX}
|
||||
ALL_TARGET= sub-tools
|
||||
USE_REINPLACE= yes
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} -e "s@-fno-exceptions@& -I${X11BASE}/include/qt2@g" ${CONFIG}
|
||||
|
||||
do-build:
|
||||
(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
|
||||
|
||||
qt-pre-configure:
|
||||
${REINPLACE_CMD} -e 's@\(DESTDIR = \)\$$(QTDIR)/bin@\1../../../bin@' \
|
||||
${WRKSRC}/tools/designer/designer/Makefile.in
|
||||
${REINPLACE_CMD} -e 's@\(sub-tools: \)sub-src @\1@' ${WRKSRC}/Makefile
|
||||
${REINPLACE_CMD} -e 's@\$$\(MAKE\) util@@; s@\$$\(MAKE\) uic@@; \
|
||||
s@util \\@designer@g; s@uic \\@@g; \
|
||||
s@'"`printf '\t\t'`"'designer@@g' ${WRKSRC}/tools/designer/Makefile.in
|
||||
${REINPLACE_CMD} -e 's@getenv( "QTDIR" )@QT_PREFIX@g; \
|
||||
s@/tools/designer/templates@/share/qt2/designer/templates@g' \
|
||||
${WRKSRC}/tools/designer/designer/newformimpl.cpp
|
||||
|
||||
.include "${MASTERDIR}/Makefile"
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${PREFIX}/share/qt2/designer/templates \
|
||||
${PREFIX}/share/doc/qt2/html/designer/arrows \
|
||||
${PREFIX}/share/doc/qt2/html/designer/figures
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/bin/designer ${PREFIX}/bin
|
||||
${INSTALL_DATA} ${WRKSRC}/tools/designer/templates/* \
|
||||
${PREFIX}/share/qt2/designer/templates
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/html/designer/*.html \
|
||||
${PREFIX}/share/doc/qt2/html/designer
|
||||
.for IMGDIR in arrows figures
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/html/designer/${IMGDIR}/*.png \
|
||||
${PREFIX}/share/doc/qt2/html/designer/${IMGDIR}
|
||||
.endfor
|
|
@ -1,4 +0,0 @@
|
|||
Qt Designer is a GUI IDE based on Qt 2.x made by
|
||||
the trolltech people.
|
||||
|
||||
WWW: http://www.trolltech.com/products/qt/designer/
|
|
@ -1,164 +0,0 @@
|
|||
share/qt2/designer/templates/Tab-Dialog.ui
|
||||
share/qt2/designer/templates/Dialog_with_Buttons_(Right).ui
|
||||
share/qt2/designer/templates/Dialog_with_Buttons_(Bottom).ui
|
||||
share/qt2/designer/templates/Configuration_Dialog.ui
|
||||
share/doc/qt2/html/designer/preface.html
|
||||
share/doc/qt2/html/designer/part2index.html
|
||||
share/doc/qt2/html/designer/part1index.html
|
||||
share/doc/qt2/html/designer/figures/whatsthis.png
|
||||
share/doc/qt2/html/designer/figures/vlayout.png
|
||||
share/doc/qt2/html/designer/figures/undo.png
|
||||
share/doc/qt2/html/designer/figures/topicchooser.png
|
||||
share/doc/qt2/html/designer/figures/toolbutton.png
|
||||
share/doc/qt2/html/designer/figures/title.png
|
||||
share/doc/qt2/html/designer/figures/textview.png
|
||||
share/doc/qt2/html/designer/figures/textbrowser.png
|
||||
share/doc/qt2/html/designer/figures/testmode.png
|
||||
share/doc/qt2/html/designer/figures/tabwidget.png
|
||||
share/doc/qt2/html/designer/figures/taborderform.png
|
||||
share/doc/qt2/html/designer/figures/startup.png
|
||||
share/doc/qt2/html/designer/figures/spinbox.png
|
||||
share/doc/qt2/html/designer/figures/spacer.png
|
||||
share/doc/qt2/html/designer/figures/slots.png
|
||||
share/doc/qt2/html/designer/figures/slider.png
|
||||
share/doc/qt2/html/designer/figures/right.png
|
||||
share/doc/qt2/html/designer/figures/redo.png
|
||||
share/doc/qt2/html/designer/figures/radiobutton.png
|
||||
share/doc/qt2/html/designer/figures/qtlogo.png
|
||||
share/doc/qt2/html/designer/figures/pushbutton.png
|
||||
share/doc/qt2/html/designer/figures/progress.png
|
||||
share/doc/qt2/html/designer/figures/print.png
|
||||
share/doc/qt2/html/designer/figures/preferences.png
|
||||
share/doc/qt2/html/designer/figures/pointer.png
|
||||
share/doc/qt2/html/designer/figures/pizza1screenshot.png
|
||||
share/doc/qt2/html/designer/figures/pixlabel.png
|
||||
share/doc/qt2/html/designer/figures/paletteeditor.png
|
||||
share/doc/qt2/html/designer/figures/ordertool.png
|
||||
share/doc/qt2/html/designer/figures/onecheckbox.png
|
||||
share/doc/qt2/html/designer/figures/objecthierarchy.png
|
||||
share/doc/qt2/html/designer/figures/newformdialog.png
|
||||
share/doc/qt2/html/designer/figures/newform.png
|
||||
share/doc/qt2/html/designer/figures/multilineedit.png
|
||||
share/doc/qt2/html/designer/figures/load.png
|
||||
share/doc/qt2/html/designer/figures/listview.png
|
||||
share/doc/qt2/html/designer/figures/listbox.png
|
||||
share/doc/qt2/html/designer/figures/lineedit.png
|
||||
share/doc/qt2/html/designer/figures/line.png
|
||||
share/doc/qt2/html/designer/figures/left.png
|
||||
share/doc/qt2/html/designer/figures/lcdnumber.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep9.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep7.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep6.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep5.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep4.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep3.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep2.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep11.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep10.png
|
||||
share/doc/qt2/html/designer/figures/layouttutstep1.png
|
||||
share/doc/qt2/html/designer/figures/layout.png
|
||||
share/doc/qt2/html/designer/figures/label.png
|
||||
share/doc/qt2/html/designer/figures/image.png
|
||||
share/doc/qt2/html/designer/figures/iconview.png
|
||||
share/doc/qt2/html/designer/figures/home.png
|
||||
share/doc/qt2/html/designer/figures/helpdialog.png
|
||||
share/doc/qt2/html/designer/figures/help.png
|
||||
share/doc/qt2/html/designer/figures/groupbox.png
|
||||
share/doc/qt2/html/designer/figures/frame.png
|
||||
share/doc/qt2/html/designer/figures/fourcheckboxes.png
|
||||
share/doc/qt2/html/designer/figures/formsettings.png
|
||||
share/doc/qt2/html/designer/figures/form.png
|
||||
share/doc/qt2/html/designer/figures/firstdialog.png
|
||||
share/doc/qt2/html/designer/figures/filesave.png
|
||||
share/doc/qt2/html/designer/figures/filenew.png
|
||||
share/doc/qt2/html/designer/figures/f001.png
|
||||
share/doc/qt2/html/designer/figures/emptydialog.png
|
||||
share/doc/qt2/html/designer/figures/editslots.png
|
||||
share/doc/qt2/html/designer/figures/editraise.png
|
||||
share/doc/qt2/html/designer/figures/editpaste.png
|
||||
share/doc/qt2/html/designer/figures/editmultiline.png
|
||||
share/doc/qt2/html/designer/figures/editlower.png
|
||||
share/doc/qt2/html/designer/figures/editlistview.png
|
||||
share/doc/qt2/html/designer/figures/editlistbox.png
|
||||
share/doc/qt2/html/designer/figures/editiconview.png
|
||||
share/doc/qt2/html/designer/figures/edithlayout.png
|
||||
share/doc/qt2/html/designer/figures/editgrid.png
|
||||
share/doc/qt2/html/designer/figures/editdelete.png
|
||||
share/doc/qt2/html/designer/figures/editcut.png
|
||||
share/doc/qt2/html/designer/figures/editcustomwidgets.png
|
||||
share/doc/qt2/html/designer/figures/editcopy.png
|
||||
share/doc/qt2/html/designer/figures/customwidgets.png
|
||||
share/doc/qt2/html/designer/figures/customwidget.png
|
||||
share/doc/qt2/html/designer/figures/connecttool.png
|
||||
share/doc/qt2/html/designer/figures/connectionviewer.png
|
||||
share/doc/qt2/html/designer/figures/connections.png
|
||||
share/doc/qt2/html/designer/figures/connectionedit.png
|
||||
share/doc/qt2/html/designer/figures/combobox.png
|
||||
share/doc/qt2/html/designer/figures/checkbox.png
|
||||
share/doc/qt2/html/designer/figures/buttongroupovercheckboxes.png
|
||||
share/doc/qt2/html/designer/figures/buttongroup.png
|
||||
share/doc/qt2/html/designer/figures/breaklayout.png
|
||||
share/doc/qt2/html/designer/figures/adjustsize.png
|
||||
share/doc/qt2/html/designer/figures/aboutdialog.png
|
||||
share/doc/qt2/html/designer/feedback.html
|
||||
share/doc/qt2/html/designer/colophon.html
|
||||
share/doc/qt2/html/designer/chap9_6.html
|
||||
share/doc/qt2/html/designer/chap9_5.html
|
||||
share/doc/qt2/html/designer/chap9_4.html
|
||||
share/doc/qt2/html/designer/chap9_3.html
|
||||
share/doc/qt2/html/designer/chap9_2.html
|
||||
share/doc/qt2/html/designer/chap9_1.html
|
||||
share/doc/qt2/html/designer/chap8_1.html
|
||||
share/doc/qt2/html/designer/chap7_9.html
|
||||
share/doc/qt2/html/designer/chap7_8.html
|
||||
share/doc/qt2/html/designer/chap7_7.html
|
||||
share/doc/qt2/html/designer/chap7_6.html
|
||||
share/doc/qt2/html/designer/chap7_5.html
|
||||
share/doc/qt2/html/designer/chap7_4.html
|
||||
share/doc/qt2/html/designer/chap7_3.html
|
||||
share/doc/qt2/html/designer/chap7_2.html
|
||||
share/doc/qt2/html/designer/chap7_16.html
|
||||
share/doc/qt2/html/designer/chap7_15.html
|
||||
share/doc/qt2/html/designer/chap7_14.html
|
||||
share/doc/qt2/html/designer/chap7_13.html
|
||||
share/doc/qt2/html/designer/chap7_12.html
|
||||
share/doc/qt2/html/designer/chap7_11.html
|
||||
share/doc/qt2/html/designer/chap7_10.html
|
||||
share/doc/qt2/html/designer/chap7_1.html
|
||||
share/doc/qt2/html/designer/chap6_7.html
|
||||
share/doc/qt2/html/designer/chap6_6.html
|
||||
share/doc/qt2/html/designer/chap6_5.html
|
||||
share/doc/qt2/html/designer/chap6_4.html
|
||||
share/doc/qt2/html/designer/chap6_3.html
|
||||
share/doc/qt2/html/designer/chap6_2.html
|
||||
share/doc/qt2/html/designer/chap6_1.html
|
||||
share/doc/qt2/html/designer/chap5_6.html
|
||||
share/doc/qt2/html/designer/chap5_5.html
|
||||
share/doc/qt2/html/designer/chap5_4.html
|
||||
share/doc/qt2/html/designer/chap5_3.html
|
||||
share/doc/qt2/html/designer/chap5_2.html
|
||||
share/doc/qt2/html/designer/chap5_1.html
|
||||
share/doc/qt2/html/designer/chap4_2.html
|
||||
share/doc/qt2/html/designer/chap4_1.html
|
||||
share/doc/qt2/html/designer/chap3_4.html
|
||||
share/doc/qt2/html/designer/chap3_3.html
|
||||
share/doc/qt2/html/designer/chap3_2.html
|
||||
share/doc/qt2/html/designer/chap3_1.html
|
||||
share/doc/qt2/html/designer/chap2_4.html
|
||||
share/doc/qt2/html/designer/chap2_3.html
|
||||
share/doc/qt2/html/designer/chap2_2.html
|
||||
share/doc/qt2/html/designer/chap2_1.html
|
||||
share/doc/qt2/html/designer/chap1_1.html
|
||||
share/doc/qt2/html/designer/chap10_1.html
|
||||
share/doc/qt2/html/designer/book1.html
|
||||
share/doc/qt2/html/designer/arrows/up.png
|
||||
share/doc/qt2/html/designer/arrows/right.png
|
||||
share/doc/qt2/html/designer/arrows/left.png
|
||||
share/doc/qt2/html/designer/arrows/home.png
|
||||
bin/designer
|
||||
@dirrm share/qt2/designer/templates
|
||||
@dirrm share/qt2/designer
|
||||
@dirrm share/qt2
|
||||
@dirrm share/doc/qt2/html/designer/figures
|
||||
@dirrm share/doc/qt2/html/designer/arrows
|
||||
@dirrm share/doc/qt2/html/designer
|
|
@ -1,22 +0,0 @@
|
|||
# New ports collection makefile for: uisp
|
||||
# Date created: 17 Feb 2001
|
||||
# Whom: Bruno Schwander<bruno@tinkerbox.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= uisp
|
||||
PORTVERSION= 20020626
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A versatile programmer for atmel AVR microcontrollers
|
||||
|
||||
DEPRECATED= "distfile unfetchable\; superceded by devel/avrdude"
|
||||
EXPIRATION_DATE= "April 17, 2004"
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
.include <bsd.port.mk>
|
|
@ -1,2 +0,0 @@
|
|||
MD5 (uisp-20020626.tar.gz) = aeb78302d0127d692c03847a81174eca
|
||||
SIZE (uisp-20020626.tar.gz) = 111834
|
|
@ -1,13 +0,0 @@
|
|||
|
||||
$FreeBSD$
|
||||
|
||||
--- src/DAPA.C.orig Thu Jun 13 15:17:24 2002
|
||||
+++ src/DAPA.C Thu Nov 21 20:37:08 2002
|
||||
@@ -72,6 +72,7 @@
|
||||
|
||||
#elif defined(__FreeBSD__) && defined(__i386__)
|
||||
|
||||
+#include <sys/types.h>
|
||||
#include <sys/fcntl.h>
|
||||
#include <machine/cpufunc.h>
|
||||
#include <machine/sysarch.h>
|
|
@ -1,14 +0,0 @@
|
|||
|
||||
$FreeBSD$
|
||||
|
||||
--- Makefile.in.orig Thu Nov 21 20:34:28 2002
|
||||
+++ Makefile.in Thu Nov 21 20:35:07 2002
|
||||
@@ -327,7 +327,7 @@
|
||||
install-exec-am:
|
||||
install-exec: install-exec-recursive
|
||||
|
||||
-install-data-am: install-data-local
|
||||
+install-data-am: # install-data-local
|
||||
install-data: install-data-recursive
|
||||
|
||||
install-am: all-am
|
|
@ -1,10 +0,0 @@
|
|||
This is aport of uisp, a tool to program an atmel AVR microcontroller
|
||||
through your parallel or serial port. Several programming hardware are
|
||||
supported, the only one I have tested and the simplest one (no component)
|
||||
is the in-circuit parallel programmer. Schematics are available online.
|
||||
|
||||
WWW: http://savannah.nongnu.org/projects/uisp
|
||||
|
||||
- Bruno
|
||||
|
||||
bruno@tinkerbox.org
|
|
@ -1,2 +0,0 @@
|
|||
@comment $FreeBSD$
|
||||
bin/uisp
|
|
@ -1,51 +0,0 @@
|
|||
# ports collection Makefile for: weedns_sc
|
||||
# Whom: Matthias Andree <matthias.andree@gmx.de>
|
||||
# Date created: 2003-05-22
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= weedns_sc
|
||||
PORTVERSION= 1.19
|
||||
CATEGORIES= dns perl5
|
||||
MASTER_SITES= http://www.weedns.com/clients/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= matthias.andree@gmx.de
|
||||
COMMENT= Client to update whyi.org dynamic DNS service
|
||||
|
||||
RUN_DEPENDS= ${SITE_PERL}/HTTP/Request/Common.pm:${PORTSDIR}/www/p5-libwww \
|
||||
${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \
|
||||
${SITE_PERL}/URI/Escape.pm:${PORTSDIR}/net/p5-URI
|
||||
|
||||
BROKEN= "Unfetchable"
|
||||
DEPRECATED= "corresponding server software has been switched to an incompatible protocol"
|
||||
EXPIRATION_DATE= "April 7, 2004"
|
||||
|
||||
USE_PERL5= yes
|
||||
USE_REINPLACE= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} "s|^#!/usr/bin/perl|#!${PERL}|" ${WRKSRC}/bin/skeleton_client.pl
|
||||
${REINPLACE_CMD} "s|^#!/usr/bin/perl|#!${PERL}|" ${WRKSRC}/bin/smtp_ip.pl
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${PREFIX}/bin
|
||||
${MKDIR} ${PREFIX}/etc
|
||||
${MKDIR} ${SITE_PERL}/WeedNS
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/bin/skeleton_client.pl ${PREFIX}/bin
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/bin/smtp_ip.pl ${PREFIX}/bin
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/lib/WeedNS/Client.pm ${SITE_PERL}/WeedNS
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
${INSTALL_MAN} ${WRKSRC}/skeleton_client.html ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PERL_LEVEL} < 500600
|
||||
IGNORE= "requires Perl 5.6+. Install lang/perl5, run use.perl port, retry"
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
|
@ -1 +0,0 @@
|
|||
MD5 (weedns_sc-1.19.tgz) = 8a9ee8b11e34d7820f37704ba3bb6fcc
|
|
@ -1,5 +0,0 @@
|
|||
weedns_sc is the "Skeleton Client" to the whyI (WeedNS, yi.org)
|
||||
dynamic Domain Name Service (DNS). It allows updating your IP and maintenance
|
||||
(add, change, remove) of other DNS records for your yi.org subdomain.
|
||||
|
||||
WWW: http://www.weedns.com/
|
|
@ -1,6 +0,0 @@
|
|||
bin/skeleton_client.pl
|
||||
bin/smtp_ip.pl
|
||||
%%SITE_PERL%%/WeedNS/Client.pm
|
||||
%%PORTDOCS%%%%DOCSDIR%%/skeleton_client.html
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
@dirrm %%SITE_PERL%%/WeedNS
|
|
@ -16,7 +16,6 @@
|
|||
SUBDIR += bwbasic
|
||||
SUBDIR += caml-light
|
||||
SUBDIR += ccscript
|
||||
SUBDIR += cel
|
||||
SUBDIR += chameleon
|
||||
SUBDIR += chicken
|
||||
SUBDIR += cim
|
||||
|
@ -27,7 +26,6 @@
|
|||
SUBDIR += cmucl-extra
|
||||
SUBDIR += cocor
|
||||
SUBDIR += compaq-cc
|
||||
SUBDIR += crossgo32-f77
|
||||
SUBDIR += cu-prolog
|
||||
SUBDIR += cyclone
|
||||
SUBDIR += dice
|
||||
|
|
|
@ -1,54 +0,0 @@
|
|||
# New ports collection makefile for: cel
|
||||
# Date created: 1 January 2001
|
||||
# Whom: George Reid <greid@ukug.uk.freebsd.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= cel
|
||||
PORTVERSION= 0.8.5
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= # none
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A small, simple prototype-based OO language
|
||||
|
||||
DEPRECATED= "probable abandonware: mastersite disappeared Jan 2004\; only works on i386"
|
||||
EXPIRATION_DATE= "May 5, 2004"
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_REINPLACE= yes
|
||||
|
||||
PORTDOCS= CoreArchitecture.html DefaultProtos Linker.html \
|
||||
Logs.html ProtoLanguage.html README SimpleDataFormat.html \
|
||||
Threads activation.html stackframe structure.html todo.html
|
||||
PLIST_FILES= bin/cel
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${ARCH} != "i386"
|
||||
BROKEN= "Does not compile on !i386"
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} -e "s,-fno-omit-frame-pointer,${CFLAGS}," \
|
||||
${WRKSRC}/hash/Makefile ${WRKSRC}/kits/Makefile.unix \
|
||||
${WRKSRC}/vm/Makefile.unix
|
||||
|
||||
do-configure:
|
||||
@cd ${WRKSRC}; ${SH} ./config.unix
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/vm/cel ${PREFIX}/bin
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/cel
|
||||
.for F in ${PORTDOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/doc/$F ${PREFIX}/share/doc/cel
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
|
@ -1,2 +0,0 @@
|
|||
MD5 (cel-0.8.5.tgz) = 27c466b2e16cd580c5444d64b9ec90a3
|
||||
SIZE (cel-0.8.5.tgz) = 168254
|
|
@ -1,10 +0,0 @@
|
|||
--- Makefile.orig Thu Nov 20 17:23:15 2003
|
||||
+++ Makefile Thu Nov 20 17:23:32 2003
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
SUBDIRS= hash vm
|
||||
SUBDIRS2= kits
|
||||
-MAKE= make
|
||||
|
||||
all:
|
||||
for i in $(SUBDIRS); do \
|
|
@ -1,10 +0,0 @@
|
|||
--- vm/config.h.orig Thu Nov 20 20:04:10 2003
|
||||
+++ vm/config.h Thu Nov 20 20:04:25 2003
|
||||
@@ -15,6 +15,7 @@
|
||||
|
||||
#ifdef unix
|
||||
|
||||
+#include <time.h>
|
||||
#include <utime.h>
|
||||
#include <errno.h>
|
||||
#include <sys/types.h>
|
|
@ -1,11 +0,0 @@
|
|||
Cel is a computer language. In particular it is of the
|
||||
prototype-based, object oriented variety.
|
||||
|
||||
It was meant to be high-level, small, simple, and very OO. It's
|
||||
syntax is very similar to Self (which is almost like Smalltalk).
|
||||
Cel was influenced primarily by the language Self. Other strong
|
||||
influencers were Smalltalk, Forth, Newtonscript, Objective-C, and
|
||||
Python.
|
||||
|
||||
- George Reid
|
||||
greid@ukug.uk.freebsd.org
|
|
@ -1,64 +0,0 @@
|
|||
# Ports collection makefile for: crossgo32-f77
|
||||
# Date created: 19 September 2000
|
||||
# Whom: Huidae Cho <hdcho@geni.knu.ac.kr>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= crossgo32-f77
|
||||
PORTVERSION= 2.95.2
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= # none
|
||||
DISTNAME= f77-freebsd.0.3
|
||||
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} g772952b.zip
|
||||
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= G2c libraries and compatibility for DJGPP V2 crossgo32 crosscompiler
|
||||
|
||||
DEPRECATED= "project abandoned, mastersite long gone"
|
||||
EXPIRATION_DATE= "May 5, 2004"
|
||||
|
||||
EXTRACT_DEPENDS+=unzip:${PORTSDIR}/archivers/unzip
|
||||
.if !defined(GNU_CPP)
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/fpp:${PORTSDIR}/devel/fpp
|
||||
.endif
|
||||
RUN_DEPENDS+= ${LOCALBASE}/bin/f2c:${PORTSDIR}/lang/f2c \
|
||||
${LOCALBASE}/i386-go32/bin/gcc:${PORTSDIR}/devel/crossgo32-djgpp2
|
||||
|
||||
# Set F77NAME to the name of the Fortran 77 wrapper.
|
||||
F77NAME= ftn77
|
||||
GCCVERSION= 2.952
|
||||
ONLY_FOR_ARCHS= i386
|
||||
|
||||
MAKE_ARGS+= CFLAGS+=" -DPP_COMMAND='\"/usr/bin/cpp\"' \
|
||||
-DF2C_COMMAND='\"${LOCALBASE}/bin/f2c\"'"
|
||||
.if !defined(GNU_CPP)
|
||||
MAKE_ARGS+= CFLAGS+=" -DSUN_FPP"
|
||||
.endif
|
||||
MAKE_ARGS+= -DF2C_INCLUDEDIR='\"-I${LOCALBASE}/i386-go32/include\"' \
|
||||
-DF2C_LIBDIR='\"-I${LOCALBASE}/i386-go32/lib\"' \
|
||||
-DCC_COMMAND='\"${LOCALBASE}/bin/i386-go32-gcc\"'
|
||||
|
||||
ALL_TARGET= depend all
|
||||
|
||||
post-extract:
|
||||
if ! (cd ${WRKDIR} && \
|
||||
unzip -q ${_DISTDIR}g772952b.zip -d ${WRKDIR} \
|
||||
lib/gcc-lib/djgpp/${GCCVERSION}/libg2c.a \
|
||||
lib/gcc-lib/djgpp/${GCCVERSION}/include/g2c.h);\
|
||||
then \
|
||||
exit 1; \
|
||||
fi
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} \
|
||||
${WRKDIR}/lib/gcc-lib/djgpp/${GCCVERSION}/libg2c.a \
|
||||
${PREFIX}/i386-go32/lib/libf2c.a
|
||||
${INSTALL_DATA} \
|
||||
${WRKDIR}/lib/gcc-lib/djgpp/${GCCVERSION}/include/g2c.h \
|
||||
${PREFIX}/i386-go32/include/f2c.h
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/f77 ${PREFIX}/i386-go32/bin/f77
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/f77 ${PREFIX}/bin/i386-go32-f77
|
||||
|
||||
.include <bsd.port.mk>
|
|
@ -1,4 +0,0 @@
|
|||
MD5 (f77-freebsd.0.3.tar.gz) = c5b7cc72f120c1ae2fe01e6628116f1a
|
||||
SIZE (f77-freebsd.0.3.tar.gz) = 9657
|
||||
MD5 (g772952b.zip) = 66eaf1479778aa0aebaea882a914b286
|
||||
SIZE (g772952b.zip) = 1514192
|
|
@ -1,13 +0,0 @@
|
|||
This package installs g2c libraries and f77 wrapper for DJGPP V2
|
||||
crossgo32 crosscompiler.
|
||||
|
||||
Simple usage:
|
||||
i386-go32-f77 -o fortran.exe fortran.f
|
||||
|
||||
The above command creates the MS-DOS executable fortran.exe file from
|
||||
fortran.f fortran77 source file.
|
||||
|
||||
Enjoy.
|
||||
|
||||
- Huidae Cho
|
||||
hdcho@geni.cemtlo.com
|
|
@ -1,5 +0,0 @@
|
|||
@comment $FreeBSD: /tmp/pcvs/ports/lang/crossgo32-f77/Attic/pkg-plist,v 1.2 2001-03-10 06:46:32 dinoex Exp $
|
||||
bin/i386-go32-f77
|
||||
i386-go32/bin/f77
|
||||
i386-go32/include/f2c.h
|
||||
i386-go32/lib/libf2c.a
|
|
@ -97,7 +97,6 @@
|
|||
SUBDIR += gkrellmmailwatch2
|
||||
SUBDIR += glacier
|
||||
SUBDIR += glbiff
|
||||
SUBDIR += gmail
|
||||
SUBDIR += gmime
|
||||
SUBDIR += gmime2
|
||||
SUBDIR += gnarwl
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
# New ports collection makefile for: gmime
|
||||
# Date created: 14 Apr 2001
|
||||
# Whom: Bas Kruit <baskruit@bsltwr.dnsalias.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= gmail
|
||||
PORTVERSION= 0.7.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= http://bsltwr.dnsalias.org/ftp/pub/gmail/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= GNOME client that stores email retrieved with pop in a mysql database
|
||||
|
||||
LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client \
|
||||
gmime.6:${PORTSDIR}/mail/gmime
|
||||
|
||||
USE_X_PREFIX= YES
|
||||
USE_GMAKE= YES
|
||||
#USE_GNOME= YES
|
||||
USE_LIBTOOL_VER=13
|
||||
|
||||
BROKEN= project is dead and port unmaintained
|
||||
DEPRECATED= ${BROKEN}
|
||||
EXPIRATION_DATE=2004-04-21
|
||||
|
||||
.include <bsd.port.mk>
|
|
@ -1,2 +0,0 @@
|
|||
MD5 (gmail-0.7.0.tar.gz) = 1268f301c234cb4833c3214b5bc446a8
|
||||
SIZE (gmail-0.7.0.tar.gz) = 353145
|
|
@ -1,9 +0,0 @@
|
|||
Gmail is a gnome email client, using a Mysql database for email storage.
|
||||
It is fast, light and functional. Suitable for very high volumes of email.
|
||||
|
||||
Mail is retreived through POP.
|
||||
|
||||
Wayne Schuller <k_wayne@linuxpower.org>
|
||||
WWW: http://gmail.linuxpower.org/
|
||||
|
||||
[ Port maintained by S. Kruit <baskruit@bsltwr.dnsalias.org> ]
|
|
@ -1,67 +0,0 @@
|
|||
bin/gmail
|
||||
etc/sound/events/gmail.soundlist
|
||||
share/gnome/help/gmail/C/topic.dat
|
||||
share/gnome/help/gmail/C/gmail/gmail-images/appearancetab.jpg
|
||||
share/gnome/help/gmail/C/gmail/gmail-images/compose.jpg
|
||||
share/gnome/help/gmail/C/gmail/gmail-images/identitytab.jpg
|
||||
share/gnome/help/gmail/C/gmail/gmail-images/mailserverstab.jpg
|
||||
share/gnome/help/gmail/C/gmail/gmail-images/mailsetupproperties.jpg
|
||||
share/gnome/help/gmail/C/gmail/gmail-images/mysqltab.jpg
|
||||
share/gnome/help/gmail/C/gmail/gmail-images/vfolderproperties.jpg
|
||||
share/gnome/help/gmail/C/gmail/addressbook.html
|
||||
share/gnome/help/gmail/C/gmail/advanced.html
|
||||
share/gnome/help/gmail/C/gmail/authors.html
|
||||
share/gnome/help/gmail/C/gmail/caching.html
|
||||
share/gnome/help/gmail/C/gmail/features.html
|
||||
share/gnome/help/gmail/C/gmail/feedback.html
|
||||
share/gnome/help/gmail/C/gmail/fields.html
|
||||
share/gnome/help/gmail/C/gmail/forwardingemail.html
|
||||
share/gnome/help/gmail/C/gmail/how.html
|
||||
share/gnome/help/gmail/C/gmail/index.html
|
||||
share/gnome/help/gmail/C/gmail/introduction.html
|
||||
share/gnome/help/gmail/C/gmail/ln15.html
|
||||
share/gnome/help/gmail/C/gmail/managingvfolders.html
|
||||
share/gnome/help/gmail/C/gmail/prefs-0.html
|
||||
share/gnome/help/gmail/C/gmail/prefs-1.html
|
||||
share/gnome/help/gmail/C/gmail/prefs-2.html
|
||||
share/gnome/help/gmail/C/gmail/prefs-3.html
|
||||
share/gnome/help/gmail/C/gmail/tricks.html
|
||||
share/gnome/help/gmail/C/gmail/replyingtoemail.html
|
||||
share/gnome/help/gmail/C/gmail/sendingemail.html
|
||||
share/gnome/help/gmail/C/gmail/tuning.html
|
||||
share/gnome/help/gmail/C/gmail/using.html
|
||||
share/gnome/help/gmail/C/gmail/vfolder.html
|
||||
share/gnome/help/gmail/C/gmail/works.html
|
||||
share/gnome/help/gmail/C/gmail/docbook.css
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/caution.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/home.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/important.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/next.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/note.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/prev.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/tip.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/toc-blank.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/toc-minus.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/toc-plus.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/up.gif
|
||||
share/gnome/help/gmail/C/faq/stylesheet-images/warning.gif
|
||||
share/gnome/help/gmail/C/faq/index.html
|
||||
share/gnome/help/gmail/C/faq/docbook.css
|
||||
share/gnome/apps/Internet/gmail.desktop
|
||||
share/pixmaps/gmail_icon.png
|
||||
share/gmail/0.7.0/glade/message.glade
|
||||
share/gmail/0.7.0/glade/compose.glade
|
||||
share/gmail/0.7.0/glade/vfolder_properties.glade
|
||||
share/gmail/0.7.0/glade/preferences.glade
|
||||
share/gmail/0.7.0/glade/search.glade
|
||||
@dirrm share/gnome/help/gmail/C/gmail/gmail-images
|
||||
@dirrm share/gnome/help/gmail/C/gmail/stylesheet-images
|
||||
@dirrm share/gnome/help/gmail/C/gmail
|
||||
@dirrm share/gnome/help/gmail/C/faq/stylesheet-images
|
||||
@dirrm share/gnome/help/gmail/C/faq
|
||||
@dirrm share/gnome/help/gmail/C
|
||||
@dirrm share/gnome/help/gmail
|
||||
@dirrm share/pixmaps
|
||||
@dirrm share/gmail/0.7.0/glade
|
||||
@dirrm share/gmail/0.7.0
|
||||
@dirrm share/gmail
|
|
@ -255,7 +255,6 @@
|
|||
SUBDIR += lc
|
||||
SUBDIR += less
|
||||
SUBDIR += libelysium
|
||||
SUBDIR += libh
|
||||
SUBDIR += libhome
|
||||
SUBDIR += libmcal
|
||||
SUBDIR += libutf
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
# New ports collection makefile for: lib
|
||||
# Date Created: 19 September 2000
|
||||
# Whom: nra
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= libh
|
||||
PORTVERSION= 0.2.2
|
||||
CATEGORIES= misc
|
||||
MASTER_SITES= http://rtp.freebsd.org/~libh/distfiles/
|
||||
|
||||
MAINTAINER= anarcat@anarcat.ath.cx
|
||||
COMMENT= FreeBSD's next-generation sysinstall/package management tool
|
||||
|
||||
BROKEN= "fails to compile due to recent changes elsewhere"
|
||||
DEPRECATED= ${BROKEN}
|
||||
EXPIRATION_DATE=2004-04-22
|
||||
|
||||
LIB_DEPENDS= tcl83.1:${PORTSDIR}/lang/tcl83 \
|
||||
tvision.0:${PORTSDIR}/devel/tvision
|
||||
BUILD_DEPENDS= ${X11BASE}/lib/libqt2.a:${PORTSDIR}/x11-toolkits/qt2-static
|
||||
|
||||
USE_QT_VER= 2
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
# until we find a way of including ${WRKSRC}/${PORTNAME}/Makefile.uitype
|
||||
# only after "extract"
|
||||
UITYPE?= text+graphics
|
||||
|
||||
do-build:
|
||||
(cd ${BUILD_WRKSRC}; ${MAKE} ${MAKE_ARGS} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET} UITYPE=${UITYPE})
|
||||
|
||||
.include <bsd.port.mk>
|
|
@ -1,2 +0,0 @@
|
|||
MD5 (libh-0.2.2.tar.gz) = b3c46ca664e84093f9c5dbe874033518
|
||||
SIZE (libh-0.2.2.tar.gz) = 296003
|
|
@ -1 +0,0 @@
|
|||
/1 :pserver:anonymous@usw4.freebsd.org:2401/home/libh/cvs A
|
|
@ -1,290 +0,0 @@
|
|||
libh-0.2.2/libh/Makefile
|
||||
libh-0.2.2/libh/BUGS
|
||||
libh-0.2.2/libh/bin/setup/Makefile
|
||||
libh-0.2.2/libh/bin/setup/setup.tcl
|
||||
libh-0.2.2/libh/bin/setup/setup/Makefile
|
||||
libh-0.2.2/libh/bin/setup/setup/fetch.c
|
||||
libh-0.2.2/libh/bin/setup/setup/get_files.c
|
||||
libh-0.2.2/libh/bin/setup/setup/main.c
|
||||
libh-0.2.2/libh/bin/setup/setup/run.c
|
||||
libh-0.2.2/libh/bin/setup/setup/system.c
|
||||
libh-0.2.2/libh/bin/Makefile
|
||||
libh-0.2.2/libh/bin/tclh/Makefile
|
||||
libh-0.2.2/libh/bin/tclh/tclh.cc
|
||||
libh-0.2.2/libh/bin/regression/file/Makefile
|
||||
libh-0.2.2/libh/bin/regression/file/test_stub.cc
|
||||
libh-0.2.2/libh/bin/regression/fstab/Makefile
|
||||
libh-0.2.2/libh/bin/regression/fstab/fstab_test.cc
|
||||
libh-0.2.2/libh/doc/api/Configuration.txt
|
||||
libh-0.2.2/libh/doc/api/H.txt
|
||||
libh-0.2.2/libh/doc/api/HObjectsReferences.txt
|
||||
libh-0.2.2/libh/doc/api/Hui.txt
|
||||
libh-0.2.2/libh/doc/api/Hui_ButtonWidget.txt
|
||||
libh-0.2.2/libh/doc/api/Hui_GroupWidget.txt
|
||||
libh-0.2.2/libh/doc/api/Hui_InputLineWidget.txt
|
||||
libh-0.2.2/libh/doc/api/Hui_ListboxWidget.txt
|
||||
libh-0.2.2/libh/doc/api/Hui_Widget.txt
|
||||
libh-0.2.2/libh/doc/api/Log.txt
|
||||
libh-0.2.2/libh/doc/api/LogStderr.txt
|
||||
libh-0.2.2/libh/doc/api/LogString.txt
|
||||
libh-0.2.2/libh/doc/api/ProgressIndicatorStack.txt
|
||||
libh-0.2.2/libh/doc/api/ProgressIndicatorStreamStack.txt
|
||||
libh-0.2.2/libh/doc/api/gen_doc.pl
|
||||
libh-0.2.2/libh/doc/hui/Makefile
|
||||
libh-0.2.2/libh/doc/hui/hui.sgml
|
||||
libh-0.2.2/libh/doc/Makefile
|
||||
libh-0.2.2/libh/doc/sysinstall2.txt
|
||||
libh-0.2.2/libh/doc/examples/hello_world.tcl
|
||||
libh-0.2.2/libh/doc/examples/packageman.tcl
|
||||
libh-0.2.2/libh/doc/examples/simple_button.tcl
|
||||
libh-0.2.2/libh/doc/examples/README
|
||||
libh-0.2.2/libh/doc/dox/Makefile
|
||||
libh-0.2.2/libh/doc/dox/dox.cfg
|
||||
libh-0.2.2/libh/Makefile.inc
|
||||
libh-0.2.2/libh/Makefile.uitype
|
||||
libh-0.2.2/libh/README
|
||||
libh-0.2.2/libh/TODO
|
||||
libh-0.2.2/libh/find_classes_descriptions.pl
|
||||
libh-0.2.2/libh/HACKERS
|
||||
libh-0.2.2/libh/include/database/DatabaseEngine.hh
|
||||
libh-0.2.2/libh/include/database/DatabaseEngineDb185.hh
|
||||
libh-0.2.2/libh/include/database/libhdatabase_init.hh
|
||||
libh-0.2.2/libh/include/Config.hh
|
||||
libh-0.2.2/libh/include/Configuration.hh
|
||||
libh-0.2.2/libh/include/Container.hh
|
||||
libh-0.2.2/libh/include/H.hh
|
||||
libh-0.2.2/libh/include/HSystem.hh
|
||||
libh-0.2.2/libh/include/LanguageInterface.hh
|
||||
libh-0.2.2/libh/include/Log.hh
|
||||
libh-0.2.2/libh/include/Pointer.hh
|
||||
libh-0.2.2/libh/include/ProgressIndicator.hh
|
||||
libh-0.2.2/libh/include/String.hh
|
||||
libh-0.2.2/libh/include/Type.hh
|
||||
libh-0.2.2/libh/include/limits
|
||||
libh-0.2.2/libh/include/disk/Disk.hh
|
||||
libh-0.2.2/libh/include/disk/libhdisk_init.hh
|
||||
libh-0.2.2/libh/include/file/Archive.hh
|
||||
libh-0.2.2/libh/include/file/ChangeDirTemporarily.hh
|
||||
libh-0.2.2/libh/include/file/DirectoriesAccess.hh
|
||||
libh-0.2.2/libh/include/file/Fetch.hh
|
||||
libh-0.2.2/libh/include/file/File.hh
|
||||
libh-0.2.2/libh/include/file/FileInfo.hh
|
||||
libh-0.2.2/libh/include/file/RealFile.hh
|
||||
libh-0.2.2/libh/include/file/ziplib.hh
|
||||
libh-0.2.2/libh/include/file/libhfile_init.hh
|
||||
libh-0.2.2/libh/include/hui/HuiQt.hh
|
||||
libh-0.2.2/libh/include/hui/Hui.hh
|
||||
libh-0.2.2/libh/include/hui/HuiQtNew.hh
|
||||
libh-0.2.2/libh/include/hui/HuiTVision.hh
|
||||
libh-0.2.2/libh/include/hui/HuiTVisionNew.hh
|
||||
libh-0.2.2/libh/include/hui/ProgressIndicatorHui.hh
|
||||
libh-0.2.2/libh/include/hui/libhhui_init.hh
|
||||
libh-0.2.2/libh/include/sysinstall/Callback.hh
|
||||
libh-0.2.2/libh/include/sysinstall/Database.hh
|
||||
libh-0.2.2/libh/include/sysinstall/Exec.hh
|
||||
libh-0.2.2/libh/include/sysinstall/Feature.hh
|
||||
libh-0.2.2/libh/include/sysinstall/FeaturesProvided.hh
|
||||
libh-0.2.2/libh/include/sysinstall/History.hh
|
||||
libh-0.2.2/libh/include/sysinstall/Package.hh
|
||||
libh-0.2.2/libh/include/sysinstall/PackageCreator.hh
|
||||
libh-0.2.2/libh/include/sysinstall/PackageDescription.hh
|
||||
libh-0.2.2/libh/include/sysinstall/PackageFile.hh
|
||||
libh-0.2.2/libh/include/sysinstall/PackageStream.hh
|
||||
libh-0.2.2/libh/include/sysinstall/PackageStreamFile.hh
|
||||
libh-0.2.2/libh/include/sysinstall/PackageStreamReference.hh
|
||||
libh-0.2.2/libh/include/sysinstall/PackageStreamStructure.hh
|
||||
libh-0.2.2/libh/include/sysinstall/PackageStreamSubpackage.hh
|
||||
libh-0.2.2/libh/include/sysinstall/PatchSuffixes.hh
|
||||
libh-0.2.2/libh/include/sysinstall/Syslog.hh
|
||||
libh-0.2.2/libh/include/sysinstall/libhsysinstall_init.hh
|
||||
libh-0.2.2/libh/include/tcl/TclLanguageInterface.hh
|
||||
libh-0.2.2/libh/include/tcl/LibHTclInit_common.hh
|
||||
libh-0.2.2/libh/include/tcl/LibHTclInit_disk.hh
|
||||
libh-0.2.2/libh/include/tcl/LibHTclInit_file.hh
|
||||
libh-0.2.2/libh/include/tcl/LibHTclInit_hui.hh
|
||||
libh-0.2.2/libh/include/tcl/LibHTclInit_sysinstall.hh
|
||||
libh-0.2.2/libh/include/part/fstab_file.hh
|
||||
libh-0.2.2/libh/lib/common/Configuration.cc
|
||||
libh-0.2.2/libh/lib/common/Configuration.cd.cc
|
||||
libh-0.2.2/libh/lib/common/H.cc
|
||||
libh-0.2.2/libh/lib/common/H.cd.cc
|
||||
libh-0.2.2/libh/lib/common/LanguageInterface.cc
|
||||
libh-0.2.2/libh/lib/common/Log.cc
|
||||
libh-0.2.2/libh/lib/common/Log.cd.cc
|
||||
libh-0.2.2/libh/lib/common/Makefile
|
||||
libh-0.2.2/libh/lib/common/Pointer.cc
|
||||
libh-0.2.2/libh/lib/common/ProgressIndicator.cd.cc
|
||||
libh-0.2.2/libh/lib/common/libh_init.cc
|
||||
libh-0.2.2/libh/lib/Makefile
|
||||
libh-0.2.2/libh/lib/database/DatabaseEngine.cc
|
||||
libh-0.2.2/libh/lib/database/DatabaseEngineDb185.cc
|
||||
libh-0.2.2/libh/lib/database/Makefile
|
||||
libh-0.2.2/libh/lib/database/libhdatabase_init.cc
|
||||
libh-0.2.2/libh/lib/disk/Disk.cc
|
||||
libh-0.2.2/libh/lib/disk/Disk.cd.cc
|
||||
libh-0.2.2/libh/lib/disk/Makefile
|
||||
libh-0.2.2/libh/lib/disk/algo.txt
|
||||
libh-0.2.2/libh/lib/disk/libhdisk_init.cc
|
||||
libh-0.2.2/libh/lib/file/Archive.cc
|
||||
libh-0.2.2/libh/lib/file/Archive.cd.cc
|
||||
libh-0.2.2/libh/lib/file/DirectoriesAccess.cc
|
||||
libh-0.2.2/libh/lib/file/DirectoriesAccess.cd.cc
|
||||
libh-0.2.2/libh/lib/file/Dirname.cc
|
||||
libh-0.2.2/libh/lib/file/Fetch.cc
|
||||
libh-0.2.2/libh/lib/file/Fetch.cd.cc
|
||||
libh-0.2.2/libh/lib/file/File.cc
|
||||
libh-0.2.2/libh/lib/file/File.cd.cc
|
||||
libh-0.2.2/libh/lib/file/FileInfo.cc
|
||||
libh-0.2.2/libh/lib/file/FileInfo.cd.cc
|
||||
libh-0.2.2/libh/lib/file/Makefile
|
||||
libh-0.2.2/libh/lib/file/Md5.cc
|
||||
libh-0.2.2/libh/lib/file/RealFile.cc
|
||||
libh-0.2.2/libh/lib/file/RealFile.cd.cc
|
||||
libh-0.2.2/libh/lib/file/libhfile_init.cc
|
||||
libh-0.2.2/libh/lib/file/ziplib.icc
|
||||
libh-0.2.2/libh/lib/hui/Hui.cd.cc
|
||||
libh-0.2.2/libh/lib/hui/Hui.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt.cd.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQtNew.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_ButtonWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_ButtonsGroupWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_CheckBoxesWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_ContainerWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_DialogWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_GroupWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_InputLineWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_LabelWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_ListBoxWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_MenuBarWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/Makefile
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_MenuButtonWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_MenuItemWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_MenuSeparatorWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_MenuSubmenuWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_ProgressIndicatorWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_RadioMenuWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_TextEditWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_TitledWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_ToplevelWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_Widget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiQt_WindowWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision.cd.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVisionNew.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_ButtonWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_ButtonsGroupWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_CheckBoxesWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_ContainerWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_DialogWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_GroupWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_InputLineWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_LabelWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_ListBoxWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_MenuBarWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_MenuButtonWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_MenuItemWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_MenuSeparatorWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_MenuSubmenuWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_ProgressIndicatorWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_RadioMenuWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_TextEditWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_TitledWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_ToplevelWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_Widget.cc
|
||||
libh-0.2.2/libh/lib/hui/HuiTVision_WindowWidget.cc
|
||||
libh-0.2.2/libh/lib/hui/ProgressIndicatorHui.cd.cc
|
||||
libh-0.2.2/libh/lib/hui/libhui_init.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/Callback.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/Callback.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/Database.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/Database.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/Exec.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/Feature.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/Feature.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/FeaturesProvided.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/FeaturesProvided.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/History.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/Makefile
|
||||
libh-0.2.2/libh/lib/sysinstall/Package.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/Package.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageCreator.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageCreator.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageDescription.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageFile.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageFile.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageStream.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageStream.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageStreamFile.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageStreamFile.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageStreamReference.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageStreamStructure.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageStreamStructure.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/PackageStreamSubpackage.cd.cc
|
||||
libh-0.2.2/libh/lib/sysinstall/libhsysinstall_init.cc
|
||||
libh-0.2.2/libh/lib/tcl/LibHTclInit_common.cc
|
||||
libh-0.2.2/libh/lib/tcl/LibHTclInit_disk.cc
|
||||
libh-0.2.2/libh/lib/tcl/LibHTclInit_file.cc
|
||||
libh-0.2.2/libh/lib/tcl/LibHTclInit_hui.cc
|
||||
libh-0.2.2/libh/lib/tcl/LibHTclInit_sysinstall.cc
|
||||
libh-0.2.2/libh/lib/tcl/Makefile
|
||||
libh-0.2.2/libh/lib/tcl/Makefile.inc1
|
||||
libh-0.2.2/libh/lib/tcl/TclLanguageInterface.cc
|
||||
libh-0.2.2/libh/lib/tcl/tcl_interface_gen.cc
|
||||
libh-0.2.2/libh/lib/tcl/HSystem.cc
|
||||
libh-0.2.2/libh/lib/part/Makefile
|
||||
libh-0.2.2/libh/lib/part/fstab_file.cc
|
||||
libh-0.2.2/libh/release/Makefile
|
||||
libh-0.2.2/libh/release/Makefile.inc
|
||||
libh-0.2.2/libh/release/floppies/Makefile
|
||||
libh-0.2.2/libh/release/floppies/Makefile.inc
|
||||
libh-0.2.2/libh/release/floppies/README.kernel
|
||||
libh-0.2.2/libh/release/floppies/loader.rc.144
|
||||
libh-0.2.2/libh/release/floppies/master.passwd
|
||||
libh-0.2.2/libh/release/floppies/README
|
||||
libh-0.2.2/libh/release/init/Makefile
|
||||
libh-0.2.2/libh/release/init/extvars.h
|
||||
libh-0.2.2/libh/release/init/main.c
|
||||
libh-0.2.2/libh/release/init/rtermcap.c
|
||||
libh-0.2.2/libh/release/init/run.c
|
||||
libh-0.2.2/libh/release/init/system.c
|
||||
libh-0.2.2/libh/release/init/termcap.c
|
||||
libh-0.2.2/libh/release/init/run.h
|
||||
libh-0.2.2/libh/release/init/system.h
|
||||
libh-0.2.2/libh/release/init/termcap.h
|
||||
libh-0.2.2/libh/release/scripts/console/console.tcl
|
||||
libh-0.2.2/libh/release/scripts/console/console_init.tcl
|
||||
libh-0.2.2/libh/release/scripts/Makefile
|
||||
libh-0.2.2/libh/release/scripts/cdrominstall.tcl
|
||||
libh-0.2.2/libh/release/scripts/choosedistrib.tcl
|
||||
libh-0.2.2/libh/release/scripts/commonvars.tcl
|
||||
libh-0.2.2/libh/release/scripts/ftpinstall.tcl
|
||||
libh-0.2.2/libh/release/scripts/installdistrib.tcl
|
||||
libh-0.2.2/libh/release/scripts/instmethod.tcl
|
||||
libh-0.2.2/libh/release/scripts/netsetup.tcl
|
||||
libh-0.2.2/libh/release/scripts/setup.tcl
|
||||
libh-0.2.2/libh/release/scripts/diskedit/Makefile
|
||||
libh-0.2.2/libh/release/scripts/diskedit/TODO
|
||||
libh-0.2.2/libh/release/scripts/diskedit/dialogs.tcl
|
||||
libh-0.2.2/libh/release/scripts/diskedit/disk.tcl
|
||||
libh-0.2.2/libh/release/scripts/diskedit/disklabel.tcl
|
||||
libh-0.2.2/libh/release/scripts/diskedit/formats.tcl
|
||||
libh-0.2.2/libh/release/scripts/diskedit/labeledit.tcl
|
||||
libh-0.2.2/libh/release/scripts/diskedit/newfs.tcl
|
||||
libh-0.2.2/libh/release/scripts/diskedit/size.tcl
|
||||
libh-0.2.2/libh/release/scripts/diskedit/sliceops.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/DOCUMENTATION
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/Makefile
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/all_files.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/create_db.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/create_paks
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/create_zips
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/export_db.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/file_by_name.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/file_owners.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/import_db.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/makepackage.sh
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/packagetool.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/pkg_delete.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/pkg_info.tcl
|
||||
libh-0.2.2/libh/release/scripts/pkgtools/pkg_install.tcl
|
|
@ -1,11 +0,0 @@
|
|||
The sysinstall2 project (aka libh) is the next generation
|
||||
sysinstall replacement. The libh project aims to produce
|
||||
a robust installation and administration tool, which will
|
||||
provide several flexible user interfaces and an advanced
|
||||
package management system.
|
||||
|
||||
The name libh comes from the prefix of the shared library
|
||||
filenames and the original author packaged his first pre-alpha
|
||||
release as libh.tar.gz.
|
||||
|
||||
WWW: http://www.FreeBSD.org/projects/libh.html
|
|
@ -1,73 +0,0 @@
|
|||
bin/tclh.static
|
||||
lib/libhui.a
|
||||
lib/libhui.so.0
|
||||
lib/libhui.so
|
||||
lib/libhdisk.a
|
||||
lib/libhdisk.so.0
|
||||
lib/libhdisk.so
|
||||
lib/libhfstab.a
|
||||
lib/libhfstab.so.0
|
||||
lib/libhfstab.so
|
||||
lib/libhfile.a
|
||||
lib/libhfile.so.0
|
||||
lib/libhfile.so
|
||||
lib/libh.a
|
||||
lib/libh.so.0
|
||||
lib/libh.so
|
||||
lib/libhdatabase.a
|
||||
lib/libhdatabase.so.0
|
||||
lib/libhdatabase.so
|
||||
lib/libhsysinstall.a
|
||||
lib/libhsysinstall.so.0
|
||||
lib/libhsysinstall.so
|
||||
lib/libhtclhui.a
|
||||
lib/libhtclhui.so.0
|
||||
lib/libhtclhui.so
|
||||
lib/libhtclfile.a
|
||||
lib/libhtclfile.so.0
|
||||
lib/libhtclfile.so
|
||||
lib/libhtcl.a
|
||||
lib/libhtcl.so.0
|
||||
lib/libhtcl.so
|
||||
lib/libhtcldisk.a
|
||||
lib/libhtcldisk.so.0
|
||||
lib/libhtcldisk.so
|
||||
lib/libhtclsysinstall.a
|
||||
lib/libhtclsysinstall.so.0
|
||||
lib/libhtclsysinstall.so
|
||||
share/libh/scripts/cdrominstall.tcl
|
||||
share/libh/scripts/choosedistrib.tcl
|
||||
share/libh/scripts/commonvars.tcl
|
||||
share/libh/scripts/ftpinstall.tcl
|
||||
share/libh/scripts/installdistrib.tcl
|
||||
share/libh/scripts/instmethod.tcl
|
||||
share/libh/scripts/netsetup.tcl
|
||||
share/libh/scripts/setup.tcl
|
||||
share/libh/scripts/console.tcl
|
||||
share/libh/scripts/console_init.tcl
|
||||
share/libh/scripts/pkgtools/DOCUMENTATION
|
||||
share/libh/scripts/pkgtools/all_files.tcl
|
||||
share/libh/scripts/pkgtools/create_db.tcl
|
||||
share/libh/scripts/pkgtools/create_paks
|
||||
share/libh/scripts/pkgtools/create_zips
|
||||
share/libh/scripts/pkgtools/export_db.tcl
|
||||
share/libh/scripts/pkgtools/file_by_name.tcl
|
||||
share/libh/scripts/pkgtools/file_owners.tcl
|
||||
share/libh/scripts/pkgtools/import_db.tcl
|
||||
share/libh/scripts/pkgtools/makepackage.sh
|
||||
share/libh/scripts/pkgtools/packagetool.tcl
|
||||
share/libh/scripts/pkgtools/pkg_info.tcl
|
||||
share/libh/scripts/pkgtools/pkg_install.tcl
|
||||
share/libh/scripts/diskedit/TODO
|
||||
share/libh/scripts/diskedit/dialogs.tcl
|
||||
share/libh/scripts/diskedit/disk.tcl
|
||||
share/libh/scripts/diskedit/disklabel.tcl
|
||||
share/libh/scripts/diskedit/formats.tcl
|
||||
share/libh/scripts/diskedit/labeledit.tcl
|
||||
share/libh/scripts/diskedit/newfs.tcl
|
||||
share/libh/scripts/diskedit/sliceops.tcl
|
||||
share/libh/scripts/diskedit/size.tcl
|
||||
@dirrm share/libh/scripts/diskedit
|
||||
@dirrm share/libh/scripts/pkgtools
|
||||
@dirrm share/libh/scripts
|
||||
@dirrm share/libh
|
|
@ -187,7 +187,6 @@
|
|||
SUBDIR += hagelslag
|
||||
SUBDIR += happystats
|
||||
SUBDIR += haproxy
|
||||
SUBDIR += hawk
|
||||
SUBDIR += hf6to4
|
||||
SUBDIR += hidentd
|
||||
SUBDIR += hinfo
|
||||
|
@ -392,7 +391,6 @@
|
|||
SUBDIR += openldap22-server
|
||||
SUBDIR += openmcu
|
||||
SUBDIR += openradius
|
||||
SUBDIR += openreg
|
||||
SUBDIR += openslp
|
||||
SUBDIR += openverse
|
||||
SUBDIR += ortp
|
||||
|
|
|
@ -1,62 +0,0 @@
|
|||
# New ports collection makefile for: hawk
|
||||
# Date created: 12 February 2003
|
||||
# Whom: dougb
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= hawk
|
||||
PORTVERSION= 0.6
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://umn.dl.sourceforge.net/sourceforge/iphawk/ \
|
||||
http://unc.dl.sourceforge.net/sourceforge/iphawk/
|
||||
|
||||
MAINTAINER= DougB@FreeBSD.org
|
||||
COMMENT= Track uptime and DNS status for machines on your networks
|
||||
|
||||
RUN_DEPENDS= php-config:${PORTSDIR}/www/mod_php4 \
|
||||
safe_mysqld:${PORTSDIR}/databases/mysql40-server \
|
||||
${SITE_PERL}/Net/Netmask.pm:${PORTSDIR}/net-mgmt/p5-Net-Netmask
|
||||
|
||||
BROKEN= "Broken dependency"
|
||||
|
||||
do-patch:
|
||||
@${SED} -e 's#dirname.*"/hawk#"${PREFIX}/etc/hawk/daemon#' \
|
||||
${WRKSRC}/daemon/hawk > ${WRKSRC}/daemon/hawk.sed
|
||||
@${MV} ${WRKSRC}/daemon/hawk.sed ${WRKSRC}/daemon/hawk
|
||||
@${SED} -e 's#hawk.conf#daemon.conf#' \
|
||||
${WRKSRC}/php/hawk.conf.inc > ${WRKSRC}/php/hawk.conf.inc.sed
|
||||
@${MV} ${WRKSRC}/php/hawk.conf.inc.sed ${WRKSRC}/php/hawk.conf.inc
|
||||
@${SED} -e 's#hawk.conf.inc#${PREFIX}/etc/hawk/php.conf#' \
|
||||
${WRKSRC}/php/hawk.php > ${WRKSRC}/php/hawk.php.sed
|
||||
@${MV} ${WRKSRC}/php/hawk.php.sed ${WRKSRC}/php/hawk.php
|
||||
|
||||
do-build:
|
||||
# Empty target, nothing to build
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${PREFIX}/etc/hawk
|
||||
${INSTALL_DATA} ${WRKSRC}/daemon/hawk.conf ${PREFIX}/etc/hawk/daemon.conf.sample
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/daemon/hawk ${PREFIX}/sbin
|
||||
${MKDIR} ${PREFIX}/www/data-dist/hawk/images
|
||||
(for f in ${WRKSRC}/php/images/*; do \
|
||||
${INSTALL_DATA} $$f ${PREFIX}/www/data-dist/hawk/images; \
|
||||
done)
|
||||
${INSTALL_DATA} ${WRKSRC}/php/hawk.php ${PREFIX}/www/data-dist/hawk
|
||||
${INSTALL_DATA} ${WRKSRC}/php/hawk.css ${PREFIX}/www/data-dist/hawk
|
||||
${INSTALL_DATA} ${WRKSRC}/php/hawk.conf.inc \
|
||||
${PREFIX}/etc/hawk/php.conf.sample
|
||||
${SED} -e 's#%%PREFIX%%#${PREFIX}#' ${FILESDIR}/hawk.sh > \
|
||||
${WRKDIR}/hawk.sh.sample
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/hawk.sh.sample ${PREFIX}/etc/rc.d
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
||||
${INSTALL_DATA} ${FILESDIR}/create_hawk_db.sql ${DOCSDIR}
|
||||
${INSTALL_DATA} ${FILESDIR}/create_hawk_user.sql ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
|
@ -1,2 +0,0 @@
|
|||
MD5 (hawk-0.6.tar.gz) = 0126343848ebed9a5d62292e3fd603a1
|
||||
SIZE (hawk-0.6.tar.gz) = 23507
|
|
@ -1,13 +0,0 @@
|
|||
# Feed this file to mysql, e.g.,
|
||||
# mysql -v < create_hawk_db.sql
|
||||
|
||||
create database hawk;
|
||||
use hawk;
|
||||
create table ip (
|
||||
ip char(16) NOT NULL default '0',
|
||||
hostname char(255) default NULL,
|
||||
lastping int(10) default NULL,
|
||||
primary key (ip),
|
||||
unique key ip (ip),
|
||||
key ip_2 (ip)
|
||||
) type=MyISAM comment='Table for last ping time of hosts';
|
|
@ -1,8 +0,0 @@
|
|||
# Feed this file to mysql, e.g.,
|
||||
# mysql -v < create_hawk_user.sql
|
||||
|
||||
grant select,insert,update,delete
|
||||
on hawk.*
|
||||
to hawk@localhost
|
||||
identified by 'YOUR_PASSWORD_HERE';
|
||||
flush privileges;
|
|
@ -1,34 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
PATH=/bin:/usr/bin
|
||||
export PATH
|
||||
|
||||
stop_hawk () {
|
||||
if [ -f /var/run/hawk.pid ];then
|
||||
kill `cat /var/run/hawk.pid`
|
||||
else
|
||||
ps -ax | awk '/[h]awk$/ {print $1}' | xargs kill
|
||||
fi
|
||||
}
|
||||
|
||||
case "${1}" in
|
||||
start)
|
||||
echo 'Starting hawk'
|
||||
%%PREFIX%%/sbin/hawk &
|
||||
;;
|
||||
stop)
|
||||
echo 'Stopping hawk'
|
||||
stop_hawk
|
||||
;;
|
||||
restart)
|
||||
echo 'Restarting hawk'
|
||||
stop_hawk
|
||||
%%PREFIX%%/sbin/hawk &
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
|
@ -1,16 +0,0 @@
|
|||
Hawk is a web based utility for monitoring and comparing hosts
|
||||
on your network with what's in DNS. Hosts that are answering
|
||||
pings but are not in dns may be unauthorized, and hosts that are
|
||||
in DNS, but are not answering may be able to be reclaimed. Hawk
|
||||
monitors all hosts on the networks you specify and lets you view
|
||||
them via a web page.
|
||||
|
||||
Hawk consists of a backend written in perl that monitors hosts by
|
||||
icmp pings and writes the status to a mysql database. The frontend
|
||||
is in php and lets you select which network to view, and how to view
|
||||
it.
|
||||
|
||||
WWW: http://sourceforge.net/projects/iphawk/
|
||||
|
||||
- Doug Barton
|
||||
DougB@FreeBSD.org
|
|
@ -1,4 +0,0 @@
|
|||
|
||||
See PREFIX/share/doc/hawk/create_hawk* for instructions on creating
|
||||
the database and user that the php code expects.
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
etc/hawk/daemon.conf.sample
|
||||
etc/hawk/php.conf.sample
|
||||
etc/rc.d/hawk.sh.sample
|
||||
sbin/hawk
|
||||
www/data-dist/hawk/images/bluesphere.png
|
||||
www/data-dist/hawk/images/greensphere.png
|
||||
www/data-dist/hawk/images/hawk.jpg
|
||||
www/data-dist/hawk/images/purplesphere.png
|
||||
www/data-dist/hawk/images/questionsphere.png
|
||||
www/data-dist/hawk/images/redsphere.png
|
||||
www/data-dist/hawk/images/yellowsphere.png
|
||||
www/data-dist/hawk/hawk.php
|
||||
www/data-dist/hawk/hawk.css
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/create_hawk_db.sql
|
||||
%%PORTDOCS%%%%DOCSDIR%%/create_hawk_user.sql
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
@unexec rmdir %D/etc/hawk 2>/dev/null || true
|
||||
@dirrm www/data-dist/hawk/images
|
||||
@dirrm www/data-dist/hawk
|
|
@ -1,49 +0,0 @@
|
|||
# New ports collection makefile for: openreg
|
||||
# Date created: 6 June 2003
|
||||
# Whom: seanc
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= openreg
|
||||
PORTVERSION= 1.0.2
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= ${MASTER_SITE_ISC}
|
||||
MASTER_SITE_SUBDIR= openreg
|
||||
|
||||
MAINTAINER= seanc@FreeBSD.org
|
||||
COMMENT= Domain Registry software
|
||||
|
||||
RUN_DEPENDS= ${LOCALBASE}/sbin/stunnel:${PORTSDIR}/security/stunnel \
|
||||
${LOCALBASE}/sbin/named:${PORTSDIR}/dns/bind9 \
|
||||
${LOCALBASE}/bin/postgres:${PORTSDIR}/${POSTGRESQL_PORT} \
|
||||
${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes
|
||||
BUILD_DEPENDS= ${LOCALBASE}/include/isc/buffer.h:${PORTSDIR}/dns/bind9
|
||||
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2
|
||||
|
||||
POSTGRESQL_PORT?= databases/postgresql7
|
||||
|
||||
USE_OPENSSL= YES
|
||||
USE_PERL5= YES
|
||||
GNU_CONFIGURE= YES
|
||||
PERL_LEVEL= 500800
|
||||
|
||||
BROKEN= Broken pkg-plist
|
||||
DEPRECATED= ${BROKEN}
|
||||
EXPIRATION_DATE=2004-04-21
|
||||
|
||||
post-install:
|
||||
@${MKDIR} ${DOCSDIR} ;\
|
||||
${CP} -r ${WRKSRC}/doc/ ${DOCSDIR} ;\
|
||||
cd ${WRKSRC}/doc ;\
|
||||
for file in `${FIND} ./ ! -type d` ; do \
|
||||
printf "share/doc/${PORTNAME}/%s\n" $$file >> ${TMPPLIST} ;\
|
||||
done ;\
|
||||
for dir in `${FIND} ./ -type d -mindepth 1| ${SORT} -r` ; do \
|
||||
printf "@dirrm share/doc/${PORTNAME}/%s\n" $$dir >> ${TMPPLIST} ;\
|
||||
done
|
||||
@${ECHO} "@dirrm share/doc/${PORTNAME}" >> ${TMPPLIST}
|
||||
@${CAT} pkg-message
|
||||
|
||||
.include <bsd.port.mk>
|
|
@ -1,2 +0,0 @@
|
|||
MD5 (openreg-1.0.2.tar.gz) = 0c5ecff71a2c5eec1cb8bebd201a0897
|
||||
SIZE (openreg-1.0.2.tar.gz) = 310432
|
|
@ -1,19 +0,0 @@
|
|||
OpenReg is an implementation of a domain registry, such as might be
|
||||
used by top-level domain operators to manage the delegation of domains
|
||||
in a "shared registry" environment. OpenReg:
|
||||
|
||||
*) supports the Extensible Provisioning Protocol (EPP), the IETF
|
||||
standards-track protocol for interaction between registries and
|
||||
registrars;
|
||||
|
||||
*) is designed and debugged as a distributed multi-process system;
|
||||
|
||||
*) supports PostgreSQL and is designed to accommodate to very large registries;
|
||||
|
||||
*) publishes zone files to be served using BIND;
|
||||
|
||||
*) gathers comprehensive profiling and load statistics;
|
||||
|
||||
*) is published as free software, under a BSD-style licence.
|
||||
|
||||
WWW: http://www.isc.org/products/OpenReg/
|
|
@ -1,4 +0,0 @@
|
|||
----------------------------------------------------------------------
|
||||
Read ${PREFIX}/share/doc/openreg/INSTALL for details on how to
|
||||
setup OpenReg and get it started.
|
||||
----------------------------------------------------------------------
|
|
@ -1,65 +0,0 @@
|
|||
lib/perl5/%%PERL_VER%%/man/man3/ISC::DBI.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::Date.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::Log.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::NameVerify.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::Net::CRLF.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::Net::LengthPrefix.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::Net::Listen.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::Random.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::SRS::DB.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::SRS::Version.3
|
||||
lib/perl5/%%PERL_VER%%/man/man3/ISC::Stats::Report.3
|
||||
%%SITE_PERL%%/ISC/CC/Direct.pm
|
||||
%%SITE_PERL%%/ISC/CC/Direct/Connect.pm
|
||||
%%SITE_PERL%%/ISC/CC/Direct/Listen.pm
|
||||
%%SITE_PERL%%/ISC/CC/Group.pm
|
||||
%%SITE_PERL%%/ISC/CC/Group/Connect.pm
|
||||
%%SITE_PERL%%/ISC/CC/Message.pm
|
||||
%%SITE_PERL%%/ISC/DB/ReplicationMaster.pm
|
||||
%%SITE_PERL%%/ISC/DB/ReplicationSlave.pm
|
||||
%%SITE_PERL%%/ISC/DBI.pm
|
||||
%%SITE_PERL%%/ISC/Date.pm
|
||||
%%SITE_PERL%%/ISC/Log.pm
|
||||
%%SITE_PERL%%/ISC/NameVerify.pm
|
||||
%%SITE_PERL%%/ISC/Net/CRLF.pm
|
||||
%%SITE_PERL%%/ISC/Net/Connect.pm
|
||||
%%SITE_PERL%%/ISC/Net/LengthPrefix.pm
|
||||
%%SITE_PERL%%/ISC/Net/Listen.pm
|
||||
%%SITE_PERL%%/ISC/Random.pm
|
||||
%%SITE_PERL%%/ISC/SRS/DB.pm
|
||||
%%SITE_PERL%%/ISC/SRS/EPPConnection.pm
|
||||
%%SITE_PERL%%/ISC/SRS/EPPParser.pm
|
||||
%%SITE_PERL%%/ISC/SRS/EPPRegistrar.pm
|
||||
%%SITE_PERL%%/ISC/SRS/EPPResultCode.pm
|
||||
%%SITE_PERL%%/ISC/SRS/EPPWriter.pm
|
||||
%%SITE_PERL%%/ISC/SRS/SAX/EPPHandler.pm
|
||||
%%SITE_PERL%%/ISC/SRS/Version.pm
|
||||
%%SITE_PERL%%/ISC/Stats/Report.pm
|
||||
%%SITE_PERL%%/mach/auto/ISC/.packlist
|
||||
@dirrm %%SITE_PERL%%/mach/auto/ISC
|
||||
@dirrm %%SITE_PERL%%/ISC/CC/Direct
|
||||
@dirrm %%SITE_PERL%%/ISC/CC/Group
|
||||
@dirrm %%SITE_PERL%%/ISC/CC
|
||||
@dirrm %%SITE_PERL%%/ISC/DB
|
||||
@dirrm %%SITE_PERL%%/ISC/Net
|
||||
@dirrm %%SITE_PERL%%/ISC/SRS/SAX
|
||||
@dirrm %%SITE_PERL%%/ISC/SRS
|
||||
@dirrm %%SITE_PERL%%/ISC/Stats
|
||||
@dirrm %%SITE_PERL%%/ISC
|
||||
bin/group-sniff
|
||||
bin/epp-from-file
|
||||
sbin/msgq
|
||||
sbin/xaction
|
||||
sbin/epp-frontend
|
||||
sbin/whois
|
||||
sbin/replication-master
|
||||
sbin/write-zone
|
||||
sbin/stats-monitor
|
||||
sbin/log-monitor
|
||||
sbin/ka_msgq
|
||||
sbin/ka_xaction
|
||||
sbin/ka_epp-frontend
|
||||
sbin/ka_whois
|
||||
sbin/ka_write-zone
|
||||
sbin/ka_stats-monitor
|
||||
@unexec echo "If you are permanently removing this port, you should do a ``rm -f /var/log/openreg`` to remove the log file and ``rm -rf /usr/local/openreg`` to remove the openreg data files." | fmt
|
Loading…
Reference in a new issue