mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
329077d890
add -fPIC to build for amd64 (so it can be used in a shared object) take maintainership PR: ports/96062 Submitted by: Larry Rosenman <ler@lerctr.org>
29 lines
680 B
Makefile
29 lines
680 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: libxdiff
|
|
# Date created: Jan 5, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libxdiff
|
|
PORTVERSION= 0.20
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.xmailserver.org/
|
|
|
|
MAINTAINER= ler@lerctr.org
|
|
COMMENT= Create file differences/patches to both binary and text files
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --enable-shared --enable-static
|
|
|
|
MAN3= xdiff.3
|
|
PLIST_FILES= include/xdiff.h lib/libxdiff.a lib/libxdiff.so \
|
|
lib/libxdiff.so.0 lib/libxdiff.la
|
|
.include <bsd.port.mk>
|