diff options
| -rw-r--r-- | package/Config.in | 1 | ||||
| -rw-r--r-- | package/tptest/Makefile | 39 | ||||
| -rw-r--r-- | package/tptest/patches/patch-apps_unix_client_Makefile | 34 | ||||
| -rw-r--r-- | package/tptest/patches/patch-apps_unix_server_Makefile | 34 | 
4 files changed, 108 insertions, 0 deletions
| diff --git a/package/Config.in b/package/Config.in index b9fb2539f..791c4cee6 100644 --- a/package/Config.in +++ b/package/Config.in @@ -205,6 +205,7 @@ source "package/netperf/Config.in"  source "package/nmap/Config.in"  source "package/sipsak/Config.in"  source "package/tcpdump/Config.in" +source "package/tptest/Config.in"  #source "package/trafshow/Config.in"  source "package/ttcp/Config.in"  endmenu diff --git a/package/tptest/Makefile b/package/tptest/Makefile new file mode 100644 index 000000000..af9e000e7 --- /dev/null +++ b/package/tptest/Makefile @@ -0,0 +1,39 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:=		tptest +PKG_VERSION:=		3.1.7 +PKG_RELEASE:=		1 +PKG_MD5SUM:=		46f941bdab738a2a11ecc2a5f757ec77 +PKG_DESCR:=		Internet bandwidth tester +PKG_SECTION:=		utils +PKG_DEPENDS:= +PKG_URL:=		http://tptest.sourceforge.net/ +PKG_SITES:=		${MASTER_SITE_SOURCEFORGE:=tptest/} + +# if downloaded package is not ending with .tar.gz use following +#DISTFILES:=             ${PKG_NAME}-${PKG_VERSION}.tar.bz2 + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,TPTEST,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +# use following to add ./configure options +#CONFIGURE_ARGS+=	--disable-foo +# overwrite any configure variables +#CONFIGURE_ENV+=	ac_cv_func_setpgrp_void=yes +#BUILD_STYLE:=		auto +#INSTALL_STYLE:=	auto + +do-build: +	(cd ${WRKSRC}/apps/unix/server && ${MAKE} && ${MAKE} install DESTDIR="${WRKINST}") +	(cd ${WRKSRC}/apps/unix/client && ${MAKE} && ${MAKE} install DESTDIR="${WRKINST}") + +# please install all files and directories to the package dir +do-install: +	$(INSTALL_DIR) $(IDIR_TPTEST)/usr/bin +	$(INSTALL_BIN) $(WRKINST)/usr/bin/tptest{client,server} $(IDIR_TPTEST)/usr/bin/ + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/tptest/patches/patch-apps_unix_client_Makefile b/package/tptest/patches/patch-apps_unix_client_Makefile new file mode 100644 index 000000000..239d4770e --- /dev/null +++ b/package/tptest/patches/patch-apps_unix_client_Makefile @@ -0,0 +1,34 @@ +	- assign CC only if not already defined +	- add CFLAGS and LDFLAGS instead of replacing them +	- allow for specifying DESTDIR to 'make install' +	- drop the local subdir (openadk doesnt use this path) +	- create the directories to install into +--- tptest-3.1.7.orig/apps/unix/client/Makefile	2004-04-07 15:22:56.000000000 +0200 ++++ tptest-3.1.7/apps/unix/client/Makefile	2010-01-20 12:01:14.267178336 +0100 +@@ -1,4 +1,4 @@ +-CC		= gcc ++CC		?= gcc + # + #      Use this for Linux and other systems that have makedepend + #      instead of mkdep. +@@ -25,8 +25,8 @@ EXTRADEFINES	= -DUNIX -DLINUX + # + #EXTRADEFINES	= -DUSE_GMTIME +  +-CFLAGS		= ${CDEBUG} ${EXTRADEFINES} ${INCL} -Wall +-LDFLAGS		= ${CDEBUG} ++CFLAGS		+= ${CDEBUG} ${EXTRADEFINES} ${INCL} -Wall ++LDFLAGS		+= ${CDEBUG} + LIBDIR		=  + LOCLIBS		=  +  +@@ -69,7 +69,8 @@ clean: + 	rm -f tptestclient core *.o *.BAK *.bak *.CKP a.out tpio_unix.c tpengine.c tpcommon.c tpclient.c +  + install: +-	install -c -s -o bin -g bin -m 555 tptestclient /usr/local/bin ++	install -d -m 755 ${DESTDIR}/usr/bin ++	install -c -s -m 555 tptestclient ${DESTDIR}/usr/bin +  + depend:  + 	${MAKEDEPEND} ${INCL} ${SRCS} ${LIBSRCS} diff --git a/package/tptest/patches/patch-apps_unix_server_Makefile b/package/tptest/patches/patch-apps_unix_server_Makefile new file mode 100644 index 000000000..e4ea1eab8 --- /dev/null +++ b/package/tptest/patches/patch-apps_unix_server_Makefile @@ -0,0 +1,34 @@ +        - assign CC only if not already defined +        - add CFLAGS and LDFLAGS instead of replacing them +        - allow for specifying DESTDIR to 'make install' +        - drop the local subdir (openadk doesnt use this path) +        - create the directories to install into +--- tptest-3.1.7.orig/apps/unix/server/Makefile	2003-01-22 11:42:45.000000000 +0100 ++++ tptest-3.1.7/apps/unix/server/Makefile	2010-01-20 12:01:24.758178270 +0100 +@@ -1,4 +1,4 @@ +-CC		= gcc ++CC		?= gcc + # + #      Use this for Linux and other systems that have makedepend + #      instead of mkdep. +@@ -25,8 +25,8 @@ EXTRADEFINES	= -DUNIX -DLINUX + # + #EXTRADEFINES	= -DUSE_GMTIME +  +-CFLAGS		= ${CDEBUG} ${EXTRADEFINES} ${INCL} -Wall +-LDFLAGS		= ${CDEBUG} ++CFLAGS		+= ${CDEBUG} ${EXTRADEFINES} ${INCL} -Wall ++LDFLAGS		+= ${CDEBUG} + LIBDIR		=  + LOCLIBS		=  +  +@@ -66,7 +66,8 @@ clean: + 	rm -f tptestserver core *.o *.BAK *.bak *.CKP a.out tpio_unix.c tpengine.c tpcommon.c +  + install: +-	install -c -s -o bin -g bin -m 555 tptestserver /usr/local/bin ++	install -d -m 755 ${DESTDIR}/usr/bin ++	install -c -s -m 555 tptestserver ${DESTDIR}/usr/bin +  + depend:  + 	${MAKEDEPEND} ${INCL} ${SRCS} ${LIBSRCS} | 
