diff options
author | Yukihiro Nakai <nakai@FreeBSD.org> | 2001-03-31 11:04:35 +0000 |
---|---|---|
committer | Yukihiro Nakai <nakai@FreeBSD.org> | 2001-03-31 11:04:35 +0000 |
commit | 3a0122660e519d81a4b3f75358b923d88fbb0980 (patch) | |
tree | b2faf8793d5e78e5c1a3b8bfaa294c88248aaea9 /www/aria/Makefile | |
parent | 8f1e3f114f6781a63f44ad2ddd17126dbffc4d7d (diff) | |
download | ports-3a0122660e519d81a4b3f75358b923d88fbb0980.tar.gz ports-3a0122660e519d81a4b3f75358b923d88fbb0980.zip |
Notes
Diffstat (limited to 'www/aria/Makefile')
-rw-r--r-- | www/aria/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/www/aria/Makefile b/www/aria/Makefile new file mode 100644 index 000000000000..70953c4c5368 --- /dev/null +++ b/www/aria/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: aria +# Date created: 30 March 2001 +# Whom: Yukihiro Nakai <nakai@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= aria +PORTVERSION= 0.9.1.1 +CATEGORIES= www +MASTER_SITES= http://aria.rednoah.com/storage/sources/ +DISTNAME= ${PORTNAME}-0.9.1pl1 + +MAINTAINER= nakai@FreeBSD.org + +USE_BZIP2= yes +USE_GTK= yes +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_LIBTOOL= yes +CONFIGURE_ARGS= --localstatedir=${PREFIX}/share \ + --datadir=${PREFIX}/share +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" + +pre-patch: + @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|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> |