diff options
author | edwin <edwin@FreeBSD.org> | 2003-09-08 11:03:44 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-09-08 11:03:44 +0000 |
commit | fd7c7b3bb64787711ad7bcdfc8e0eb392bc37ec1 (patch) | |
tree | 59464144a53620a9591479b3fda0034783a924a1 /comms/tilp/Makefile | |
parent | e9d81a8259d23bf8fdcdda94e5ca44603a255806 (diff) | |
download | FreeBSD-ports-fd7c7b3bb64787711ad7bcdfc8e0eb392bc37ec1.zip FreeBSD-ports-fd7c7b3bb64787711ad7bcdfc8e0eb392bc37ec1.tar.gz |
[new port] TiLP: TI calculator link program
TiLP is a Linking Program to send/receive files to/from
your TI calculator.
PR: ports/56137
Submitted by: Tijl Coosemans <tijl@ulyssis.org>
Diffstat (limited to 'comms/tilp/Makefile')
-rw-r--r-- | comms/tilp/Makefile | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/comms/tilp/Makefile b/comms/tilp/Makefile new file mode 100644 index 0000000..eb08d03 --- /dev/null +++ b/comms/tilp/Makefile @@ -0,0 +1,51 @@ +# New ports collection makefile for: tilp +# Date created: 27 August 2003 +# Whom: Tijl Coosemans <tijl@ulyssis.org> +# +# $FreeBSD$ +# + +PORTNAME= tilp +PORTVERSION= 6.68 +CATEGORIES= comms +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= tilp + +MAINTAINER= tijl@ulyssis.org +COMMENT= TI Linking Program + +BUILD_DEPENDS= pkg-config:${PORTSDIR}/devel/pkgconfig +LIB_DEPENDS= ticalcs-4.5:${PORTSDIR}/devel/libticalcs \ + ticables.10:${PORTSDIR}/comms/libticables \ + tifiles.5:${PORTSDIR}/devel/libtifiles \ + intl.4:${PORTSDIR}/devel/gettext + +USE_GNOME= gtk20 libglade2 +USE_X_PREFIX= yes +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +USE_GMAKE= yes + +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"\ + LDFLAGS="-L${LOCALBASE}/lib" + +MAN1= tilp.1 + +.include <bsd.port.pre.mk> + +.if defined(WITH_JPEG) || exists(${LOCALBASE}/lib/libjpeg.so.9) +LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg +.else +pre-everything:: + @${ECHO_MSG} + @${ECHO_MSG} "=======================================================" + @${ECHO_MSG} "If you want to compile with JPEG support, hit Ctrl-C" + @${ECHO_MSG} "right now and use \"make WITH_JPEG=yes\"" + @${ECHO_MSG} "=======================================================" + @${ECHO_MSG} +.endif #WITH_JPEG + +post-install: + ${MKDIR} ${PREFIX}/lib/tilp + +.include <bsd.port.post.mk> |