diff options
-rw-r--r-- | net/pxe/Makefile | 7 | ||||
-rw-r--r-- | net/pxe/distinfo | 2 | ||||
-rw-r--r-- | net/pxe/files/patch-logfile.cc | 17 |
3 files changed, 2 insertions, 24 deletions
diff --git a/net/pxe/Makefile b/net/pxe/Makefile index b16a751ef508..87fadc82fe37 100644 --- a/net/pxe/Makefile +++ b/net/pxe/Makefile @@ -6,7 +6,7 @@ # PORTNAME= pxe -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= net MASTER_SITES= http://www.kano.org.uk/projects/pxe/ \ ftp://ftp.nuug.no/pub/anders/distfiles/ @@ -22,11 +22,6 @@ CONFIGURE_ARGS+= --with-config=${PREFIX}/etc/pxe.conf \ DOCS= Changes INSTALL LICENCE README -post-patch: - ${REINPLACE_CMD} -e "s,^CFLAGS.*,CFLAGS=\t\@CFLAGS\@,; \ - s,^CC.*,CC=\t${CXX}," \ - ${WRKSRC}/Makefile.in - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pxe ${PREFIX}/sbin/ ${INSTALL_DATA} ${WRKSRC}/pxe.conf ${PREFIX}/etc/pxe.conf.sample diff --git a/net/pxe/distinfo b/net/pxe/distinfo index a6f414ac7e54..3080f52868bd 100644 --- a/net/pxe/distinfo +++ b/net/pxe/distinfo @@ -1 +1 @@ -MD5 (pxe-1.3.tar.gz) = 3866c86ddada2bd4a4a01bb8b79cc951 +MD5 (pxe-1.4.tar.gz) = 3896cad363f7d19d9e58ef61620e796f diff --git a/net/pxe/files/patch-logfile.cc b/net/pxe/files/patch-logfile.cc deleted file mode 100644 index 5eed667bbc70..000000000000 --- a/net/pxe/files/patch-logfile.cc +++ /dev/null @@ -1,17 +0,0 @@ ---- logfile.cc.orig Wed Oct 2 22:41:50 2002 -+++ logfile.cc Wed Oct 2 22:42:09 2002 -@@ -58,12 +58,13 @@ - { - /* open the file */ - umask(077); -- logfile = new std::fstream(filename, std::ios::out|std::ios::app, 0644); -+ logfile = new std::fstream(filename, std::ios::out|std::ios::app); - if(logfile == NULL) - { - std::cerr << "Error: LogFile::Open:open(): " << strerror(errno) <<"\n"; - exit(-1); - } -+ chmod(filename, 0644); - } - - |