29 lines
556 B
Makefile
29 lines
556 B
Makefile
PORTNAME= libtool
|
|
PORTREVISION= 1
|
|
|
|
COMMENT= Generic shared library support script
|
|
WWW= https://www.gnu.org/software/libtool/
|
|
|
|
.include "${.CURDIR}/../libtool/Makefile.common"
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= gm4:devel/m4
|
|
RUN_DEPENDS= gm4:devel/m4
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-ltdl-install
|
|
TEST_TARGET= check
|
|
|
|
NO_ARCH= yes
|
|
INFO= libtool
|
|
|
|
.if "${CC}" == "/nxb-bin/usr/bin/cc"
|
|
# Generate libtool script for the native compiler, not the cross compiler.
|
|
CC= cc
|
|
CXX= c++
|
|
LD= ld
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|