mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
d530b271d9
post-install: pkg_add -m ${PREFIX}/lib to Makefiles and @exec ldconfig -m %D to packing lists of ports that install shared libraries. This should get rid of a huge chunk of confusion for novice users! All hail Paul Kranenburg! :)
30 lines
634 B
Makefile
30 lines
634 B
Makefile
# New ports collection makefile for: Doug Lea malloc library
|
|
# Version required: 2.5.3b
|
|
# Date created: 3 June 1995
|
|
# Whom: roberto
|
|
#
|
|
# $Id: Makefile,v 1.1.1.1 1995/06/04 05:29:57 asami Exp $
|
|
#
|
|
|
|
DISTNAME= dlmalloc
|
|
PKGNAME= dlmalloc-2.5.3b
|
|
CATEGORIES+= development programming libraries
|
|
MASTER_SITES= ftp://gee.cs.oswego.edu/pub/misc/
|
|
DISTFILES= malloc-2.5.3b.c
|
|
|
|
MAINTAINER= roberto@FreeBSD.ORG
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_CONFIGURE= yes
|
|
|
|
do-extract:
|
|
@rm -rf ${WRKDIR}
|
|
@mkdir -p ${WRKDIR}
|
|
cp -p ${DISTDIR}/${DISTFILES} ${WRKDIR}
|
|
cp -p ${FILESDIR}/Makefile ${WRKDIR}
|
|
|
|
post-install:
|
|
ldconfig -m ${PREFIX}/lib
|
|
|
|
.include <bsd.port.mk>
|