summaryrefslogtreecommitdiff
path: root/ftp/jigdo/scripts/configure.jigdo
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2006-01-30 21:36:28 +0000
committerPav Lucistnik <pav@FreeBSD.org>2006-01-30 21:36:28 +0000
commitfbab09fee302574e578e4f0d1b6082cdae4defb4 (patch)
tree2e89197b88b8a883c56aef7a5d0d89dc5d374850 /ftp/jigdo/scripts/configure.jigdo
parentUpgrade to 1.63.0. (diff)
Populate newly create net-p2p category with these ports:
ftp/jigdo net/amule1 net/amule2 net/apollon net/azureus net/bnbt net/btpeer net/btqueue net/cdonkey net/ctorrent net/dcd net/dclib net/dctc net/dctc-gui net/dctc-gui-qt net/edonkey-gui-gtk net/edonkey-gui-gtk-urlslave net/fcptools net/fidelio net/freenet net/frost net/giftcurs net/giftoxic net/giftui net/gift net/gift-fasttrack net/gift-gnutella net/gift-openft net/gkrellm-gift net/gnewtellium net/gnome-btdownload net/gnunet net/gtkhx net/gtk-gnutella net/gtorrentviewer net/hagelslag net/hx net/i2p net/javadc net/kmldonkey net/ktorrent net/libbt net/liberator net/libfreenet net/libpdtp net/libtorrent net/limewire net/linux-agsatellite net/linux-edonkey-core net/linux-edonkey-server net/linux-jigdo net/linux-overnet-core net/minder net/mldonkey net/mldonkey-core net/mldonkey-core-devel net/mldonkey-devel net/mldonkey-gui net/mldonkey-gui-devel net/mldonkey-perlreactor net/mldonkey-sancho net/mldonkey-serverspy net/mldonkey-urlslave net/mutella net/mute-net net/mute-net-gui net/mute-net-text net/napshare net/nicotine net/opendchub net/peercast net/phex net/pyslsk net/py-bittornado net/py-bittornado-core net/py-bittorrent net/py-bittorrent-core net/py-bittorrent-core-devel net/py-bittorrent-devel net/py-fngrab net/py-kenosis net/py-kenosis-bittorrent net/py-py2play net/p5-pdonkey net/qtella net/qtorrent net/rtorrent net/squall net/torrentflux net/torrentsniff net/trackerbt net/transmission net/valknut net/verlihub net/verlihub-plugins net/xmule net/xnap misc/ed2k misc/edonkey-tool-hash misc/linux-edonkey-tool-recovermet Repocopies by: marcus
Notes
Notes: svn path=/head/; revision=154851
Diffstat (limited to 'ftp/jigdo/scripts/configure.jigdo')
-rw-r--r--ftp/jigdo/scripts/configure.jigdo73
1 files changed, 0 insertions, 73 deletions
diff --git a/ftp/jigdo/scripts/configure.jigdo b/ftp/jigdo/scripts/configure.jigdo
deleted file mode 100644
index 43bc6df6319e..000000000000
--- a/ftp/jigdo/scripts/configure.jigdo
+++ /dev/null
@@ -1,73 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-
-if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
- exit
-fi
-
-tempfile=`mktemp -t checklist`
-
-if [ "${BATCH}" = "yes" ]; then
- set \"DB3\"
-else
- dialog --title "Jigsaw Download configuration options" \
- --clear --checklist "\n\
-Please select desired options:" -1 -1 16 \
-GUI "Graphical User Interface (experimental)" OFF \
-DB3 "Berkeley DB3 (used for jigdo-file's cache)" ON \
-NLS "Native Language Support (no language files yet)" OFF \
-2> $tempfile
-
- retval=$?
-
- if [ -s $tempfile ]; then
- set `cat $tempfile`
- fi
- rm -f $tempfile
-
- case $retval in
- 0) if [ -z "$*" ]; then
- echo "Nothing selected"
- fi
- ;;
- 1) echo "Cancel pressed."
- exit 1
- ;;
- esac
-fi
-
-${MKDIR} ${WRKDIRPREFIX}${CURDIR}
-exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
-
-echo "PREFIX= ${PREFIX}"
-
-SUB_GUI="@comment "
-
-while [ "$1" ]; do
- case $1 in
- \"GUI\")
- echo "CONFIGURE_ARGS+= --with-gui"
- echo "LIB_DEPENDS+= gtk-x11-2.0:\${PORTSDIR}/x11-toolkits/gtk20"
- echo "MAN1+= jigdo.1"
- SUB_GUI=""
- ;;
- \"DB3\")
- echo "CONFIGURE_ARGS+= --with-libdb=-ldb3"
- echo "CONFIGURE_ENV+= \
- CPPFLAGS=\"-I\${LOCALBASE}/include/db3\" \
- LIBS=\"-L\${LOCALBASE}/lib\" LDFLAGS+=\"-ldb3\""
- echo "LIB_DEPENDS= db3:\${PORTSDIR}/databases/db3"
- ;;
- \"NLS\")
- echo "CONFIGURE_ARGS+= --enable-nls=${LOCALBASE}/include"
- ;;
- *)
- echo "Invalid option(s): $*" > /dev/stderr
- rm -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
- exit 1
- ;;
- esac
- shift
-done
-
-echo "PLIST_SUB+= SUB_GUI=\"${SUB_GUI}\""