pkgsrc/x11/lesstif/Makefile.common

77 lines
2.5 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile.common,v 1.10 2001/06/30 19:08:21 jlam Exp $
DISTNAME= lesstif-${LESSTIF_VERSION}
LESSTIF_VERSION= 0.92.32
CATEGORIES= x11
MASTER_SITES= ftp://ftp.hungry.com/pub/hungry/lesstif/srcdist/ \
ftp://ftp.unicamp.br/pub/X11/lesstif/srcdist/ \
ftp://ftp.kddlabs.co.jp/X11/lesstif/srcdist/ \
ftp://linux.mathematik.tu-darmstadt.de/pub/linux/mirrors/misc/lesstif/srcdist/ \
http://gd.tuwien.ac.at/hci/lesstif/srcdist/ \
http://www.damtp.cam.ac.uk/mirror/ftp.hungry.com/pub/hungry/lesstif/srcdist/
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://www.lesstif.org/
2001-03-11 05:32:16 +01:00
CONFLICTS+= openmotif-[0-9]*
BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf
BUILD_DEPENDS+= automake-1.4:../../devel/automake
USE_BUILDLINK_ONLY= # defined
USE_X11BASE= # defined
USE_GMAKE= # defined
USE_LIBTOOL= # defined
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
LIBTOOL_OVERRIDE+= ${WRKSRC}/Xbae/libtool
LIBTOOL_OVERRIDE+= ${WRKSRC}/Xlt/libtool
LIBTOOL_OVERRIDE+= ${WRKSRC}/test/libtool
GNU_CONFIGURE= # defined
CONFIGURE_ARGS+= --enable-production --disable-debug --disable-verbose
CONFIGURE_ARGS+= --enable-editres --enable-xdnd
# The following forces the build process to use sed as the HTML-to-text
# converter.
#
CONFIGURE_ENV+= LYNX_CMD=${WRKDIR}/nonexecutable
CONFIGURE_ENV+= LINKS_CMD=${WRKDIR}/nonexecutable
DISTINFO_FILE= ${.CURDIR}/../../x11/lesstif/distinfo
PATCHDIR= ${.CURDIR}/../../x11/lesstif/patches
post-extract:
cd ${WRKSRC}/lib/config; ${MV} -f host.def LessTif.def
# Change references to {Core,Object,Shell}.3 to X{Core,Object,Shell}.3 to
# avoid manpage conflicts with other packages.
#
post-patch:
cd ${WRKSRC}/doc/lessdox/widgets; \
for name in Core Object Shell; do \
${MV} -f $${name}.3 X$${name}.3; \
files=`${GREP} -l "[[:blank:]]$${name} (3)" *.3`; \
for file in $${files}; do \
${MV} -f $${file} $${file}.presubst; \
${SED} -e "s|\([[:blank:]]\)$${name} (3)|\1X$${name} (3)|g" \
$${file}.presubst > $${file}; \
${RM} -f $${file}.presubst; \
done; \
${MV} -f Makefile.am Makefile.am.presubst; \
${SED} -e "s|\([[:space:]]\)$${name}.3|\1X$${name}.3|g" \
Makefile.am.presubst > Makefile.am; \
${RM} -f Makefile.am.presubst; \
done
pre-configure:
${TOUCH} ${WRKDIR}/nonexecutable
${CHMOD} a-x ${WRKDIR}/nonexecutable
for dir in . lib/Xbae lib/Xlt test ; do \
cd ${WRKSRC}/$${dir}; \
${LOCALBASE}/bin/libtoolize --force; \
${LOCALBASE}/bin/aclocal; \
${LOCALBASE}/bin/autoheader; \
${LOCALBASE}/bin/automake -a --foreign -i; \
${LOCALBASE}/bin/autoconf; \
done