mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
b461a0649f
- Unbreak the build on PowerPC by adding -fsigned-char to CFLAGS (and also respect them by removing hardcoded -O3) - Rename a patch and regenerate it with `make makepatch' command - Clean up do-install target (sanitize symlink, wrap overly long line) - Reformat and kill EOL whitespace in the port description text
27 lines
746 B
Makefile
27 lines
746 B
Makefile
# Created by: Ismail Yenigul <ismail.yenigul@surgate.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libb64
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES= converters mail
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}
|
|
|
|
MAINTAINER= ismail.yenigul@surgate.com
|
|
COMMENT= Library for fast Base64 encoding and decoding
|
|
|
|
BUILD_DEPENDS= makedepend:${PORTSDIR}/devel/makedepend
|
|
|
|
USES= gmake zip
|
|
ALL_TARGET= all_src
|
|
USE_LDCONFIG= yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/src/libb64.a ${STAGEDIR}${PREFIX}/lib
|
|
${INSTALL_LIB} ${WRKSRC}/src/libb64.so.0 ${STAGEDIR}${PREFIX}/lib
|
|
${LN} -fs libb64.so.0 ${STAGEDIR}${PREFIX}/lib/libb64.so
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/include/b64
|
|
${INSTALL_DATA} ${WRKSRC}/include/b64/*.h \
|
|
${STAGEDIR}${PREFIX}/include/b64
|
|
|
|
.include <bsd.port.mk>
|