diff options
author | markp <markp@FreeBSD.org> | 2001-08-29 19:39:06 +0800 |
---|---|---|
committer | markp <markp@FreeBSD.org> | 2001-08-29 19:39:06 +0800 |
commit | 93cfba6aa979f9ac4b06db6ae614e29725bd28c9 (patch) | |
tree | 5a2a938b805664cbc6e29cc1791a7276c590e59d /graphics/aalib/Makefile | |
parent | 77c79d88579eabe77a5a8bbe6235732ea5808f6f (diff) | |
download | freebsd-ports-gnome-93cfba6aa979f9ac4b06db6ae614e29725bd28c9.tar.gz freebsd-ports-gnome-93cfba6aa979f9ac4b06db6ae614e29725bd28c9.tar.zst freebsd-ports-gnome-93cfba6aa979f9ac4b06db6ae614e29725bd28c9.zip |
Fixed MASTER_SITES and WWW. USE_AUTOMAKE made redundant.
PR: 29823
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Diffstat (limited to 'graphics/aalib/Makefile')
-rw-r--r-- | graphics/aalib/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/graphics/aalib/Makefile b/graphics/aalib/Makefile index 4e972e4e452a..1242aaab76df 100644 --- a/graphics/aalib/Makefile +++ b/graphics/aalib/Makefile @@ -9,14 +9,11 @@ PORTNAME= aalib PORTVERSION= 1.2 PORTREVISION= 2 CATEGORIES= graphics -MASTER_SITES= ftp://horac.ta.jcu.cz/pub/aa/ \ - ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= libs/graphics +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= aa-project MAINTAINER= ports@FreeBSD.org -USE_AUTOMAKE= yes -AUTOMAKE= automake -a -i USE_LIBTOOL= yes INSTALLS_SHLIB= yes @@ -29,7 +26,8 @@ CONFIGURE_ARGS= --with-x=no .endif post-patch: - @${RM} -f ${WRKSRC}/config.cache - @${PERL} -pi -e "s|%%LOCALBASE%%|${LOCALBASE}|g;" ${WRKSRC}/configure.in + @${PERL} -pi -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/configure + @find ${WRKSRC} -name '*.[ch]' | xargs ${PERL} -pi -e \ + 's|<malloc.h>|<stdlib.h>|g' .include <bsd.port.mk> |