diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-09-12 11:15:17 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-09-12 11:15:17 +0000 |
commit | 06657759c174acdc3e10f9ee7fe4df6f3935eca8 (patch) | |
tree | c47ffe7152d6009470b1fe9d235f56b173beccc5 /graphics/autotrace/Makefile | |
parent | f5a463cd111dd854be0231d1fc20a5c5ab8482ba (diff) | |
download | ports-06657759c174acdc3e10f9ee7fe4df6f3935eca8.tar.gz ports-06657759c174acdc3e10f9ee7fe4df6f3935eca8.zip |
- Remove redundant USE_AUTOCONF;
- correct regex supplied to REINPLACE_CMD (remove perlis'm), so that
autotrace.pc is now installed into correct location;
- adjust pkg-plist accordingly, sort and remove redundant items;
- bump PORTREVISION.
Notes
Notes:
svn path=/head/; revision=66196
Diffstat (limited to 'graphics/autotrace/Makefile')
-rw-r--r-- | graphics/autotrace/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/graphics/autotrace/Makefile b/graphics/autotrace/Makefile index a3ffc4a6e949..842ed34fb876 100644 --- a/graphics/autotrace/Makefile +++ b/graphics/autotrace/Makefile @@ -7,7 +7,7 @@ PORTNAME= autotrace PORTVERSION= 0.30 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -27,7 +27,6 @@ LIB_DEPENDS= jbig.1:${PORTSDIR}/graphics/jbigkit \ LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2 .endif -USE_AUTOCONF= yes GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" \ CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/ming" @@ -38,7 +37,7 @@ MAN1= autotrace.1 pre-patch: @${REINPLACE_CMD} -e \ - 's|\$$\(libdir\)/pkgconfig|\$$\(prefix\)/libdata/pkgconfig|' \ + 's|[(]libdir[)]/pkgconfig|(prefix)/libdata/pkgconfig|' \ ${WRKSRC}/Makefile.in .include <bsd.port.mk> |