2001-07-02 10:14:10 +02:00
|
|
|
# New ports collection makefile for: rudiments
|
|
|
|
# Date created: 2 July 2001
|
|
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= rudiments
|
2002-10-27 18:53:03 +01:00
|
|
|
PORTVERSION= 0.24
|
2004-02-04 06:21:48 +01:00
|
|
|
PORTREVISION= 2
|
2001-07-02 10:14:10 +02:00
|
|
|
CATEGORIES= devel
|
2002-12-20 18:26:57 +01:00
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
2001-07-02 10:14:10 +02:00
|
|
|
|
2003-10-15 00:39:51 +02:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2003-02-18 06:52:56 +01:00
|
|
|
COMMENT= A utility C++ class library for daemons, clients, servers and more
|
2001-07-02 10:14:10 +02:00
|
|
|
|
|
|
|
USE_GMAKE= yes
|
2002-01-07 04:22:01 +01:00
|
|
|
USE_AUTOCONF_VER=213
|
2001-07-02 10:14:10 +02:00
|
|
|
CONFIGURE_ENV= CXX="${CXX}" CXXFLAGS="${CXXFLAGS}"
|
2002-02-23 17:36:57 +01:00
|
|
|
MAKE_ARGS= VERSION="${PORTVERSION:R}"
|
2001-07-02 10:14:10 +02:00
|
|
|
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
|
2002-12-07 11:28:15 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${OSVERSION} >= 500000
|
|
|
|
EXTRA_PATCHES= ${PATCHDIR}/extra-patch-*
|
|
|
|
|
|
|
|
PLIST_SUB+= PROFILE="@comment "
|
|
|
|
.else
|
|
|
|
PLIST_SUB+= PROFILE=""
|
|
|
|
.endif
|
|
|
|
|
2001-07-02 10:14:10 +02:00
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
cd ${WRKSRC} && ${MAKE} doc-install
|
|
|
|
.endif
|
|
|
|
|
2002-12-07 11:28:15 +01:00
|
|
|
.include <bsd.port.post.mk>
|