mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
475cf4ae74
- Build kcm by default. - Use gssapi.mk. - Use ${opt}_* variables instead of .if ${PORT_OPTIONS:Mopt} wherever possible. - Use /var/heimdal as $hdbdir for compatibility with Heimdal in base. - Merge pkg-plist.* into pkg-plist. - Remove lines that are no longer valid. - Remove stale kdc.sh. rc.d scripts in base system work with this port.
18 lines
446 B
Plaintext
18 lines
446 B
Plaintext
# $FreeBSD$
|
|
|
|
all: kpasswdd-cracklib.so
|
|
|
|
kpasswdd-cracklib.so: kpasswdd-cracklib.c
|
|
${CC} ${CFLAGS} -fPIC -shared \
|
|
-DLOCALBASE=\"${LOCALBASE}\" \
|
|
-I${LOCALBASE}/include -I./include \
|
|
-o ${.TARGET} ${.ALLSRC} \
|
|
-lcrack -L${LOCALBASE}/lib
|
|
|
|
install-strip: install
|
|
|
|
install: ${DESTDIR}${PREFIX}/lib/kpasswdd-cracklib.so
|
|
|
|
${DESTDIR}${PREFIX}/lib/kpasswdd-cracklib.so: kpasswdd-cracklib.so
|
|
${BSD_INSTALL_LIB} ${.ALLSRC} ${.TARGET}
|