mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
# Ports collection makefile for: ekg
|
|
# Date created: 24 March 2003
|
|
# Whom: Jacek Pelka <jacek@combit.com.pl>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ekg
|
|
PORTVERSION= 1.7
|
|
PORTEPOCH= 2
|
|
CATEGORIES= polish net-im
|
|
MASTER_SITES= http://ekg.chmurka.net/
|
|
|
|
MAINTAINER= alex@bsdguru.org
|
|
COMMENT= Text-mode Gadu-Gadu client
|
|
|
|
LIB_DEPENDS= execinfo.1:${PORTSDIR}/devel/libexecinfo \
|
|
gadu.3:${PORTSDIR}/polish/libgadu
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gnomehack pkgconfig
|
|
CONFIGURE_ARGS+= --disable-shared \
|
|
--disable-static \
|
|
--enable-dynamic \
|
|
--without-openssl \
|
|
--disable-libgadu-openssl \
|
|
--without-libungif \
|
|
--without-libjpeg
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
|
|
CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -lexecinfo"
|
|
|
|
OPTIONS= ASPELL "Build with ASPELL support" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_ASPELL)
|
|
LIB_DEPENDS+= aspell.16:${PORTSDIR}/polish/aspell
|
|
CONFIGURE_ARGS+= --enable-aspell
|
|
.endif
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= ekg.1
|
|
MANLANG= "" pl
|
|
MANCOMPRESSED= no
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${PREFIX}/bin/ekg
|
|
|
|
.include <bsd.port.post.mk>
|