blob: 9edd4377251898b997516fac073126d9cdc14919 (
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
34
35
36
37
38
39
|
# New ports collection makefile for: fakeroot
# Date created: 11 March 2004
# Whom: Meno Abels <meno.abels@adviser.com>
#
# $FreeBSD$
#
PORTNAME= fakeroot
PORTVERSION= 1.14.4
CATEGORIES= security
MASTER_SITES= ${MASTER_SITE_DEBIAN}
MASTER_SITE_SUBDIR= pool/main/f/fakeroot
DISTNAME= ${PORTNAME}_${PORTVERSION}.orig
MAINTAINER= martymac@FreeBSD.org
COMMENT= Simulate the root user behaviour
LICENSE= GPLv3
USE_BZIP2= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-ipc=tcp
USE_AUTOTOOLS= libtool
USE_LDCONFIG= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
MANLANG= "" es sv fr nl
MAN1= faked.1 fakeroot.1
pre-configure:
@${REINPLACE_CMD} -e 's/-lpthread/${PTHREAD_LIBS}/g' \
${WRKSRC}/${CONFIGURE_SCRIPT}
post-install:
@${MV} ${PREFIX}/lib/libfakeroot-0.so ${PREFIX}/lib/libfakeroot.so.0
@${LN} -sf ${PREFIX}/lib/libfakeroot.so.0 ${PREFIX}/lib/libfakeroot-0.so
.include <bsd.port.mk>
|