diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-07-18 08:14:57 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-07-18 08:14:57 +0000 |
commit | 3d19fa5eda0fcbea244bc2fede5f35330424ef16 (patch) | |
tree | b0dc9845d99bcd825ea9509ffe1ee4ae94ea7e7c /security/mhash | |
parent | 4b098b5d73470b329966fa7b4e84bc5283b3b48a (diff) | |
download | ports-3d19fa5eda0fcbea244bc2fede5f35330424ef16.tar.gz ports-3d19fa5eda0fcbea244bc2fede5f35330424ef16.zip |
Notes
Diffstat (limited to 'security/mhash')
-rw-r--r-- | security/mhash/Makefile | 3 | ||||
-rw-r--r-- | security/mhash/distinfo | 4 | ||||
-rw-r--r-- | security/mhash/files/patch-doc-Makefile.in | 19 |
3 files changed, 23 insertions, 3 deletions
diff --git a/security/mhash/Makefile b/security/mhash/Makefile index 900686aa70eb..e80c48e3b504 100644 --- a/security/mhash/Makefile +++ b/security/mhash/Makefile @@ -6,7 +6,7 @@ # PORTNAME= mhash -PORTVERSION= 0.9.1 +PORTVERSION= 0.9.2 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,6 +16,7 @@ COMMENT= An easy-to-use library for strong hashes such as MD5 and SHA1 INSTALLS_SHLIB= yes USE_LIBTOOL_VER=13 +USE_PERL5_BUILD=yes CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS+= --with-LDFLAGS="${PTHREAD_LIBS}" --enable-static \ --with-gnu-ld diff --git a/security/mhash/distinfo b/security/mhash/distinfo index 4d18f2b39345..7aed6dad7190 100644 --- a/security/mhash/distinfo +++ b/security/mhash/distinfo @@ -1,2 +1,2 @@ -MD5 (mhash-0.9.1.tar.gz) = 8ade81ae33ccbf75e096c1baeecfd153 -SIZE (mhash-0.9.1.tar.gz) = 371330 +MD5 (mhash-0.9.2.tar.gz) = bf31627548376891e4f42ace54db4c2d +SIZE (mhash-0.9.2.tar.gz) = 853662 diff --git a/security/mhash/files/patch-doc-Makefile.in b/security/mhash/files/patch-doc-Makefile.in new file mode 100644 index 000000000000..c17fb02d5917 --- /dev/null +++ b/security/mhash/files/patch-doc-Makefile.in @@ -0,0 +1,19 @@ +--- doc/Makefile.in.orig Fri Apr 22 11:43:32 2005 ++++ doc/Makefile.in Fri Apr 22 11:44:46 2005 +@@ -391,13 +391,13 @@ + mhash-doc: $(dist_targets) + + $(srcdir)/mhash.html: $(srcdir)/mhash.pod +- pod2html --noindex --netscape --title="mhash library" $< | sed 's/MHASH_VERSION/@MHASH_VERSION@/' > $@ ++ pod2html --noindex --netscape --title="mhash library" $(srcdir)/mhash.pod | sed 's/MHASH_VERSION/@MHASH_VERSION@/' > $@ + + $(srcdir)/mhash.0: $(srcdir)/mhash.3 +- nroff -man $< > $@ ++ nroff -man $(srcdir)/mhash.3 > $@ + + $(srcdir)/mhash.3: $(srcdir)/mhash.pod +- pod2man $(PODPARAMS) $< | sed 's/MHASH_VERSION/@MHASH_VERSION@/' > $@ ++ pod2man $(PODPARAMS) $(srcdir)/mhash.pod | sed 's/MHASH_VERSION/@MHASH_VERSION@/' > $@ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: |