mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
41 lines
735 B
Makefile
41 lines
735 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libticalcs2
|
|
PORTVERSION= 1.1.8
|
|
CATEGORIES= comms
|
|
MASTER_SITES= SF/tilp/tilp2-linux/tilp2-1.17
|
|
|
|
MAINTAINER= tijl@FreeBSD.org
|
|
COMMENT= TI calculator library
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= ticables2:${PORTSDIR}/comms/libticables2 \
|
|
ticonv:${PORTSDIR}/converters/libticonv \
|
|
tifiles2:${PORTSDIR}/devel/libtifiles2
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= glib20
|
|
USE_LDCONFIG= yes
|
|
USES= pathfix pkgconfig
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|