Index: head/net/dctc/Makefile =================================================================== --- head/net/dctc/Makefile (revision 67342) +++ head/net/dctc/Makefile (revision 67343) @@ -1,104 +1,106 @@ # New ports collection makefile for: Direct Connect Text Client # Date created: Thu Nov 22 00:19:27 BRST 2001 # Whom: Mario Sergio Fujikawa Ferreira # # $FreeBSD$ # PORTNAME= dctc -PORTVERSION= 0.83.3 +PORTVERSION= 0.83.5 CATEGORIES= net MASTER_SITES= http://unixpages.org/distfiles/ \ http://ac2i.tzo.com/dctc/ DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= lioux@FreeBSD.org BUILD_DEPENDS= makedepend:${PORTSDIR}/devel/makedepend LIB_DEPENDS= db4.0:${PORTSDIR}/databases/db4 \ gnugetopt.1:${PORTSDIR}/devel/libgnugetopt USE_GNOMENG= yes USE_GNOME= glib12 USE_PERL5= yes USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ ${PTHREAD_CFLAGS}" \ LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt \ ${PTHREAD_LIBS:S/"//g}" CONFIGURE_ARGS= --enable-manual-db-detect MANCOMPRESSED= no MAN1= dctc.1 DOC_DIRS= Documentation Documentation/DCextensions DOC_FILES= COPYING ChangeLog INSTALL README \ KNOWN_BUGS TODO \ Documentation/BerkeleyDB \ Documentation/BerkeleyDB.nl \ Documentation/DCextensions/p2p_capabilities \ Documentation/DCextensions/p2p_capabilities.nl \ Documentation/DCextensions/search_by_content \ Documentation/DCextensions/search_by_content.nl \ Documentation/GDL.nl \ Documentation/GDL Documentation/VAR \ Documentation/LS_cache Documentation/UNODE.nl \ Documentation/LS_cache.nl \ Documentation/VAR.nl \ Documentation/UNODE Documentation/Vshare \ Documentation/Vshare.nl \ Documentation/commands \ Documentation/commands.nl \ Documentation/programs.nl \ Documentation/programs.pl \ Documentation/output.nl \ Documentation/output Documentation/programs post-extract: @${CP} ${FILESDIR}/lp_mutex.c ${WRKSRC}/src post-patch: .for file in ${DOC_FILES} @${PERL} -pi -e 's|(hublist)|dc_\1|' ${WRKSRC}/${file} .endfor - @${PERL} -pi -e 's/(CK?\(std)(out\))/\1_\2/' ${WRKSRC}/src/* @${PERL} -pi -e 's/(CK?\()inet_ntoa(\))/\1shared_info\2/' ${WRKSRC}/src/* @${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 ${PERL} -pi -e \ - 's|include.+|include \n#include |; \ - s|<(db.h>)|)|> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '# define MSG_NOSIGNAL 0' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '#endif' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '#ifndef ENODATA' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '# define ENODATA ENOMSG' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '#endif' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '#define HAVE_SYS_PARAM_H 1' >> ${CONFIGURE_WRKSRC}/config.h +# disable GNU auto* tools + @${FIND} ${WRKSRC} -type f -name "Makefile" | ${XARGS} \ + -n 10 ${REINPLACE_CMD} -E -e \ + 's! (autoconf|autoheader|automake|aclocal)$$! ${TRUE}!' do-install: .ifndef(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for dir in ${DOC_DIRS} @${MKDIR} ${DOCSDIR}/${dir} .endfor .for file in ${DOC_FILES} @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}/${file} .endfor .endif @${MKDIR} ${PREFIX}/share/${PORTNAME} @${INSTALL_SCRIPT} ${WRKSRC}/GDLjoiner \ ${PREFIX}/share/${PORTNAME} @${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1 @${INSTALL_PROGRAM} ${WRKSRC}/src/hublist ${PREFIX}/bin/dc_hublist @${INSTALL_PROGRAM} ${WRKSRC}/src/dctc ${PREFIX}/bin .include Property changes on: head/net/dctc/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/net/dctc/distinfo =================================================================== --- head/net/dctc/distinfo (revision 67342) +++ head/net/dctc/distinfo (revision 67343) @@ -1 +1 @@ -MD5 (dctc-0.83.3.tar.gz) = 21faecebda5a19a62859bbf82ef89ee9 +MD5 (dctc-0.83.5.tar.gz) = 5e691001fa203e3ca0ae30a9137d56fd Property changes on: head/net/dctc/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/net/dctc/files/patch-src::main.c =================================================================== --- head/net/dctc/files/patch-src::main.c (revision 67342) +++ head/net/dctc/files/patch-src::main.c (revision 67343) @@ -1,23 +1,10 @@ ---- src/main.c.orig Sun Aug 4 10:58:23 2002 -+++ src/main.c Sun Aug 4 11:00:57 2002 -@@ -34,7 +34,12 @@ - #include - #include - #include -+#if !(defined(BSD) && (BSD >= 199103)) - #include /* for the value of SEMVMX */ -+#else -+#include -+#include /* for the value of SEMVMX */ -+#endif - #include - #include - #include -@@ -1253,6 +1258,7 @@ +--- src/main.c.orig Sun Sep 29 14:07:48 2002 ++++ src/main.c Sun Sep 29 14:08:52 2002 +@@ -1269,6 +1269,7 @@ char *virtual_share_path=NULL; + hide_absolute=1; disp_msg(INFO_MSG,NULL,"Direct Connect Text Client v" VERSION ,NULL); if(argc==1) Property changes on: head/net/dctc/files/patch-src::main.c ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/net-p2p/dctc/Makefile =================================================================== --- head/net-p2p/dctc/Makefile (revision 67342) +++ head/net-p2p/dctc/Makefile (revision 67343) @@ -1,104 +1,106 @@ # New ports collection makefile for: Direct Connect Text Client # Date created: Thu Nov 22 00:19:27 BRST 2001 # Whom: Mario Sergio Fujikawa Ferreira # # $FreeBSD$ # PORTNAME= dctc -PORTVERSION= 0.83.3 +PORTVERSION= 0.83.5 CATEGORIES= net MASTER_SITES= http://unixpages.org/distfiles/ \ http://ac2i.tzo.com/dctc/ DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= lioux@FreeBSD.org BUILD_DEPENDS= makedepend:${PORTSDIR}/devel/makedepend LIB_DEPENDS= db4.0:${PORTSDIR}/databases/db4 \ gnugetopt.1:${PORTSDIR}/devel/libgnugetopt USE_GNOMENG= yes USE_GNOME= glib12 USE_PERL5= yes USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ ${PTHREAD_CFLAGS}" \ LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt \ ${PTHREAD_LIBS:S/"//g}" CONFIGURE_ARGS= --enable-manual-db-detect MANCOMPRESSED= no MAN1= dctc.1 DOC_DIRS= Documentation Documentation/DCextensions DOC_FILES= COPYING ChangeLog INSTALL README \ KNOWN_BUGS TODO \ Documentation/BerkeleyDB \ Documentation/BerkeleyDB.nl \ Documentation/DCextensions/p2p_capabilities \ Documentation/DCextensions/p2p_capabilities.nl \ Documentation/DCextensions/search_by_content \ Documentation/DCextensions/search_by_content.nl \ Documentation/GDL.nl \ Documentation/GDL Documentation/VAR \ Documentation/LS_cache Documentation/UNODE.nl \ Documentation/LS_cache.nl \ Documentation/VAR.nl \ Documentation/UNODE Documentation/Vshare \ Documentation/Vshare.nl \ Documentation/commands \ Documentation/commands.nl \ Documentation/programs.nl \ Documentation/programs.pl \ Documentation/output.nl \ Documentation/output Documentation/programs post-extract: @${CP} ${FILESDIR}/lp_mutex.c ${WRKSRC}/src post-patch: .for file in ${DOC_FILES} @${PERL} -pi -e 's|(hublist)|dc_\1|' ${WRKSRC}/${file} .endfor - @${PERL} -pi -e 's/(CK?\(std)(out\))/\1_\2/' ${WRKSRC}/src/* @${PERL} -pi -e 's/(CK?\()inet_ntoa(\))/\1shared_info\2/' ${WRKSRC}/src/* @${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 ${PERL} -pi -e \ - 's|include.+|include \n#include |; \ - s|<(db.h>)|)|> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '# define MSG_NOSIGNAL 0' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '#endif' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '#ifndef ENODATA' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '# define ENODATA ENOMSG' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '#endif' >> ${CONFIGURE_WRKSRC}/config.h @${ECHO_CMD} '#define HAVE_SYS_PARAM_H 1' >> ${CONFIGURE_WRKSRC}/config.h +# disable GNU auto* tools + @${FIND} ${WRKSRC} -type f -name "Makefile" | ${XARGS} \ + -n 10 ${REINPLACE_CMD} -E -e \ + 's! (autoconf|autoheader|automake|aclocal)$$! ${TRUE}!' do-install: .ifndef(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for dir in ${DOC_DIRS} @${MKDIR} ${DOCSDIR}/${dir} .endfor .for file in ${DOC_FILES} @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}/${file} .endfor .endif @${MKDIR} ${PREFIX}/share/${PORTNAME} @${INSTALL_SCRIPT} ${WRKSRC}/GDLjoiner \ ${PREFIX}/share/${PORTNAME} @${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1 @${INSTALL_PROGRAM} ${WRKSRC}/src/hublist ${PREFIX}/bin/dc_hublist @${INSTALL_PROGRAM} ${WRKSRC}/src/dctc ${PREFIX}/bin .include Property changes on: head/net-p2p/dctc/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.23 \ No newline at end of property +1.24 \ No newline at end of property Index: head/net-p2p/dctc/distinfo =================================================================== --- head/net-p2p/dctc/distinfo (revision 67342) +++ head/net-p2p/dctc/distinfo (revision 67343) @@ -1 +1 @@ -MD5 (dctc-0.83.3.tar.gz) = 21faecebda5a19a62859bbf82ef89ee9 +MD5 (dctc-0.83.5.tar.gz) = 5e691001fa203e3ca0ae30a9137d56fd Property changes on: head/net-p2p/dctc/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/net-p2p/dctc/files/patch-src::main.c =================================================================== --- head/net-p2p/dctc/files/patch-src::main.c (revision 67342) +++ head/net-p2p/dctc/files/patch-src::main.c (revision 67343) @@ -1,23 +1,10 @@ ---- src/main.c.orig Sun Aug 4 10:58:23 2002 -+++ src/main.c Sun Aug 4 11:00:57 2002 -@@ -34,7 +34,12 @@ - #include - #include - #include -+#if !(defined(BSD) && (BSD >= 199103)) - #include /* for the value of SEMVMX */ -+#else -+#include -+#include /* for the value of SEMVMX */ -+#endif - #include - #include - #include -@@ -1253,6 +1258,7 @@ +--- src/main.c.orig Sun Sep 29 14:07:48 2002 ++++ src/main.c Sun Sep 29 14:08:52 2002 +@@ -1269,6 +1269,7 @@ char *virtual_share_path=NULL; + hide_absolute=1; disp_msg(INFO_MSG,NULL,"Direct Connect Text Client v" VERSION ,NULL); if(argc==1) Property changes on: head/net-p2p/dctc/files/patch-src::main.c ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property