mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
33 lines
715 B
Makefile
33 lines
715 B
Makefile
# New ports collection makefile for: lirc
|
|
# Date created: 4 January 2003
|
|
# Whom: Mike Heffner <mikeh@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lirc
|
|
PORTVERSION= 0.6.6
|
|
PORTREVISION= 2
|
|
CATEGORIES= comms
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= lirc
|
|
|
|
MAINTAINER= mikeh@FreeBSD.org
|
|
COMMENT= Linux Infared Remote Control
|
|
|
|
USE_XLIB= yes
|
|
USE_GETOPT_LONG= yes
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL_VER= 13
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-driver=any --disable-manage-devices
|
|
|
|
MAN1= irexec.1 ircat.1 irpty.1 irrecord.1 irw.1 irxevent.1 \
|
|
mode2.1 smode2.1 xmode2.1 rc.1
|
|
MAN8= lircd.8 lircmd.8
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|