From 11b0a8d40ccde28f3ae6d1632f5dd6bd44635a6e Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 15 Mar 2006 08:18:34 +0000 Subject: [PATCH] add package from Duncan, thx. changed the patches and some minor stuff SVN-Revision: 3373 --- openwrt/package/Config.in | 1 + openwrt/package/Makefile | 2 + openwrt/package/cbtt/Config.in | 13 +++++ openwrt/package/cbtt/Makefile | 47 +++++++++++++++++++ openwrt/package/cbtt/ipkg/cbtt-mysql.control | 7 +++ openwrt/package/cbtt/ipkg/cbtt.control | 7 +++ .../package/cbtt/patches/100-compile.patch | 41 ++++++++++++++++ 7 files changed, 118 insertions(+) create mode 100644 openwrt/package/cbtt/Config.in create mode 100644 openwrt/package/cbtt/Makefile create mode 100644 openwrt/package/cbtt/ipkg/cbtt-mysql.control create mode 100644 openwrt/package/cbtt/ipkg/cbtt.control create mode 100644 openwrt/package/cbtt/patches/100-compile.patch diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in index 99c0f2fe03..74d2282b28 100644 --- a/openwrt/package/Config.in +++ b/openwrt/package/Config.in @@ -16,6 +16,7 @@ endmenu menu "Applications" source "package/collectd/Config.in" +source "package/cbtt/Config.in" source "package/ctorrent/Config.in" source "package/deco/Config.in" source "package/gpsd/Config.in" diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 2e7e0db0a4..0f2c6df1a0 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -18,6 +18,7 @@ package-$(BR2_PACKAGE_BLUEZ_UTILS) += bluez-utils package-$(BR2_PACKAGE_BRIDGE) += bridge package-$(BR2_PACKAGE_BUSYBOX) += busybox package-$(BR2_PACKAGE_BWM) += bwm +package-$(BR2_PACKAGE_CBTT) += cbtt package-$(BR2_PACKAGE_CGILIB) += cgilib package-$(BR2_PACKAGE_CHILLISPOT) += chillispot package-$(BR2_PACKAGE_CIFSMOUNT) += cifsmount @@ -283,6 +284,7 @@ arpwatch-compile: libpcap-compile atftp-compile: readline-compile avahi-compile: libdaemon-compile expat-compile libgdbm-compile bind-compile: openssl-compile +cbtt-compile: mysql-compile zlib-compile clinkc-compile: expat-compile curl-compile: openssl-compile zlib-compile cyrus-sasl-compile: openssl-compile diff --git a/openwrt/package/cbtt/Config.in b/openwrt/package/cbtt/Config.in new file mode 100644 index 0000000000..f0fe4addfe --- /dev/null +++ b/openwrt/package/cbtt/Config.in @@ -0,0 +1,13 @@ +config BR2_PACKAGE_CBTT + prompt "cbtt.............................. a C BitTorrent Tracker" + tristate + default m if CONFIG_DEVEL + help + A C BitTorrent Tracker + +config BR2_PACKAGE_CBTT_MYSQL + prompt "cbtt-mysql........................ a C BitTorrent Tracker (mysql)" + tristate + default m if CONFIG_DEVEL + help + A C BitTorrent Tracker diff --git a/openwrt/package/cbtt/Makefile b/openwrt/package/cbtt/Makefile new file mode 100644 index 0000000000..ebe1243dac --- /dev/null +++ b/openwrt/package/cbtt/Makefile @@ -0,0 +1,47 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=cbtt +PKG_VERSION:=20060211 +PKG_RELEASE:=1 +PKG_MD5SUM:=19abea2817c49ccc9438e9671c402984 + +PKG_SOURCE_URL:=@SF/bnbtusermods +PKG_SOURCE:=$(PKG_NAME)80-$(PKG_VERSION)-src.tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)80-$(PKG_VERSION)-src +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,CBTT,cbtt,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,CBTT_MYSQL,cbtt-mysql,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + touch $@ + +$(PKG_BUILD_DIR)/.built: + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + LFLAGS="-L$(STAGING_DIR)/usr/lib -L $(STAGING_DIR)/usr/lib/mysql -L. -lz -lmysqlclient" \ + CFLAGS="-I$(STAGING_DIR)/usr/include" + mkdir -p $(PKG_INSTALL_DIR)/usr/bin + $(CP) $(PKG_BUILD_DIR)/bnbt $(PKG_INSTALL_DIR)/usr/bin/ + $(CP) $(PKG_BUILD_DIR)/bnbtmysql $(PKG_INSTALL_DIR)/usr/bin/ + touch $@ + +$(IPKG_CBTT): + install -d -m0755 $(IDIR_CBTT)/usr/bin + install -m0755 $(PKG_INSTALL_DIR)/usr/bin/bnbt $(IDIR_CBTT)/usr/bin/ + $(RSTRIP) $(IDIR_CBTT) + $(IPKG_BUILD) $(IDIR_CBTT) $(PACKAGE_DIR) + +$(IPKG_CBTT_MYSQL): + install -d -m0755 $(IDIR_CBTT_MYSQL)/usr/bin + install -m0755 $(PKG_INSTALL_DIR)/usr/bin/bnbtmysql $(IDIR_CBTT_MYSQL)/usr/bin/ + $(RSTRIP) $(IDIR_CBTT_MYSQL) + $(IPKG_BUILD) $(IDIR_CBTT_MYSQL) $(PACKAGE_DIR) diff --git a/openwrt/package/cbtt/ipkg/cbtt-mysql.control b/openwrt/package/cbtt/ipkg/cbtt-mysql.control new file mode 100644 index 0000000000..4786eaa238 --- /dev/null +++ b/openwrt/package/cbtt/ipkg/cbtt-mysql.control @@ -0,0 +1,7 @@ +Package: cbtt-mysql +Priority: optional +Section: net +Maintainer: Duncan Lindley +Source: http://bnbtusermods.sourceforge.net/ +Depends: zlib, libmysqlclient +Description: Bittorrent tracker with mysql support diff --git a/openwrt/package/cbtt/ipkg/cbtt.control b/openwrt/package/cbtt/ipkg/cbtt.control new file mode 100644 index 0000000000..d5e6d92891 --- /dev/null +++ b/openwrt/package/cbtt/ipkg/cbtt.control @@ -0,0 +1,7 @@ +Package: cbtt +Priority: optional +Section: net +Maintainer: Duncan Lindley +Source: http://bnbtusermods.sourceforge.net/ +Depends: zlib +Description: Bittorrent tracker diff --git a/openwrt/package/cbtt/patches/100-compile.patch b/openwrt/package/cbtt/patches/100-compile.patch new file mode 100644 index 0000000000..b767dfb3f9 --- /dev/null +++ b/openwrt/package/cbtt/patches/100-compile.patch @@ -0,0 +1,41 @@ +diff -Nur cbtt80-20060211-src/Makefile cbtt80-20060211-src.patched/Makefile +--- cbtt80-20060211-src/Makefile 2006-02-07 18:44:58.000000000 +0100 ++++ cbtt80-20060211-src.patched/Makefile 2006-03-15 09:01:35.000000000 +0100 +@@ -1,6 +1,5 @@ + SHELL = /bin/sh + SYSTEM = $(shell uname) +-C++ = g++ + DFLAGS = + OFLAGS = -O2 -w + LFLAGS = -L. -lz +@@ -40,19 +39,19 @@ + all: $(OBJS) $(OBJS_BNBT) $(OBJS_BNBTMYSQL) $(PROGS) + + ./bnbt: $(OBJS) $(OBJS_BNBT) +- $(C++) -o ./bnbt $(OBJS) $(OBJS_BNBT) $(LFLAGS) ++ $(CXX) -o ./bnbt $(OBJS) $(OBJS_BNBT) $(LFLAGS) + + ./bnbtmysql: $(OBJS) $(OBJS_BNBTMYSQL) +- $(C++) -o ./bnbtmysql $(OBJS) $(OBJS_BNBTMYSQL) $(LFLAGS) -L/usr/lib/mysql -lmysqlclient ++ $(CXX) -o ./bnbtmysql $(OBJS) $(OBJS_BNBTMYSQL) $(LFLAGS) + + clean: + rm -f $(OBJS) $(OBJS_BNBT) $(OBJS_BNBTMYSQL) $(PROGS) + + %.o: %.cpp +- $(C++) -o $@ $(CFLAGS) -c $< ++ $(CXX) -o $@ $(CFLAGS) -c $< + + %.mysql.o: %.cpp +- $(C++) -o $@ $(CFLAGS) -DBNBT_MYSQL -c $< ++ $(CXX) -o $@ $(CFLAGS) -DBNBT_MYSQL -c $< + + ./bnbt: $(OBJS) $(OBJS_BNBT) + +@@ -91,4 +90,4 @@ + bnbt_mysql.mysql.o: bnbt.h bnbt_mysql.h util.h + tracker.mysql.o: bnbt.h bnbt_mysql.h atom.h bencode.h config.h md5.h server.h sort.h tracker.h util.h + tracker_announce.mysql.o: bnbt.h bnbt_mysql.h atom.h bencode.h link.h tracker.h util.h +-tracker_scrape.mysql.o: bnbt.h bnbt_mysql.h atom.h bencode.h tracker.h util.h +\ No newline at end of file ++tracker_scrape.mysql.o: bnbt.h bnbt_mysql.h atom.h bencode.h tracker.h util.h -- 2.30.2