1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-02 11:09:29 +00:00

2012-05-10 databases/hypertable: BROKEN for more than 6 month

2012-05-10 graphics/autopano-sift: Disappeared from vendor site. No longer required by graphics/hugin
2012-05-10 misc/airoflash: BROKEN for more than 6 month
2012-05-10 x11-themes/kde-icons-krystaline: BROKEN for more than 6 month
2012-05-10 x11-themes/kde-icons-amaranth: BROKEN for more than 6 month
2012-05-10 x11-themes/kde-icons-realistic: BROKEN for more than 6 month
This commit is contained in:
Baptiste Daroussin 2013-01-06 15:26:34 +00:00
parent ee3b71ca87
commit ca85973672
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=309993
39 changed files with 6 additions and 3042 deletions

1
LEGAL
View File

@ -57,7 +57,6 @@ armyops*-linux.run games/linux-americasarmy Redistribution is limited
asWedit-* www/aswedit Commercial software
atari800/* emulators/atari800 xf25 contains copyright ROMs
and cannot be distributed
autopano-sift-* graphics/autopano-sift May be covered by patents
bamg* math/bamg Contact author personally
regarding commercial use
baudline_* audio/baudline No redistribution allowed

6
MOVED
View File

@ -4001,3 +4001,9 @@ ports-mgmt/portmanager||2013-01-06|Has expired: Does not support modern ports fe
net-im/openfetion||2013-01-06|Has expired: Abandoned upstream
textproc/libpathan||2013-01-06|Has expired: Does not build and upstream has discontinued the project and advises that it has been replaced by textproc/xqilla
java/sun-wtk||2013-01-06|Has expired: no more public distfiles, merged with Java ME SDK 3.0 upstream
databases/hypertable||2013-01-06|Has expired: BROKEN for more than 6 month
graphics/autopano-sift||2013-01-06|Has expired: Disappeared from vendor site. No longer required by graphics/hugin
misc/airoflash||2013-01-06|Has expired: BROKEN for more than 6 month
x11-themes/kde-icons-krystaline||2013-01-06|Has expired: BROKEN for more than 6 month
x11-themes/kde-icons-amaranth||2013-01-06|Has expired: BROKEN for more than 6 month
x11-themes/kde-icons-realistic||2013-01-06|Has expired: BROKEN for more than 6 month

View File

@ -111,7 +111,6 @@
SUBDIR += hs-persistent-sqlite
SUBDIR += hs-persistent-template
SUBDIR += hsqldb
SUBDIR += hypertable
SUBDIR += innobackup
SUBDIR += innotop
SUBDIR += ip4r

View File

@ -1,140 +0,0 @@
# New ports collection makefile for: hypertable
# Date created: 20 Aug 2010
# Whom: Sergey Skvortsov <skv@protey.ru>
#
# $FreeBSD$
#
PORTNAME= hypertable
DISTVERSION= 0.9.3.4-alpha
PORTREVISION= 3
CATEGORIES= databases
MASTER_SITES= GOOGLE_CODE
DISTNAME= ${PORTNAME}-${DISTVERSION}-src
MAINTAINER= skv@FreeBSD.org
COMMENT= High performance distributed data storage system
RUN_DEPENDS= bash>=3.0:${PORTSDIR}/shells/bash
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat2 \
thrift.0:${PORTSDIR}/devel/thrift \
event:${PORTSDIR}/devel/libevent \
log4cpp:${PORTSDIR}/devel/log4cpp \
boost_thread:${PORTSDIR}/devel/boost-libs \
rrd:${PORTSDIR}/databases/rrdtool \
art_lgpl_2.5:${PORTSDIR}/graphics/libart_lgpl \
sigar:${PORTSDIR}/sysutils/hyperic-sigar
BUILD_DEPENDS:= ${RUN_DEPENDS} \
ant:${PORTSDIR}/devel/apache-ant
DEPRECATED= BROKEN for more than 6 month
EXPIRATION_DATE= 2012-05-10
BROKEN= does not build
OPTIONS= TCMALLOC "Use Tcmalloc" on \
HOARD "Use Hoard" off \
PYTHONLIBS "Add Python binding" off \
THRIFT_PERL "Thrift binding for Perl" off \
THRIFT_PYTHON "Thrift binding for Python" off \
THRIFT_RUBY "Thrift binding for Ruby" off
USE_BDB= yes
WANT_BDB_VER= 48
USE_CMAKE= yes
CMAKE_INSTALL_PREFIX= ${PREFIX}/hypertable
CMAKE_SOURCE_PATH= ${WRKDIR}/${PORTNAME}-${DISTVERSION}
CMAKE_ARGS+= -DINSTALL_EXCLUDE_DEPENDENT_LIBS=1
PATCH_WRKSRC= ${CMAKE_SOURCE_PATH}
WRKSRC= ${WRKDIR}/build
USE_GMAKE= yes
USE_LDCONFIG= ${PREFIX}/hypertable/lib
DONT_DETECT= Doxygen Kfs Ceph Ant JNI PHP5Thrift
.include <bsd.port.options.mk>
.if defined(WITH_TCMALLOC)
LIB_DEPENDS+= tcmalloc.2:${PORTSDIR}/devel/google-perftools
PLIST_SUB+= TCMALLOC=""
.else
DONT_DETECT+= Tcmalloc
PLIST_SUB+= TCMALLOC="@comment "
.endif
.if defined(WITH_HOARD)
LIB_DEPENDS+= hoard.so.1:${PORTSDIR}/devel/libhoard
PLIST_SUB+= HOARD=""
.else
DONT_DETECT+= Hoard
PLIST_SUB+= HOARD="@comment "
.endif
.if defined(WITH_PYTHONLIBS)
USE_PYTHON= yes
LIB_DEPENDS+= boost_python:${PORTSDIR}/devel/boost-python-libs
.else
DONT_DETECT+= PythonLibs
.endif
.if defined(WITH_THRIFT_PERL)
BUILD_DEPENDS+= p5-Thrift>=0:${PORTSDIR}/devel/p5-Thrift
.else
DONT_DETECT+= PerlThrift
.endif
.if defined(WITH_THRIFT_PYTHON)
USE_PYTHON= yes
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}thrift>=0:${PORTSDIR}/devel/py-thrift
.else
DONT_DETECT+= PythonThrift
.endif
.if defined(WITH_THRIFT_RUBY)
BUILD_DEPENDS+= ruby-thrift>=0:${PORTSDIR}/devel/ruby-thrift
.else
DONT_DETECT+= RubyThrift
.endif
pre-everything::
.if defined(WITH_THRIFT_PERL) && !defined(WITH_THRIFT)
@${ECHO_CMD} "please enable THRIFT option to use THRIFT_PERL"
@${FALSE}
.endif
.if defined(WITH_THRIFT_PYTHON) && !defined(WITH_THRIFT)
@${ECHO_CMD} "please enable THRIFT option to use THRIFT_PYTHON"
@${FALSE}
.endif
.if defined(WITH_THRIFT_RUBY) && !defined(WITH_THRIFT)
@${ECHO_CMD} "please enable THRIFT option to use THRIFT_RUBY"
@${FALSE}
.endif
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -i '' -e 's=/opt/local=${LOCALBASE}=' \
${PATCH_WRKSRC}/cmake/*.cmake
@${REINPLACE_CMD} -i '' -e 's=/usr/local/BerkeleyDB.4.8/include=${BDB_INCLUDE_DIR}=; \
s=/usr/local/BerkeleyDB.4.8/lib=${BDB_LIB_DIR}=' \
${PATCH_WRKSRC}/cmake/FindBerkeleyDB.cmake
@${REINPLACE_CMD} -i '' -E '/^set\(CMAKE_INSTALL_PREFIX/d' \
${PATCH_WRKSRC}/CMakeLists.txt
@${FIND} ${PATCH_WRKSRC} -name "*.orig" -delete
pre-configure:
@${MKDIR} ${WRKSRC}
.for _D in ${DONT_DETECT}
@${REINPLACE_CMD} -i '' -E '/^find_package\(${_D}\)/d' \
${PATCH_WRKSRC}/CMakeLists.txt
.endfor
test: build
(cd ${WRKSRC} && ${GMAKE} alltests)
.include <bsd.port.post.mk>

View File

@ -1,2 +0,0 @@
SHA256 (hypertable-0.9.3.4-alpha-src.tar.gz) = 4eab83a2de13ba3054d618129a234fb5a5f28e72a6c71b12da244b12837ecad6
SIZE (hypertable-0.9.3.4-alpha-src.tar.gz) = 24245034

View File

@ -1,13 +0,0 @@
--- cmake/FindRRDtool.cmake.orig 2010-08-10 16:56:32.000000000 +0000
+++ cmake/FindRRDtool.cmake 2010-08-10 16:56:53.000000000 +0000
@@ -50,8 +50,8 @@
message(STATUS "${RRD_LIBRARY} ${RRD_INCLUDE_DIR} ${FREETYPE_LIBRARY} ${PNG12_LIBRARY} ${ART_LGPL_2_LIBRARY}")
-if (RRD_LIBRARY AND RRD_INCLUDE_DIR AND FREETYPE_LIBRARY AND PNG12_LIBRARY AND ART_LGPL_2_LIBRARY)
- set(RRD_LIBRARIES ${RRD_LIBRARY} ${FREETYPE_LIBRARY} ${PNG12_LIBRARY} ${ART_LGPL_2_LIBRARY})
+if (RRD_LIBRARY AND RRD_INCLUDE_DIR)
+ set(RRD_LIBRARIES ${RRD_LIBRARY})
set(RRD_FOUND "YES")
message(STATUS "Found RRDtool: ${RRD_LIBRARIES}")
else ()

View File

@ -1,12 +0,0 @@
--- bin/ht-env.sh 2010-05-06 12:24:43.000000000 +0000
+++ bin/ht-env.sh 2010-05-06 12:25:00.000000000 +0000
@@ -179,9 +179,6 @@
# Sanity check
[ "$HYPERTABLE_HOME" ] || die "ERROR: HYPERTABLE_HOME is not set"
-versionre='/([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+(\.[a-fA-F0-9]+)?|current)$'
-[[ $HYPERTABLE_HOME =~ $versionre ]] ||
- die "ERROR: Invalid HYPERTABLE_HOME: $HYPERTABLE_HOME"
# Make sure log and run directories exist
[ -d $HYPERTABLE_HOME/run ] || mkdir $HYPERTABLE_HOME/run

View File

@ -1,10 +0,0 @@
--- src/cc/AsyncComm/IOHandlerDatagram.h 2010-04-14 17:43:30.000000000 +0000
+++ src/cc/AsyncComm/IOHandlerDatagram.h 2010-05-04 13:52:53.000000000 +0000
@@ -45,6 +45,7 @@
IOHandlerDatagram(int sd, const InetAddr &addr, DispatchHandlerPtr &dhp)
: IOHandler(sd, addr, dhp), m_send_queue() {
+ m_local_addr.sin_addr.s_addr = addr.sin_addr.s_addr;
m_message = new uint8_t [65536];
}

View File

@ -1,29 +0,0 @@
--- src/cc/Hypertable/Lib/HqlInterpreter.cc.orig 2010-12-13 17:56:18.000000000 +0300
+++ src/cc/Hypertable/Lib/HqlInterpreter.cc 2010-12-13 17:55:27.000000000 +0300
@@ -272,7 +272,7 @@
}
else {
out_fd = dup(fileno(outf));
- fout.push(boost::iostreams::file_descriptor_sink(out_fd));
+ fout.push(boost::iostreams::file_descriptor_sink(out_fd, boost::iostreams::never_close_handle));
}
HT_ON_SCOPE_EXIT(&close_file, out_fd);
@@ -397,7 +397,7 @@
}
else {
out_fd = dup(fileno(outf));
- fout.push(boost::iostreams::file_descriptor_sink(out_fd));
+ fout.push(boost::iostreams::file_descriptor_sink(out_fd, boost::iostreams::never_close_handle));
}
HT_ON_SCOPE_EXIT(&close_file, out_fd);
@@ -488,7 +488,7 @@
else {
if (outf) {
out_fd = dup(fileno(outf));
- fout.push(boost::iostreams::file_descriptor_sink(out_fd));
+ fout.push(boost::iostreams::file_descriptor_sink(out_fd, boost::iostreams::never_close_handle));
}
else
fout.push(boost::iostreams::null_sink());

View File

@ -1,14 +0,0 @@
Hypertable is a high performance distributed data storage system
designed to support applications requiring maximum performance,
scalability, and reliability.
Hypertable will be particularly invaluable to any organization that
needs to manage rapidly evolving data to support demanding real-time
applications. Modeled after Google's well known Bigtable project,
Hypertable is designed to manage the storage and processing of
information on a large cluster of commodity servers, providing
resilience to machine and component failures. Hypertable seeks to set
the open source standard for highly available, petabyte scale, database
systems.
WWW: http://hypertable.org/

View File

@ -1,440 +0,0 @@
hypertable/bin/Hyperspace.Master
hypertable/bin/Hypertable.Master
hypertable/bin/Hypertable.RangeServer
hypertable/bin/ThriftBroker
hypertable/bin/clean-database.sh
hypertable/bin/clean-hyperspace.sh
hypertable/bin/count_stored
hypertable/bin/csdump
hypertable/bin/dfsclient
hypertable/bin/dump_metalog
hypertable/bin/dumplog
hypertable/bin/fhsize.sh
hypertable/bin/generate_test_data
hypertable/bin/ht
hypertable/bin/ht-env.sh
hypertable/bin/ht_checksum
hypertable/bin/ht_load_generator
hypertable/bin/ht_rsclient
hypertable/bin/ht_write_test
hypertable/bin/htbt.sh
hypertable/bin/htgc
hypertable/bin/hyperspace
hypertable/bin/hypertable
hypertable/bin/java-thrift.sh
hypertable/bin/jrun
hypertable/bin/ldd.sh
hypertable/bin/localBroker
hypertable/bin/merge_diff
hypertable/bin/prerm.sh
hypertable/bin/prune_tsv
hypertable/bin/random-wait.sh
hypertable/bin/random_read_test
hypertable/bin/random_write_test
hypertable/bin/rsstat
hypertable/bin/serverup
hypertable/bin/soname.sh
hypertable/bin/start-all-servers.sh
hypertable/bin/start-dfsbroker.sh
hypertable/bin/start-hyperspace.sh
hypertable/bin/start-master.sh
hypertable/bin/start-monitoring.sh
hypertable/bin/start-rangeserver.sh
hypertable/bin/start-test-client.sh
hypertable/bin/start-test-servers.sh
hypertable/bin/start-thriftbroker.sh
hypertable/bin/stop-hyperspace.sh
hypertable/bin/stop-monitoring.sh
hypertable/bin/stop-servers.sh
hypertable/bin/system_info
hypertable/conf/Capfile.cluster
hypertable/conf/Capfile.localhost
hypertable/conf/METADATA.xml
hypertable/conf/hypertable.cfg
hypertable/examples/apache_log/CMakeLists.txt
hypertable/examples/apache_log/Makefile
hypertable/examples/apache_log/README.txt
hypertable/examples/apache_log/access.log.gz
hypertable/examples/apache_log/apache_log_load.cc
hypertable/examples/apache_log/apache_log_query.cc
hypertable/examples/apache_log/create-table.hql
hypertable/examples/freebase/CMakeLists.txt
hypertable/examples/freebase/aircraft_model.tsv.gz
hypertable/examples/freebase/create-table-freebase.hql
hypertable/examples/freebase/freebase_load.cc
hypertable/examples/freebase/freebase_parser.cc
hypertable/examples/freebase/freebase_parser.h
hypertable/examples/hql_tutorial/Pages-create.hql
hypertable/include/AsyncComm/ApplicationHandler.h
hypertable/include/AsyncComm/ApplicationQueue.h
hypertable/include/AsyncComm/Comm.h
hypertable/include/AsyncComm/CommAddress.h
hypertable/include/AsyncComm/CommBuf.h
hypertable/include/AsyncComm/CommHeader.h
hypertable/include/AsyncComm/Config.h
hypertable/include/AsyncComm/ConnectionHandlerFactory.h
hypertable/include/AsyncComm/ConnectionManager.h
hypertable/include/AsyncComm/DispatchHandler.h
hypertable/include/AsyncComm/DispatchHandlerSynchronizer.h
hypertable/include/AsyncComm/Event.h
hypertable/include/AsyncComm/ExpireTimer.h
hypertable/include/AsyncComm/HandlerMap.h
hypertable/include/AsyncComm/IOHandler.h
hypertable/include/AsyncComm/IOHandlerAccept.h
hypertable/include/AsyncComm/IOHandlerData.h
hypertable/include/AsyncComm/IOHandlerDatagram.h
hypertable/include/AsyncComm/PollTimeout.h
hypertable/include/AsyncComm/Protocol.h
hypertable/include/AsyncComm/ProxyMap.h
hypertable/include/AsyncComm/Reactor.h
hypertable/include/AsyncComm/ReactorFactory.h
hypertable/include/AsyncComm/ReactorRunner.h
hypertable/include/AsyncComm/RequestCache.h
hypertable/include/AsyncComm/ResponseCallback.h
hypertable/include/Common/Abi.h
hypertable/include/Common/Allocator.h
hypertable/include/Common/Barrier.h
hypertable/include/Common/BlobHashSet.h
hypertable/include/Common/BlobHashTraits.h
hypertable/include/Common/BloomFilter.h
hypertable/include/Common/BloomFilterWithChecksum.h
hypertable/include/Common/ByteString.h
hypertable/include/Common/Checksum.h
hypertable/include/Common/Compat.h
hypertable/include/Common/Config.h
hypertable/include/Common/CstrHashMap.h
hypertable/include/Common/CstrHashTraits.h
hypertable/include/Common/DiscreteRandomGenerator.h
hypertable/include/Common/DiscreteRandomGeneratorFactory.h
hypertable/include/Common/DiscreteRandomGeneratorUniform.h
hypertable/include/Common/DiscreteRandomGeneratorZipf.h
hypertable/include/Common/DynamicBuffer.h
hypertable/include/Common/Error.h
hypertable/include/Common/FailureInducer.h
hypertable/include/Common/FileUtils.h
hypertable/include/Common/Filesystem.h
hypertable/include/Common/FixedStream.h
hypertable/include/Common/FlyweightString.h
hypertable/include/Common/HashMap.h
hypertable/include/Common/InetAddr.h
hypertable/include/Common/Init.h
hypertable/include/Common/InteractiveCommand.h
hypertable/include/Common/Logger.h
hypertable/include/Common/Lookup3.h
hypertable/include/Common/Math.h
hypertable/include/Common/Meta.h
hypertable/include/Common/MurmurHash.h
hypertable/include/Common/Mutex.h
hypertable/include/Common/NumberStream.h
hypertable/include/Common/PageArena.h
hypertable/include/Common/PageArenaAllocator.h
hypertable/include/Common/Path.h
hypertable/include/Common/Properties.h
hypertable/include/Common/Random.h
hypertable/include/Common/ReferenceCount.h
hypertable/include/Common/Runnable.h
hypertable/include/Common/ScopeGuard.h
hypertable/include/Common/Serialization.h
hypertable/include/Common/ServerLauncher.h
hypertable/include/Common/ServerStats.h
hypertable/include/Common/SockAddrMap.h
hypertable/include/Common/StaticBuffer.h
hypertable/include/Common/StlHash.h
hypertable/include/Common/Stopwatch.h
hypertable/include/Common/String.h
hypertable/include/Common/StringExt.h
hypertable/include/Common/SuperFastHash.h
hypertable/include/Common/Sweetener.h
hypertable/include/Common/System.h
hypertable/include/Common/SystemInfo.h
hypertable/include/Common/TclHash.h
hypertable/include/Common/TestHarness.h
hypertable/include/Common/TestUtils.h
hypertable/include/Common/Thread.h
hypertable/include/Common/Time.h
hypertable/include/Common/TimeInline.h
hypertable/include/Common/Timer.h
hypertable/include/Common/Usage.h
hypertable/include/Common/Version.h
hypertable/include/Common/atomic.h
hypertable/include/Common/compat-c.h
hypertable/include/Common/endian-c.h
hypertable/include/Common/md5.h
hypertable/include/Common/serialization-c.h
hypertable/include/DfsBroker/Lib/Broker.h
hypertable/include/DfsBroker/Lib/Client.h
hypertable/include/DfsBroker/Lib/ClientBufferedReaderHandler.h
hypertable/include/DfsBroker/Lib/Config.h
hypertable/include/DfsBroker/Lib/ConnectionHandler.h
hypertable/include/DfsBroker/Lib/ConnectionHandlerFactory.h
hypertable/include/DfsBroker/Lib/FileDevice.h
hypertable/include/DfsBroker/Lib/OpenFileMap.h
hypertable/include/DfsBroker/Lib/Protocol.h
hypertable/include/DfsBroker/Lib/RequestHandlerAppend.h
hypertable/include/DfsBroker/Lib/RequestHandlerClose.h
hypertable/include/DfsBroker/Lib/RequestHandlerCreate.h
hypertable/include/DfsBroker/Lib/RequestHandlerDebug.h
hypertable/include/DfsBroker/Lib/RequestHandlerExists.h
hypertable/include/DfsBroker/Lib/RequestHandlerFlush.h
hypertable/include/DfsBroker/Lib/RequestHandlerLength.h
hypertable/include/DfsBroker/Lib/RequestHandlerMkdirs.h
hypertable/include/DfsBroker/Lib/RequestHandlerOpen.h
hypertable/include/DfsBroker/Lib/RequestHandlerPread.h
hypertable/include/DfsBroker/Lib/RequestHandlerRead.h
hypertable/include/DfsBroker/Lib/RequestHandlerReaddir.h
hypertable/include/DfsBroker/Lib/RequestHandlerRemove.h
hypertable/include/DfsBroker/Lib/RequestHandlerRename.h
hypertable/include/DfsBroker/Lib/RequestHandlerRmdir.h
hypertable/include/DfsBroker/Lib/RequestHandlerSeek.h
hypertable/include/DfsBroker/Lib/RequestHandlerStatus.h
hypertable/include/DfsBroker/Lib/ResponseCallbackAppend.h
hypertable/include/DfsBroker/Lib/ResponseCallbackExists.h
hypertable/include/DfsBroker/Lib/ResponseCallbackLength.h
hypertable/include/DfsBroker/Lib/ResponseCallbackOpen.h
hypertable/include/DfsBroker/Lib/ResponseCallbackRead.h
hypertable/include/DfsBroker/Lib/ResponseCallbackReaddir.h
hypertable/include/Hyperspace/BerkeleyDbFilesystem.h
hypertable/include/Hyperspace/ClientConnectionHandler.h
hypertable/include/Hyperspace/ClientHandleState.h
hypertable/include/Hyperspace/ClientKeepaliveHandler.h
hypertable/include/Hyperspace/Config.h
hypertable/include/Hyperspace/DbtManaged.h
hypertable/include/Hyperspace/DirEntry.h
hypertable/include/Hyperspace/DirEntryAttr.h
hypertable/include/Hyperspace/Event.h
hypertable/include/Hyperspace/FileHandleCallback.h
hypertable/include/Hyperspace/HandleCallback.h
hypertable/include/Hyperspace/HsClientState.h
hypertable/include/Hyperspace/HsCommandInterpreter.h
hypertable/include/Hyperspace/HsHelpText.h
hypertable/include/Hyperspace/HsParser.h
hypertable/include/Hyperspace/LockSequencer.h
hypertable/include/Hyperspace/Master.h
hypertable/include/Hyperspace/Notification.h
hypertable/include/Hyperspace/Protocol.h
hypertable/include/Hyperspace/RequestHandlerAttrDel.h
hypertable/include/Hyperspace/RequestHandlerAttrExists.h
hypertable/include/Hyperspace/RequestHandlerAttrGet.h
hypertable/include/Hyperspace/RequestHandlerAttrList.h
hypertable/include/Hyperspace/RequestHandlerAttrSet.h
hypertable/include/Hyperspace/RequestHandlerClose.h
hypertable/include/Hyperspace/RequestHandlerDelete.h
hypertable/include/Hyperspace/RequestHandlerExists.h
hypertable/include/Hyperspace/RequestHandlerExpireSessions.h
hypertable/include/Hyperspace/RequestHandlerHandshake.h
hypertable/include/Hyperspace/RequestHandlerLock.h
hypertable/include/Hyperspace/RequestHandlerMkdir.h
hypertable/include/Hyperspace/RequestHandlerOpen.h
hypertable/include/Hyperspace/RequestHandlerReaddir.h
hypertable/include/Hyperspace/RequestHandlerReaddirAttr.h
hypertable/include/Hyperspace/RequestHandlerRelease.h
hypertable/include/Hyperspace/RequestHandlerRenewSession.h
hypertable/include/Hyperspace/RequestHandlerStatus.h
hypertable/include/Hyperspace/ResponseCallbackAttrExists.h
hypertable/include/Hyperspace/ResponseCallbackAttrGet.h
hypertable/include/Hyperspace/ResponseCallbackAttrList.h
hypertable/include/Hyperspace/ResponseCallbackExists.h
hypertable/include/Hyperspace/ResponseCallbackLock.h
hypertable/include/Hyperspace/ResponseCallbackOpen.h
hypertable/include/Hyperspace/ResponseCallbackReaddir.h
hypertable/include/Hyperspace/ResponseCallbackReaddirAttr.h
hypertable/include/Hyperspace/ServerConnectionHandler.h
hypertable/include/Hyperspace/ServerKeepaliveHandler.h
hypertable/include/Hyperspace/Session.h
hypertable/include/Hyperspace/SessionData.h
hypertable/include/Hyperspace/StateDbKeys.h
hypertable/include/Hypertable/Lib/ApacheLogParser.h
hypertable/include/Hypertable/Lib/BlockCompressionCodec.h
hypertable/include/Hypertable/Lib/BlockCompressionCodecBmz.h
hypertable/include/Hypertable/Lib/BlockCompressionCodecLzo.h
hypertable/include/Hypertable/Lib/BlockCompressionCodecNone.h
hypertable/include/Hypertable/Lib/BlockCompressionCodecQuicklz.h
hypertable/include/Hypertable/Lib/BlockCompressionCodecZlib.h
hypertable/include/Hypertable/Lib/BlockCompressionHeader.h
hypertable/include/Hypertable/Lib/BlockCompressionHeaderCommitLog.h
hypertable/include/Hypertable/Lib/Cell.h
hypertable/include/Hypertable/Lib/Cells.h
hypertable/include/Hypertable/Lib/Client.h
hypertable/include/Hypertable/Lib/CommitLog.h
hypertable/include/Hypertable/Lib/CommitLogBase.h
hypertable/include/Hypertable/Lib/CommitLogBlockStream.h
hypertable/include/Hypertable/Lib/CommitLogReader.h
hypertable/include/Hypertable/Lib/CompressorFactory.h
hypertable/include/Hypertable/Lib/Config.h
hypertable/include/Hypertable/Lib/DataGenerator.h
hypertable/include/Hypertable/Lib/DataGeneratorColumn.h
hypertable/include/Hypertable/Lib/DataGeneratorQualifier.h
hypertable/include/Hypertable/Lib/DataGeneratorRowComponent.h
hypertable/include/Hypertable/Lib/DataSource.h
hypertable/include/Hypertable/Lib/EventHandlerMasterChange.h
hypertable/include/Hypertable/Lib/FixedRandomStringGenerator.h
hypertable/include/Hypertable/Lib/HqlCommandInterpreter.h
hypertable/include/Hypertable/Lib/HqlHelpText.h
hypertable/include/Hypertable/Lib/HqlInterpreter.h
hypertable/include/Hypertable/Lib/HqlParser.h
hypertable/include/Hypertable/Lib/IntervalScanner.h
hypertable/include/Hypertable/Lib/Key.h
hypertable/include/Hypertable/Lib/KeySpec.h
hypertable/include/Hypertable/Lib/LoadDataEscape.h
hypertable/include/Hypertable/Lib/LoadDataFlags.h
hypertable/include/Hypertable/Lib/LoadDataSource.h
hypertable/include/Hypertable/Lib/LoadDataSourceFactory.h
hypertable/include/Hypertable/Lib/LoadDataSourceFileDfs.h
hypertable/include/Hypertable/Lib/LoadDataSourceFileLocal.h
hypertable/include/Hypertable/Lib/LoadDataSourceStdin.h
hypertable/include/Hypertable/Lib/LocationCache.h
hypertable/include/Hypertable/Lib/MasterClient.h
hypertable/include/Hypertable/Lib/MasterFileHandler.h
hypertable/include/Hypertable/Lib/MasterMetaLog.h
hypertable/include/Hypertable/Lib/MasterMetaLogEntryFactory.h
hypertable/include/Hypertable/Lib/MasterMetaLogReader.h
hypertable/include/Hypertable/Lib/MasterProtocol.h
hypertable/include/Hypertable/Lib/MetaLog.h
hypertable/include/Hypertable/Lib/MetaLogDfsBase.h
hypertable/include/Hypertable/Lib/MetaLogEntryBase.h
hypertable/include/Hypertable/Lib/MetaLogReader.h
hypertable/include/Hypertable/Lib/MetaLogReaderDfsBase.h
hypertable/include/Hypertable/Lib/MetaLogVersion.h
hypertable/include/Hypertable/Lib/RangeLocationInfo.h
hypertable/include/Hypertable/Lib/RangeLocator.h
hypertable/include/Hypertable/Lib/RangeServerClient.h
hypertable/include/Hypertable/Lib/RangeServerMetaLog.h
hypertable/include/Hypertable/Lib/RangeServerMetaLogEntries.h
hypertable/include/Hypertable/Lib/RangeServerMetaLogEntryFactory.h
hypertable/include/Hypertable/Lib/RangeServerMetaLogReader.h
hypertable/include/Hypertable/Lib/RangeServerProtocol.h
hypertable/include/Hypertable/Lib/RangeState.h
hypertable/include/Hypertable/Lib/RootFileHandler.h
hypertable/include/Hypertable/Lib/ScanBlock.h
hypertable/include/Hypertable/Lib/ScanSpec.h
hypertable/include/Hypertable/Lib/Schema.h
hypertable/include/Hypertable/Lib/SerializedKey.h
hypertable/include/Hypertable/Lib/Stats.h
hypertable/include/Hypertable/Lib/StatsV0.h
hypertable/include/Hypertable/Lib/Table.h
hypertable/include/Hypertable/Lib/TableDumper.h
hypertable/include/Hypertable/Lib/TableMutator.h
hypertable/include/Hypertable/Lib/TableMutatorCompletionCounter.h
hypertable/include/Hypertable/Lib/TableMutatorDispatchHandler.h
hypertable/include/Hypertable/Lib/TableMutatorFlushHandler.h
hypertable/include/Hypertable/Lib/TableMutatorIntervalHandler.h
hypertable/include/Hypertable/Lib/TableMutatorScatterBuffer.h
hypertable/include/Hypertable/Lib/TableMutatorSendBuffer.h
hypertable/include/Hypertable/Lib/TableMutatorShared.h
hypertable/include/Hypertable/Lib/TableMutatorSyncDispatchHandler.h
hypertable/include/Hypertable/Lib/TableScanner.h
hypertable/include/Hypertable/Lib/TableSplit.h
hypertable/include/Hypertable/Lib/TestData.h
hypertable/include/Hypertable/Lib/TestSource.h
hypertable/include/Hypertable/Lib/Timestamp.h
hypertable/include/Hypertable/Lib/Types.h
hypertable/include/ThriftBroker/Client.h
hypertable/include/ThriftBroker/Client.thrift
hypertable/include/ThriftBroker/Hql.thrift
hypertable/include/ThriftBroker/ThriftHelper.h
hypertable/include/Tools/Lib/CommandInterpreter.h
hypertable/include/Tools/Lib/CommandShell.h
hypertable/include/Tools/Lib/Notifier.h
hypertable/lib/java/commons-cli-1.2.jar
hypertable/lib/java/commons-logging-1.0.4.jar
hypertable/lib/java/hadoop-core-0.20.2+320.LICENSE.txt
hypertable/lib/java/hadoop-core-0.20.2+320.jar
hypertable/lib/java/hbase-0.20.4.jar
hypertable/lib/java/hive-exec-0.6.0.jar
hypertable/lib/java/hive-metastore-0.6.0.jar
hypertable/lib/java/hive-serde-0.6.0.jar
hypertable/lib/java/hypertable-0.9.3.4-examples.jar
hypertable/lib/java/hypertable-0.9.3.4.jar
hypertable/lib/java/junit-4.3.1.LICENSE.txt
hypertable/lib/java/junit-4.3.1.jar
hypertable/lib/java/libthrift-0.3.0.jar
hypertable/lib/java/log4j-1.2.13.jar
hypertable/lib/java/slf4j-api-1.5.8.jar
hypertable/lib/java/slf4j-log4j12-1.5.8.jar
hypertable/lib/java/zookeeper-3.2.2.jar
hypertable/lib/libHyperComm.a
hypertable/lib/libHyperCommon.a
hypertable/lib/libHyperDfsBroker.a
hypertable/lib/libHyperDfsCmds.a
hypertable/lib/libHyperRanger.a
hypertable/lib/libHyperThrift.a
hypertable/lib/libHyperThriftConfig.a
hypertable/lib/libHyperTools.a
hypertable/lib/libHyperspace.a
hypertable/lib/libHypertable.a
hypertable/lib/perl/Hypertable/ThriftClient.pm
hypertable/lib/perl/client_test.pl
hypertable/lib/perl/gen-perl/Hypertable/ThriftGen/ClientService.pm
hypertable/lib/perl/gen-perl/Hypertable/ThriftGen/Constants.pm
hypertable/lib/perl/gen-perl/Hypertable/ThriftGen/Types.pm
hypertable/lib/perl/gen-perl/Hypertable/ThriftGen2/Constants.pm
hypertable/lib/perl/gen-perl/Hypertable/ThriftGen2/HqlService.pm
hypertable/lib/perl/gen-perl/Hypertable/ThriftGen2/Types.pm
hypertable/lib/php/ThriftClient.php
hypertable/lib/php/client_test.php
hypertable/lib/php/gen-php/Client/ClientService.php
hypertable/lib/php/gen-php/Client/Client_types.php
hypertable/lib/php/gen-php/Hql/HqlService.php
hypertable/lib/php/gen-php/Hql/Hql_types.php
hypertable/lib/py/client_test.py
hypertable/lib/py/gen-py/__init__.py
hypertable/lib/py/gen-py/hyperthrift/__init__.py
hypertable/lib/py/gen-py/hyperthrift/gen/ClientService-remote
hypertable/lib/py/gen-py/hyperthrift/gen/ClientService.py
hypertable/lib/py/gen-py/hyperthrift/gen/__init__.py
hypertable/lib/py/gen-py/hyperthrift/gen/constants.py
hypertable/lib/py/gen-py/hyperthrift/gen/ttypes.py
hypertable/lib/py/gen-py/hyperthrift/gen2/HqlService-remote
hypertable/lib/py/gen-py/hyperthrift/gen2/HqlService.py
hypertable/lib/py/gen-py/hyperthrift/gen2/__init__.py
hypertable/lib/py/gen-py/hyperthrift/gen2/constants.py
hypertable/lib/py/gen-py/hyperthrift/gen2/ttypes.py
hypertable/lib/py/hypertable/__init__.py
hypertable/lib/py/hypertable/thriftclient.py
hypertable/lib/rb/client_test.rb
hypertable/lib/rb/hypertable/gen-rb/client_constants.rb
hypertable/lib/rb/hypertable/gen-rb/client_service.rb
hypertable/lib/rb/hypertable/gen-rb/client_types.rb
hypertable/lib/rb/hypertable/gen-rb/hql_constants.rb
hypertable/lib/rb/hypertable/gen-rb/hql_service.rb
hypertable/lib/rb/hypertable/gen-rb/hql_types.rb
hypertable/lib/rb/hypertable/thrift_client.rb
@dirrm hypertable/lib/rb/hypertable/gen-rb
@dirrm hypertable/lib/rb/hypertable
@dirrm hypertable/lib/rb
@dirrm hypertable/lib/py/hypertable
@dirrm hypertable/lib/py/gen-py/hyperthrift/gen2
@dirrm hypertable/lib/py/gen-py/hyperthrift/gen
@dirrm hypertable/lib/py/gen-py/hyperthrift
@dirrm hypertable/lib/py/gen-py
@dirrm hypertable/lib/py
@dirrm hypertable/lib/php/gen-php/Hql
@dirrm hypertable/lib/php/gen-php/Client
@dirrm hypertable/lib/php/gen-php
@dirrm hypertable/lib/php
@dirrm hypertable/lib/perl/gen-perl/Hypertable/ThriftGen2
@dirrm hypertable/lib/perl/gen-perl/Hypertable/ThriftGen
@dirrm hypertable/lib/perl/gen-perl/Hypertable
@dirrm hypertable/lib/perl/gen-perl
@dirrm hypertable/lib/perl/Hypertable
@dirrm hypertable/lib/perl
@dirrm hypertable/lib/java
@dirrm hypertable/lib
@dirrm hypertable/include/Tools/Lib
@dirrm hypertable/include/Tools
@dirrm hypertable/include/ThriftBroker
@dirrm hypertable/include/Hypertable/Lib
@dirrm hypertable/include/Hypertable
@dirrm hypertable/include/Hyperspace
@dirrm hypertable/include/DfsBroker/Lib
@dirrm hypertable/include/DfsBroker
@dirrm hypertable/include/Common
@dirrm hypertable/include/AsyncComm
@dirrm hypertable/include
@dirrm hypertable/examples/hql_tutorial
@dirrm hypertable/examples/freebase
@dirrm hypertable/examples/apache_log
@dirrm hypertable/examples
@dirrm hypertable/conf
@dirrm hypertable/bin
@dirrm hypertable

View File

@ -51,7 +51,6 @@
SUBDIR += apvlv
SUBDIR += aqsis
SUBDIR += asciio
SUBDIR += autopano-sift
SUBDIR += autopano-sift-c
SUBDIR += autoq3d
SUBDIR += autotrace

View File

@ -1,75 +0,0 @@
# New ports collection makefile for: autopano-sift
# Date created: 11 April 2006
# Whom: J.R. Oldroyd <fbsd@opal.com>
#
# $FreeBSD$
#
PORTNAME= autopano-sift
PORTVERSION= 2.4
PORTREVISION= 6
CATEGORIES= graphics
MASTER_SITES= http://user.cs.tu-berlin.de/~nowozin/autopano-sift/
MAINTAINER= vd@FreeBSD.org
COMMENT= Automatic panorama control point generation tool
RESTRICTED= May be covered by patents
DEPRECATED= Disappeared from vendor site. No longer required by graphics/hugin
EXPIRATION_DATE= 2012-05-10
BROKEN= unfetchable
LIB_DEPENDS= gdiplus:${PORTSDIR}/x11-toolkits/libgdiplus
CONFLICTS= autopano-sift-C-[0-9]*
WRKSRC= ${WRKDIR}/${DISTNAME}/src
SUB_FILES= autopano
USE_GMAKE= yes
USE_GNOME= gtksharp10
MAKE_JOBS_UNSAFE= yes
MAN1= autopano-complete.1 \
autopano-complete.old.1 \
autopano.1 \
autopanog.1 \
generatekeys.1 \
showone.1 \
showtwo.1
MAN7= autopano-sift.7
do-install:
${MKDIR} ${DATADIR}
${INSTALL} ${WRKSRC}/bin/ICSharpCode.SharpZipLib.dll ${DATADIR}/
${INSTALL_SCRIPT} ${WRKSRC}/bin/autopano-complete.sh ${DATADIR}/
${INSTALL_SCRIPT} ${WRKSRC}/bin/autopano-complete.old.sh ${DATADIR}/
${INSTALL} ${WRKSRC}/bin/autopano.exe ${DATADIR}/
${INSTALL} ${WRKSRC}/bin/autopanog.exe ${DATADIR}/
${INSTALL} ${WRKSRC}/bin/generatekeys-sd.exe ${DATADIR}/
${INSTALL} ${WRKSRC}/bin/generatekeys.exe ${DATADIR}/
${INSTALL} ${WRKSRC}/bin/libsift.dll ${DATADIR}/
${INSTALL} ${WRKSRC}/bin/showone.exe ${DATADIR}/
${INSTALL} ${WRKSRC}/bin/showtwo.exe ${DATADIR}/
${INSTALL_SCRIPT} ${WRKDIR}/autopano ${PREFIX}/bin/autopano
${LN} ${PREFIX}/bin/autopano ${PREFIX}/bin/autopanog
${LN} ${PREFIX}/bin/autopano ${PREFIX}/bin/generatekeys-sd
${LN} ${PREFIX}/bin/autopano ${PREFIX}/bin/generatekeys
${LN} ${PREFIX}/bin/autopano ${PREFIX}/bin/showone
${LN} ${PREFIX}/bin/autopano ${PREFIX}/bin/showtwo
${LN} -s ${DATADIR}/autopano-complete.sh ${PREFIX}/bin/autopano-complete
${LN} -s ${DATADIR}/autopano-complete.old.sh ${PREFIX}/bin/autopano-complete.old
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/autopano-complete.1 ${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/autopano-complete.old.1 ${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/autopano.1 ${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/autopanog.1 ${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/generatekeys.1 ${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/showone.1 ${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/showtwo.1 ${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKDIR}/${DISTNAME}/doc/autopano-sift.7 ${PREFIX}/man/man7/
.include "${.CURDIR}/../../lang/mono/bsd.mono.mk"
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (autopano-sift-2.4.tar.gz) = 0f2ee8887550f77ca77be9ba7ff1888099c316de03362cb324ed32fd6ffeea35
SIZE (autopano-sift-2.4.tar.gz) = 640117

View File

@ -1,13 +0,0 @@
#!/bin/sh
#
# wrapper script to invoke mono
#
# this same script is used for:
# autopano
# autopanog
# generatekeys-sd
# generatekeys
# showone
# showtwo
exec mono %%DATADIR%%/`basename $0`.exe ${@+"$@"}

View File

@ -1,21 +0,0 @@
--- Makefile.orig Mon Oct 31 07:45:20 2005
+++ Makefile Tue Apr 11 14:12:32 2006
@@ -72,15 +72,15 @@
distclean:
rm -f libsift.dll
- make $(MAKE_OPTIONS) -C util clean
+ $(MAKE) $(MAKE_OPTIONS) -C util clean
utils:
- make $(MAKE_OPTIONS) -C util all
+ $(MAKE) $(MAKE_OPTIONS) -C util all
release: clean releasetempclean releasetempsetup all bin_install
# autopano-sift
svn export . /tmp/$(APSVER)/src
- make -C util/man/
+ $(MAKE) -C util/man/
mkdir /tmp/$(APSVER)/doc
cp util/man/*.[17] util/man/*.pdf util/man/*.txt /tmp/$(APSVER)/doc
mkdir /tmp/$(APSVER)/bin

View File

@ -1,15 +0,0 @@
--- bin/autopano-complete.sh.orig Sat Apr 9 05:40:12 2005
+++ bin/autopano-complete.sh Wed Apr 12 12:14:10 2006
@@ -7,10 +7,10 @@
MONO=$(which mono)
# Set this to the directory you installed autopano-sift into, for example
-#AUTOPANO_PATH=/usr/local/autopano-sift/bin
+AUTOPANO_PATH=/usr/local/share/autopano-sift
# Do not use a trailing backslash. If the executeables are within your path
# (recommended, you can leave the line below).
-AUTOPANO_PATH=$(dirname $(which generatekeys.exe))
+#AUTOPANO_PATH=$(dirname $(which generatekeys.exe))
usage()
{

View File

@ -1,31 +0,0 @@
--- util/Makefile.orig Sat Jan 15 11:33:38 2005
+++ util/Makefile Tue Apr 11 14:14:54 2006
@@ -36,8 +36,8 @@
#SOURCES=GUIImage.cs DrawingPrimitives.cs BasicImagingInterface.cs
all: autopano.exe showone.exe showtwo.exe generatekeys.exe generatekeys-sd.exe
- make $(MAKE_OPTIONS) -C autopanog all
- make $(MAKE_OPTIONS) -C autopano-win32 all
+ $(MAKE) $(MAKE_OPTIONS) -C autopanog all
+ $(MAKE) $(MAKE_OPTIONS) -C autopano-win32 all
autopano.exe: Autopano.cs DrawingPrimitives.cs BasicImagingInterface.cs GUIImage-Drawing.cs
$(CSC) $(CSCFLAGS) /out:autopano.exe Autopano.cs \
@@ -50,7 +50,7 @@
generatekeys-sd.exe:
mv generatekeys.exe generatekeys-gtk.exe
- make -C . systemdrawing=yes generatekeys.exe
+ $(MAKE) -C . systemdrawing=yes generatekeys.exe
mv generatekeys.exe generatekeys-sd.exe
mv generatekeys-gtk.exe generatekeys.exe
@@ -65,6 +65,6 @@
clean:
rm -f *.exe
- make $(MAKE_OPTIONS) -C autopanog/ clean
- make $(MAKE_OPTIONS) -C autopano-win32/ clean
+ $(MAKE) $(MAKE_OPTIONS) -C autopanog/ clean
+ $(MAKE) $(MAKE_OPTIONS) -C autopano-win32/ clean

View File

@ -1,17 +0,0 @@
Automatic panorama control point generation tool for use with hugin.
Autopano analyses two or more images and automatically generates
control points - coordinates in the images where the views overlap.
This can be fed to hugin which then stitches the files together and
enblend which combines the colors to remove seam lines.
===============================================================================
The use of this software is restricted by certain conditions.
See the "LICENSE" file distributed with the program for details.
The University of British Columbia has applied for a patent on the SIFT
algorithm in the United States. Commercial applications of this software may
require a license from the University of British Columbia.
===============================================================================
WWW: http://user.cs.tu-berlin.de/~nowozin/autopano-sift/

View File

@ -1,19 +0,0 @@
bin/autopano
bin/autopano-complete
bin/autopano-complete.old
bin/autopanog
bin/generatekeys
bin/generatekeys-sd
bin/showone
bin/showtwo
%%DATADIR%%/ICSharpCode.SharpZipLib.dll
%%DATADIR%%/autopano-complete.sh
%%DATADIR%%/autopano-complete.old.sh
%%DATADIR%%/autopano.exe
%%DATADIR%%/autopanog.exe
%%DATADIR%%/generatekeys-sd.exe
%%DATADIR%%/generatekeys.exe
%%DATADIR%%/libsift.dll
%%DATADIR%%/showone.exe
%%DATADIR%%/showtwo.exe
@dirrm share/autopano-sift

View File

@ -5,7 +5,6 @@
SUBDIR += achievo
SUBDIR += aclgen
SUBDIR += airoflash
SUBDIR += amanda-client
SUBDIR += amanda-perl-wrapper
SUBDIR += amanda-server

View File

@ -1,34 +0,0 @@
# New ports collection makefile for: airoflash
# Date created: 13 Mar 2002
# Whom: Doug Ambrisko <ambrisko@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= airoflash
PORTVERSION= ${AF_VERSION}
CATEGORIES= misc
MASTER_SITES= "http://airo-linux.cvs.sourceforge.net/viewvc/airo-linux/airo-linux/tools/airoflash.c?revision=${AF_VERSION}"
DISTNAME= airoflash.c
EXTRACT_SUFX=
MAINTAINER= ambrisko@FreeBSD.org
COMMENT= Flash utility for Cisco/Aironet 802.11 wireless cards
DEPRECATED= BROKEN for more than 6 month
EXPIRATION_DATE= 2012-05-10
BROKEN= fails to fetch
AF_VERSION= 1.7
PLIST_FILES= bin/airoflash
do-fetch:
[ -f ${DISTDIR}/${DISTNAME} ] || \
${FETCH_CMD} -o ${DISTDIR}/${DISTNAME} ${MASTER_SITES}
do-extract:
${MKDIR} ${WRKSRC}
${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (airoflash.c) = fef4777215b0053fc8e0f01958d0b8656d06355f68f5fc0934c8d622d7451c85
SIZE (airoflash.c) = 11634

View File

@ -1,9 +0,0 @@
--- /dev/null Wed Mar 13 11:58:15 2002
+++ Makefile Wed Mar 13 12:00:43 2002
@@ -0,0 +1,6 @@
+BINDIR?= ${PREFIX}/bin
+PROG= airoflash
+NOMAN=
+NO_MAN=
+
+.include <bsd.prog.mk>

View File

@ -1,3 +0,0 @@
Flash utility for upgrading firmware in Cisco/Aironet 802.11 cards.
WWW: http://sourceforge.net/projects/airo-linux/

View File

@ -98,7 +98,6 @@
SUBDIR += icons-tango
SUBDIR += icons-tango-extras
SUBDIR += irssi-themes
SUBDIR += kde-icons-amaranth
SUBDIR += kde-icons-amaranth-althaea
SUBDIR += kde-icons-black-and-white
SUBDIR += kde-icons-cezanne
@ -110,7 +109,6 @@
SUBDIR += kde-icons-graphite-rade8
SUBDIR += kde-icons-icosx
SUBDIR += kde-icons-kool-gorilla
SUBDIR += kde-icons-krystaline
SUBDIR += kde-icons-lime-rade8
SUBDIR += kde-icons-lush
SUBDIR += kde-icons-marbles-translucent
@ -120,7 +118,6 @@
SUBDIR += kde-icons-nuovext2
SUBDIR += kde-icons-nuvola
SUBDIR += kde-icons-os-k
SUBDIR += kde-icons-realistic
SUBDIR += kde-icons-sky
SUBDIR += kde-icons-steel
SUBDIR += kde-icons-umicons

View File

@ -1,23 +0,0 @@
# New ports collection makefile for: KDE iconset Amaranth
# Date created: Fri Feb 13 11:24:29 UTC 2004
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= amaranth
PORTVERSION= 0.8
MASTER_SITES= ${MASTER_SITE_THEMES}
MASTER_SITE_SUBDIR= amaranth
DISTNAME= ${PORTNAME}-default-${PORTVERSION:C/^.//}
COMMENT= KDE smooth iconset
DEPRECATED= BROKEN for more than 6 month
EXPIRATION_DATE= 2012-05-10
BROKEN= Does not fetch
WRKSRC= "${WRKDIR}/Amaranth"
.include "${.CURDIR}/../kde-icons-noia/Makefile.icons"

View File

@ -1,2 +0,0 @@
SHA256 (KDE/amaranth-default-.8.tar.gz) = 76421071faf0d930a00a3128738c4b7f091a97c335d96fae8119a5658f3adc7c
SIZE (KDE/amaranth-default-.8.tar.gz) = 2767489

View File

@ -1,11 +0,0 @@
[ excerpt from developer's web site ]
Smooth iconset for KDE -- Created using Adobe Illustrator 10. If
anyone is interested in a window decoration/widget theme, and knows
how to code it, let me know -- It's already being done for GTK/Metacity,
and all it needs is someone to transfer the look to QT/KWin.
Due to themes.freshmeat.net's upload limit, I've had to drop the
128x icons, in order to keep the file under 5mb.
WWW: http://www.kde-look.org/content/show.php?content=5895

View File

@ -1,9 +0,0 @@
ATTENTIONATTENTION:
How to install a new icon theme
1) Open the KDE-Menu and start the Control Center
2) Click on "Look and Feel", then "Icons"
3) Select Amaranth iconset
4) Click "Apply"
5) Have fun! :-)

View File

@ -1,24 +0,0 @@
# New ports collection makefile for: KDE iconset Krystaline
# Date created: Thu Nov 25 00:47:38 UTC 2004
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= krystaline
PORTVERSION= 1.1.6
MASTER_SITES= http://files.fredemmott.co.uk/
COMMENT= KDE Krystaline iconset
DEPRECATED= BROKEN for more than 6 month
EXPIRATION_DATE= 2012-05-10
BROKEN= does not fetch
WRKSRC= ${WRKDIR}/${PORTNAME}
PLIST_DIR_PATTERN_EXTRA= -v "random"
PLIST_FILE_PATTERN_EXTRA= -v "random"
.include "${.CURDIR}/../kde-icons-noia/Makefile.icons"

View File

@ -1,2 +0,0 @@
SHA256 (KDE/krystaline-1.1.6.tar.gz) = 851dd1cee9313ee7204a3f15821b9511952fbc38af45f91a344ce47c62f9cb17
SIZE (KDE/krystaline-1.1.6.tar.gz) = 5095731

View File

@ -1,8 +0,0 @@
[ excerpt from developer's web site ]
KDE Krystaline iconset.
This iconset is based on the original krystalkurve icons and idea
by Dariusz Arciszewski.
WWW: http://www.kde-look.org/content/show.php?content=17509

View File

@ -1,9 +0,0 @@
ATTENTIONATTENTION:
How to install a new icon theme
1) Open the KDE-Menu and start the Control Center
2) Click on "Look and Feel", then "Icons"
3) Select Krystaline 1.1.6 theme iconset
4) Click "Apply"
5) Have fun! :-)

View File

@ -1,23 +0,0 @@
# New ports collection makefile for: KDE iconset Realistic
# Date created: Thu Apr 8 02:43:16 UTC 2004
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= realistic
PORTVERSION= 0.10
MASTER_SITES= ${MASTER_SITE_THEMES}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}-default-${PORTVERSION}
COMMENT= KDE Realistic complete photo-based iconset
DEPRECATED= BROKEN for more than 6 month
EXPIRATION_DATE= 2012-05-10
BROKEN= Does not fetch
WRKSRC= "${WRKDIR}/Realistic"
.include "${.CURDIR}/../kde-icons-noia/Makefile.icons"

View File

@ -1,2 +0,0 @@
SHA256 (KDE/realistic-default-0.10.tar.gz) = 0a994ac1f1ff93e16c09455aa2e78f1cecad6f941e22610f53afe140af29256c
SIZE (KDE/realistic-default-0.10.tar.gz) = 4218411

View File

@ -1,6 +0,0 @@
[ excerpt from developer's web site ]
Realistic is a photo-icon theme.
Author: Jean-Philippe Cohen <jpcohen2@yahoo.fr>
WWW: http://www.kde-look.org/content/show.php?content=9707

View File

@ -1,9 +0,0 @@
ATTENTIONATTENTION:
How to install a new icon theme
1) Open the KDE-Menu and start the Control Center
2) Click on "Look and Feel", then "Icons"
3) Select Realistic theme iconset
4) Click "Apply"
5) Have fun! :-)

File diff suppressed because it is too large Load Diff