svn commit: r344746 - head/dns/libdjbdns
Baptiste Daroussin
bapt at FreeBSD.org
Mon Feb 17 13:36:16 UTC 2014
Author: bapt
Date: Mon Feb 17 13:36:15 2014
New Revision: 344746
URL: http://svnweb.freebsd.org/changeset/ports/344746
QAT: https://qat.redports.org/buildarchive/r344746/
Log:
Support stage
Modernize
Strip binaries
Modified:
head/dns/libdjbdns/Makefile
Modified: head/dns/libdjbdns/Makefile
==============================================================================
--- head/dns/libdjbdns/Makefile Mon Feb 17 13:32:26 2014 (r344745)
+++ head/dns/libdjbdns/Makefile Mon Feb 17 13:36:15 2014 (r344746)
@@ -3,7 +3,7 @@
PORTNAME= libdjbdns
PORTVERSION= 1.05
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= dns
MASTER_SITES= http://smarden.org/pape/djb/manpages/
DISTNAME= djbdns-pd-${PORTVERSION}
@@ -11,8 +11,9 @@ DISTNAME= djbdns-pd-${PORTVERSION}
MAINTAINER= ports at FreeBSD.org
COMMENT= Public domain DNS client library
+USES= gmake
+
USE_LDCONFIG= yes
-USE_GMAKE= yes
ALL_TARGET= it
LIBS= libdjbdns.a libdjbdns.so.1
@@ -22,11 +23,10 @@ INCLUDES= alloc.h byte.h case.h dns.h en
socket.h str.h stralloc.h tai.h taia.h uint16.h \
uint32.h uint64.h
-NO_STAGE= yes
do-install:
- @${MKDIR} ${PREFIX}/include/libdjbdns
+ @${MKDIR} ${STAGEDIR}${PREFIX}/include/libdjbdns
cd ${WRKSRC} && \
- ${INSTALL_DATA} ${LIBS} ${PREFIX}/lib && \
- ${INSTALL_DATA} ${INCLUDES} ${PREFIX}/include/libdjbdns
+ ${INSTALL_LIB} ${LIBS} ${STAGEDIR}${PREFIX}/lib && \
+ ${INSTALL_DATA} ${INCLUDES} ${STAGEDIR}${PREFIX}/include/libdjbdns
.include <bsd.port.mk>
More information about the svn-ports-all
mailing list