diff options
author | miwi <miwi@FreeBSD.org> | 2007-07-10 01:58:31 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-07-10 01:58:31 +0800 |
commit | 545fb961387921b38711354b04d2147913cf1622 (patch) | |
tree | 903cd3a869812aeb058950c8677a781b927fccee /devel/dmalloc/Makefile | |
parent | 03180b5a2ff08ce2a24ba961026238c15800ef9b (diff) | |
download | freebsd-ports-gnome-545fb961387921b38711354b04d2147913cf1622.tar.gz freebsd-ports-gnome-545fb961387921b38711354b04d2147913cf1622.tar.zst freebsd-ports-gnome-545fb961387921b38711354b04d2147913cf1622.zip |
- Update to 5.5.2
- Pass maintainership to submitter
PR: 114435
Submitted by: Petar Zhivkov Petrov <pesho.petrov@gmail.com>
Diffstat (limited to 'devel/dmalloc/Makefile')
-rw-r--r-- | devel/dmalloc/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/devel/dmalloc/Makefile b/devel/dmalloc/Makefile index aebc0e828089..47d3f7905327 100644 --- a/devel/dmalloc/Makefile +++ b/devel/dmalloc/Makefile @@ -5,13 +5,13 @@ # $FreeBSD$ PORTNAME= dmalloc -PORTVERSION= 5.4.2 +PORTVERSION= 5.5.2 CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= dmalloc +# Version 5.5.2 is only available at this URL +MASTER_SITES= http://dmalloc.com/releases/ EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= pesho.petrov@gmail.com COMMENT= Portable debug memory allocation library GNU_CONFIGURE= yes @@ -23,15 +23,12 @@ USE_LDCONFIG= yes ALL_TARGET= all heavy INSTALL_TARGET= install -INFO= dmalloc - .if !defined(NOPORTDOCS) -INSTALL_TARGET+=installdocs installinfo +INSTALL_TARGET+=installdocs .endif pre-patch: - @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|\.so|\.so.1|' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e 's|\.@shlibext@|\.@shlibext@.1|' ${WRKSRC}/Makefile.in post-install: @(cd ${PREFIX}/lib; \ |