blob: 0ec5649ae3246445f79f127173a1b3e629b6b6f3 (
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
|
# New ports collection makefile for: MrProject
# Date created: 15 July 2001
# Whom: Dmitry Sivachenko <demon@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= mrproject
PORTVERSION= 0.3.2
CATEGORIES= deskutils gnome
MASTER_SITES= ftp://ftp.codefactory.se/pub/software/mrproject/source/
MAINTAINER= demon@FreeBSD.org
USE_X_PREFIX= yes
USE_LIBTOOL= yes
USE_GMAKE= yes
USE_GNOME= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
INSTALLS_SHLIB= yes
pre-patch:
@${PERL} -pi -e 's#-lpthread#-pthread#g ; \
s#DATADIRNAME=lib#DATADIRNAME=share#g' ${WRKSRC}/configure
@find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
's#\$\(datadir\)/locale#\$\(prefix\)/share/locale#g'
.include <bsd.port.mk>
|