Date: Wed, 28 Mar 2018 08:33:26 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465783 - head/sysutils/samesame Message-ID: <201803280833.w2S8XQ8p019460@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Wed Mar 28 08:33:26 2018 New Revision: 465783 URL: https://svnweb.freebsd.org/changeset/ports/465783 Log: - Switch to new test framework - Switch to options helpers Approved by: portmgr blanket Modified: head/sysutils/samesame/Makefile Modified: head/sysutils/samesame/Makefile ============================================================================== --- head/sysutils/samesame/Makefile Wed Mar 28 08:17:34 2018 (r465782) +++ head/sysutils/samesame/Makefile Wed Mar 28 08:33:26 2018 (r465783) @@ -21,17 +21,18 @@ CONFIGURE_ARGS= --enable-samechflags --enable-samechmo --mandir="${MANPREFIX}/man" --prefix="${PREFIX}" \ --includedir="${LOCALBASE}/include" --libdir="${LOCALBASE}/lib" USES= tar:bzip2 +TEST_TARGET= check OPTIONS_DEFINE= DEBUG DISK_STORAGE LOW_MEMORY_PROFILE \ - EXPERIMENTAL PROFILER TEST + EXPERIMENTAL PROFILER OPTIONS_SUB= yes DISK_STORAGE_DESC= Allows temporarily storage on disk LOW_MEMORY_PROFILE_DESC= Low memory profile reduces functionality EXPERIMENTAL_DESC= Enables experimental functionality PROFILER_DESC= Enables gprof support -TEST_DESC= Run quality assurance test DISK_STORAGE_CONFIGURE_ENABLE= disk-storage +LOW_MEMORY_PROFILE_CONFIGURE_ON= --enable-low-memory-profile --disable-read-onces EXPERIMENTAL_CONFIGURE_ENABLE= experimental fsort #checksums preread PROFILE_CONFIGURE_ENABLE= profiler DEBUG_CONFIGURE_ENABLE= debug @@ -42,22 +43,8 @@ DEBUG_CONFIGURE_ENABLE= debug INSTALL_TARGET= install .endif -.if ${PORT_OPTIONS:MLOW_MEMORY_PROFILE} -CONFIGURE_ARGS+= --enable-low-memory-profile --disable-read-onces -.endif - -regression-test: build - @cd ${WRKSRC}; ${MAKE} check - -post-build: -.if ${PORT_OPTIONS:MTEST} - @cd ${WRKSRC}; ${MAKE} check -.endif - -post-install: -.if ${PORT_OPTIONS:MDISK_STORAGE} +post-install-DISK_STORAGE-on: ${INSTALL_SCRIPT} ${FILESDIR}/samesame.sh \ ${STAGEDIR}${PREFIX}/etc/rc.d/ -.endif .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803280833.w2S8XQ8p019460>