d178e429e3
* only kaffe will be broken by this (but fixed in the next commit), all other ports have been taken care of over the past couple of months by brad and myself joint work with brad (MAINTAINER)
55 lines
1.3 KiB
Makefile
55 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.77 2011/09/22 21:10:19 jasper Exp $
|
|
|
|
COMMENT-main= generic shared library support script
|
|
COMMENT-ltdl= GNU libtool system independent dlopen wrapper
|
|
|
|
VERSION= 2.4
|
|
DISTNAME= libtool-${VERSION}
|
|
PKGNAME-main= ${DISTNAME}
|
|
PKGNAME-ltdl= libltdl-${VERSION}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=libtool/}
|
|
|
|
SHARED_LIBS= ltdl 5.0
|
|
|
|
HOMEPAGE= http://www.gnu.org/software/libtool/
|
|
|
|
MAINTAINER= Brad Smith <brad@comstyle.com>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
AUTOCONF_VERSION= 2.67
|
|
BUILD_DEPENDS= ${MODGNU_AUTOCONF_DEPENDS}
|
|
|
|
MAKE_ENV+= ${_lt_libs}
|
|
MAKE_FLAGS+= ${_lt_libs}
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ENV= GREP=/usr/bin/grep \
|
|
ac_cv_f77_compiler_gnu=yes \
|
|
ac_cv_path_SED=/usr/bin/sed \
|
|
lt_cv_prog_compiler_c_o_F77=yes \
|
|
lt_cv_prog_compiler_pic_works_F77=yes \
|
|
lt_cv_prog_compiler_static_works_F77=yes \
|
|
ac_cv_prog_F77=g77 \
|
|
ac_cv_prog_f77_g=yes
|
|
|
|
MULTI_PACKAGES= -main -ltdl
|
|
|
|
RUN_DEPENDS-main= devel/libtool,-ltdl
|
|
|
|
pre-configure:
|
|
@cd ${WRKDIR}/bin && ln -sf /usr/bin/true g77
|
|
|
|
do-regress:
|
|
@cd ${WRKDIR}/bin && ln -sf \
|
|
${LOCALBASE}/bin/autoconf-${AUTOCONF_VERSION} autoconf
|
|
@cd ${WRKBUILD} && exec ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} check
|
|
|
|
.include <bsd.port.mk>
|