aboutsummaryrefslogtreecommitdiff
path: root/devel/epm
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2011-06-13 16:16:56 +0000
committerMikhail Teterin <mi@FreeBSD.org>2011-06-13 16:16:56 +0000
commit68d09cd805fa1d844cf047a9d5024341a701a923 (patch)
tree07c8f9aca6d1257d77bcd078c648618355fe5614 /devel/epm
parentca998e42328045c3a6018df0deb2d8c8aec517fc (diff)
downloadports-68d09cd805fa1d844cf047a9d5024341a701a923.tar.gz
ports-68d09cd805fa1d844cf047a9d5024341a701a923.zip
Upgrade from 4.1 to 4.2. Our patch, which tried to hardlink before
doing a full copy, is no longer needed. Approved by: maintainer (maho)
Notes
Notes: svn path=/head/; revision=275494
Diffstat (limited to 'devel/epm')
-rw-r--r--devel/epm/Makefile4
-rw-r--r--devel/epm/distinfo5
-rw-r--r--devel/epm/files/patch-link29
3 files changed, 3 insertions, 35 deletions
diff --git a/devel/epm/Makefile b/devel/epm/Makefile
index 3ab2eb4ecbbb..43aa94e4b296 100644
--- a/devel/epm/Makefile
+++ b/devel/epm/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= epm
-PORTVERSION= 4.1
-PORTREVISION= 1
+PORTVERSION= 4.2
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_EASYSW}
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}
@@ -21,6 +20,5 @@ GNU_CONFIGURE= yes
USE_AUTOTOOLS= autoconf
MAN1= epm.1 epminstall.1 mkepmlist.1 setup.1
MAN5= epm.list.5 setup.types.5
-MAKE_JOBS_UNSAFE= yes
.include <bsd.port.mk>
diff --git a/devel/epm/distinfo b/devel/epm/distinfo
index 211b01024bde..3c8eb7cc5d3f 100644
--- a/devel/epm/distinfo
+++ b/devel/epm/distinfo
@@ -1,3 +1,2 @@
-MD5 (epm-4.1-source.tar.bz2) = 658385d63e81bfd0989f8f9b8a956c2c
-SHA256 (epm-4.1-source.tar.bz2) = 960ce17836040dc64f5058186c71032c2c9c9b5f8a31b790e820900e130cb8a3
-SIZE (epm-4.1-source.tar.bz2) = 452818
+SHA256 (epm-4.2-source.tar.bz2) = 66c689fae292d4e390d5c52a4bcbd4b231d20dd51d309a7cb9a73d172a7d358e
+SIZE (epm-4.2-source.tar.bz2) = 458362
diff --git a/devel/epm/files/patch-link b/devel/epm/files/patch-link
deleted file mode 100644
index 9238ca0a794d..000000000000
--- a/devel/epm/files/patch-link
+++ /dev/null
@@ -1,29 +0,0 @@
-Change copy_file() function to try to create a hard link instead
-of copying...
-
-Submitted to author:
-
- http://www.epmhome.org/str.php?L21+P0+S-2+C0+I0+E0+M10+Q
-
- -mi
-
---- file.c 2006-08-29 12:43:09.000000000 -0400
-+++ file.c 2009-11-16 19:49:06.242283000 -0500
-@@ -67,4 +67,17 @@
-
- unlink(dst);
-+ if (link(src, dst) == 0)
-+ {
-+ if (Verbosity > 1)
-+ printf("Successfully linked %s to %s instead of copying\n",
-+ src, dst);
-+ return 0;
-+ }
-+ else
-+ {
-+ if (Verbosity > 1)
-+ printf("Linking %s to %s failed: %s.\n\tFalling back to copying\n",
-+ src, dst, strerror(errno));
-+ }
-
- if ((dstfile = fopen(dst, "wb")) == NULL)