mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Remove port on maintainer/upstream's request
PR: ports/71534 Submitted by: maintainer Approved by: portmgr (linimon)
This commit is contained in:
parent
18683c440f
commit
8cd0b8010f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=118156
1
MOVED
1
MOVED
@ -1258,3 +1258,4 @@ net/kontact-plugins||2004-08-30|removed
|
||||
palm/kpilot|deskutils/kdepim3|2004-08-30|kpilot has been reintegrated into kdepim
|
||||
devel/calltree|devel/callgrind|2004-09-01|renamed by author
|
||||
sysutils/top||2004-09-02|No longer maintained
|
||||
sysutils/portindex||2004-09-13|Removed on maintainer's request
|
||||
|
@ -321,7 +321,6 @@
|
||||
SUBDIR += port-authoring-tools
|
||||
SUBDIR += port-maintenance-tools
|
||||
SUBDIR += portdowngrade
|
||||
SUBDIR += portindex
|
||||
SUBDIR += portmanager
|
||||
SUBDIR += portsman
|
||||
SUBDIR += portupgrade
|
||||
|
@ -1,95 +0,0 @@
|
||||
# New ports collection makefile for: portindex
|
||||
# Date created: 1 Jul 2004
|
||||
# Whom: Radim Kolar
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= portindex
|
||||
PORTVERSION= 18
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://people.tecnik93.com/~radim/distfiles/
|
||||
DISTNAME= bsdportsutils-${PORTVERSION}
|
||||
|
||||
MAINTAINER= hsn@netmag.cz
|
||||
COMMENT= Incremental ports INDEX file builder
|
||||
|
||||
USE_PYTHON= yes
|
||||
NO_WRKSUBDIR= yes
|
||||
USE_REINPLACE= yes
|
||||
|
||||
PORTDOCS= *.TXT
|
||||
PLIST_DIRS= share/${PORTNAME}
|
||||
PLIST_FILES= etc/portindex.conf.sample
|
||||
PORTINDEX= bsdpkg freebsdports indexer updatereadmes config \
|
||||
portindexdb
|
||||
MINORUPDATES= minorupdates stealthupdates pointupdates
|
||||
MISCTOOLS= updateall
|
||||
PKGHISTORY= loadindex query updinst
|
||||
|
||||
SOURCES= ${PORTINDEX}
|
||||
EXECUTABLES= portindex portreadmes portindexdb
|
||||
|
||||
OPTIONS= PKGHISTORY "Install pkghistory package" off \
|
||||
MINORUPDATES "Install point/minor/stealth updates scripts" off \
|
||||
MISCTOOLS "Install updateall script" off
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.ifdef WITH_MINORUPDATES
|
||||
SOURCES+= ${MINORUPDATES}
|
||||
EXECUTABLES+= ${MINORUPDATES}
|
||||
.endif
|
||||
|
||||
.ifdef WITH_MISCTOOLS
|
||||
.ifndef WITH_PKGHISTORY
|
||||
BROKEN= Option updateall requires pkghistory option
|
||||
.else
|
||||
SOURCES+= ${MISCTOOLS}
|
||||
EXECUTABLES+= ${MISCTOOLS}
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.ifdef WITH_PKGHISTORY
|
||||
SOURCES+= ${PKGHISTORY}
|
||||
EXECUTABLES+= ${PKGHISTORY}
|
||||
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pg.py:${PORTSDIR}/databases/py-PyGreSQL
|
||||
PLIST_FILES+= share/${PORTNAME}/create.sql
|
||||
.endif
|
||||
|
||||
.for i in ${SOURCES}
|
||||
PLIST_FILES+= share/${PORTNAME}/${i}.py
|
||||
PLIST_FILES+= share/${PORTNAME}/${i}.pyc
|
||||
.endfor
|
||||
|
||||
.for i in ${EXECUTABLES}
|
||||
PLIST_FILES+= bin/${i}
|
||||
.endfor
|
||||
|
||||
do-build:
|
||||
${REINPLACE_CMD} -e "s,ports.pck,/var/db/portindex.pck," ${WRKSRC}/freebsdports.py
|
||||
${REINPLACE_CMD} -e "s,portindex.conf,${PREFIX}/etc/portindex.conf," ${WRKSRC}/config.py
|
||||
.for i in ${EXECUTABLES}
|
||||
${SED} -e "s,%%DATADIR%%,${DATADIR}," ${FILESDIR}/${i}.sh > ${WRKSRC}/${i}
|
||||
.endfor
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/portindex.conf ${PREFIX}/etc/portindex.conf.sample
|
||||
${MKDIR} ${DATADIR}
|
||||
.for i in ${SOURCES}
|
||||
${INSTALL_DATA} ${WRKSRC}/${i}.py ${DATADIR}
|
||||
.endfor
|
||||
${PYTHON_CMD} -c "import compileall;compileall.compile_dir('${DATADIR}')"
|
||||
.for i in ${EXECUTABLES}
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/bin
|
||||
.endfor
|
||||
.ifdef WITH_PKGHISTORY
|
||||
${INSTALL_DATA} ${WRKSRC}/create.sql ${DATADIR}
|
||||
.endif
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/*.TXT ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
@ -1,2 +0,0 @@
|
||||
MD5 (bsdportsutils-18.tar.gz) = 75f59389ce4d5ce798500fd99df8741d
|
||||
SIZE (bsdportsutils-18.tar.gz) = 23510
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/loadindex.py $*
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/minorupdates.py $*
|
@ -1,14 +0,0 @@
|
||||
--- freebsdports.py.orig Wed Jul 28 14:03:59 2004
|
||||
+++ freebsdports.py Sat Aug 21 22:45:41 2004
|
||||
@@ -117,9 +117,9 @@
|
||||
print 'Output of make describe has',len(spl),'fields.'
|
||||
return False
|
||||
if this.path!=spl[1]:
|
||||
- print "Port path is",this.path,"but Makefile reports",spl[1]
|
||||
+ print "Warning: port path is",this.path,"but Makefile reports",spl[1]
|
||||
this.name=spl[0]
|
||||
- this.path=spl[1]
|
||||
+ #this.path=spl[1]
|
||||
this.prefix=spl[2]
|
||||
this.comment=sre.sub(r'\s{2,}',' ',spl[3].strip())
|
||||
this.dfile=spl[4]
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/pointupdates.py $*
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/indexer.py $*
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/portindexdb.py $*
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/updatereadmes.py $*
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/query.py $*
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/stealthupdates.py $*
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/updateall.py $*
|
@ -1,2 +0,0 @@
|
||||
#! /bin/sh
|
||||
exec /usr/bin/env python %%DATADIR%%/updinst.py $*
|
@ -1,23 +0,0 @@
|
||||
Portindex - Alternative /usr/ports/INDEX file builder.
|
||||
|
||||
Features
|
||||
1. You do not need to wait 1 hour after every cvsup for make index to finish.
|
||||
This program supports incremental index builds.
|
||||
2. Supports indexing of incomplete ports trees.
|
||||
3. Dependences between ports (including multiple) are correctly tracked.
|
||||
tracking is done by .include hunting
|
||||
4. Dependences on /usr/port/Mk/* are tracked
|
||||
5. Dependences on /var/db/ports are tracked
|
||||
6. Dependences on Makefile.local are tracked
|
||||
7. No known difference between make index and this program
|
||||
|
||||
Portindexdb - Alternative INDEX.db file builder.
|
||||
|
||||
Features
|
||||
1. 2.5 times faster than portsdb
|
||||
2. Currently do not generates list of categories
|
||||
3. Unlike portsdb output database is in valid btree format
|
||||
|
||||
This package also contains FreeBSD port of 'package history'.
|
||||
|
||||
WWW: http://home.tiscali.cz/~cz210552/bsdportsutils.html
|
Loading…
Reference in New Issue
Block a user