blob: 980b33bddf02dfa0159cc93cf41f4a1f02db3814 (
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
|
# New ports collection makefile for: libpperl
# Date created: December 14, 2005
# Whom: Kelly Yancey <kbyanc@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= libpperl
PORTVERSION= 20051214
CATEGORIES= devel
MASTER_SITES= http://people.freebsd.org/~kbyanc/ \
http://www.posi.net/software/libpperl/
MAINTAINER= kbyanc@FreeBSD.org
COMMENT= A library easing embedding perl interpreters into C programs
WRKSRC= ${WRKDIR}/${PORTNAME}
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
USE_AUTOTOOLS= libtool:15
USE_GNOME= pkgconfig
USE_PERL5= yes
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500800
IGNORE= this library only supports perl 5.8.0 or above
.endif
.include <bsd.port.post.mk>
|