blob: 9ffae9663b9d1a39c6d431a58163c83f06f1d9a8 (
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
41
42
43
44
45
46
47
48
49
|
# New ports collection makefile for: allegro
# Date created: 23-Feb-2001
# Whom: Jimmy Olgeni <olgeni@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= allegro
DISTVERSION= 4.4.1.1
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= SF/alleg/allegro/${PORTVERSION}
PKGNAMESUFFIX= -devel
MAINTAINER= cyberbotx@cyberbotx.com
COMMENT= A cross-platform library for games and multimedia programming
USE_GMAKE= yes
USE_CMAKE= yes
USE_XORG= x11 xpm xext xcursor xxf86vm xxf86dga
USE_LDCONFIG= yes
WANT_GNOME= yes
USE_GL= gl glu
MAKE_JOBS_UNSAFE= yes
.include "Makefile.man"
INFO= allegro
CONFLICTS= allegro-[0-9]*
LATEST_LINK= ${PORTNAME}${PKGNAMESUFFIX}
PLIST_SUB= SHLIB_VER="${SHLIB_VER}"
CMAKE_ARGS+= -DDOCDIR="${DOCSDIR}"
SHLIB_VER= 4.4.1
PORTSCOUT= limit:^4\.3\.[0-9]*
.include <bsd.port.pre.mk>
CFLAGS+= -L${LOCALBASE}/lib
LIB_DEPENDS+= asound.2:${PORTSDIR}/audio/alsa-lib \
jack.0:${PORTSDIR}/audio/jack \
png.6:${PORTSDIR}/graphics/png
post-install:
@cd ${WRKSRC}/docs/man/ && \
${FIND} . -type f -and -name "*.3" -exec ${INSTALL_MAN} {} ${PREFIX}/man/man3/{} \;
.include <bsd.port.post.mk>
|