summaryrefslogtreecommitdiff
path: root/package/ctorrent
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-12-24 12:02:33 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2009-12-24 12:02:33 +0100
commitb3259201a158cb1a571c2a3b2976fbd7b95a4b80 (patch)
treed1bf8edcf012880df29e52bf326b96c18c624dab /package/ctorrent
parent0c0ed379d9f34a2d085d9ebf7accf63d48684439 (diff)
parent537a2c4eaa446e52c6ba07007eb9ae75998b5580 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/ctorrent')
-rw-r--r--package/ctorrent/Config.in29
-rwxr-xr-xpackage/ctorrent/Makefile8
2 files changed, 2 insertions, 35 deletions
diff --git a/package/ctorrent/Config.in b/package/ctorrent/Config.in
deleted file mode 100644
index 8a6562061..000000000
--- a/package/ctorrent/Config.in
+++ /dev/null
@@ -1,29 +0,0 @@
-config ADK_PACKAGE_CTORRENT
- prompt "ctorrent.......................... console-based BitTorrent client"
- tristate
- default n
- help
- CTorrent is a BitTorrent client written in the C programming language, known to
- be a very robust and mature programming language, which produces fast and
- optimized application.
-
- http://www.rahul.net/dholmes/ctorrent/
-
-choice
-prompt "C++ library to use"
-depends on ADK_PACKAGE_CTORRENT
-default ADK_COMPILE_CTORRENT_WITH_STDCXX if ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC
-default ADK_COMPILE_CTORRENT_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
-
-config ADK_COMPILE_CTORRENT_WITH_STDCXX
- bool "Standard C++ library"
- select ADK_PACKAGE_LIBSTDCXX
- help
-
-config ADK_COMPILE_CTORRENT_WITH_UCLIBCXX
- bool "Embedded uClibc++ library"
- select ADK_PACKAGE_UCLIBCXX
- depends on ADK_BROKEN
- help
-
-endchoice
diff --git a/package/ctorrent/Makefile b/package/ctorrent/Makefile
index a73cef591..fb51b1090 100755
--- a/package/ctorrent/Makefile
+++ b/package/ctorrent/Makefile
@@ -6,18 +6,14 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= ctorrent
PKG_VERSION:= dnh3.3.2
PKG_RELEASE:= 1
+PKG_BUILDDEP+= openssl
+PKG_CXX:= CTORRENT
PKG_MD5SUM:= 59b23dd05ff70791cd6449effa7fc3b6
PKG_DESCR:= console-based BitTorrent client
PKG_SECTION:= net
PKG_URL:= http://www.rahul.net/dholmes/ctorrent
PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=dtorrent/}
-ifeq ($(ADK_COMPILE_CTORRENT_WITH_UCLIBCXX),y)
-PKG_DEPENDS:= uclibc++
-else
-PKG_DEPENDS:= libstdcxx
-endif
-
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,CTORRENT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))