blob: 14226e0538a9e9b416a7ca8d074578e34a6f6991 (
plain)
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
|
# New ports collection makefile for: Atlas
# Date created: 3 February 2005
# Whom: Janni <jannisan@t-online.de>
#
# $FreeBSD$
#
PORTNAME= Atlas
PORTVERSION= 0.6.2
CATEGORIES= devel
MASTER_SITES= SF/worldforge/${PORTNAME}-C%2B%2B%20%28protocol%20lib%29/${PORTVERSION}
DISTNAME= ${PORTNAME}-C++-${PORTVERSION:S/.r/rc/}
MAINTAINER= oliver@FreeBSD.org
COMMENT= A C++ reference implementation of the Atlas protocol
USE_AUTOTOOLS= libtool
USE_LDCONFIG= YES
USE_BZIP2= YES
USE_GNOME= gnomehack
NO_LATEST_LINK= YES
CONFIGURE_ARGS+=--program-transform-name=
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for docfile in README COPYING AUTHORS THANKS NEWS ChangeLog TODO HACKING ROADMAP
@${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>
|