diff options
author | lioux <lioux@FreeBSD.org> | 2001-11-08 08:42:48 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-11-08 08:42:48 +0800 |
commit | 0c8137b12362d037df114a684467a219b7427649 (patch) | |
tree | 62b3971966864c127b784d01f631a9818380312c /graphics/ogle | |
parent | a5a516ffe5b9b720f11577bdace79c6f86a36fdf (diff) | |
download | freebsd-ports-graphics-0c8137b12362d037df114a684467a219b7427649.tar.gz freebsd-ports-graphics-0c8137b12362d037df114a684467a219b7427649.tar.zst freebsd-ports-graphics-0c8137b12362d037df114a684467a219b7427649.zip |
Add tricks to avoid need of USE_AUTO{CONF,MAKE}
Learned from: obrien
Diffstat (limited to 'graphics/ogle')
-rw-r--r-- | graphics/ogle/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/ogle/Makefile b/graphics/ogle/Makefile index 93e0c72cca4..1f54838de3b 100644 --- a/graphics/ogle/Makefile +++ b/graphics/ogle/Makefile @@ -19,8 +19,6 @@ LIB_DEPENDS= a52.0:${PORTSDIR}/audio/liba52 \ xml2.5:${PORTSDIR}/textproc/libxml2 USE_XLIB= yes -USE_AUTOCONF= yes -USE_AUTOMAKE= yes USE_GMAKE= yes USE_LIBTOOL= yes CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" @@ -51,6 +49,10 @@ post-patch: .endif @${PERL} -pi -e "s|%%X11BASE%%|${X11BASE}|" ${WRKSRC}/scripts/ogle.in +pre-configure: + @${TOUCH} `find -E ${WRKSRC} -regex ".*Makefile\.(am|in)"` + @${TOUCH} ${WRKSRC}/configure.in ${WRKSRC}/configure + post-configure: @${LN} -sf ${LOCALBASE}/bin/libtool ${WRKSRC} |