mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
40 lines
804 B
Makefile
40 lines
804 B
Makefile
# New ports collection makefile for: rudiments
|
|
# Date created: 2 July 2001
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rudiments
|
|
PORTVERSION= 0.24
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
COMMENT= A utility C++ class library for daemons, clients, servers and more
|
|
|
|
USE_GMAKE= yes
|
|
USE_AUTOCONF_VER=213
|
|
CONFIGURE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"
|
|
MAKE_ARGS= VERSION="${PORTVERSION:R}"
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 500000
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-*
|
|
|
|
PLIST_SUB+= PROFILE="@comment "
|
|
.else
|
|
PLIST_SUB+= PROFILE=""
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
cd ${WRKSRC} && ${MAKE} doc-install
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|