blob: de076cdf8715e5a2bf48463cda499df13e715f1d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# 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
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@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>
|