mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +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.
25 lines
580 B
Makefile
25 lines
580 B
Makefile
# New ports collection makefile for: entice
|
|
# Date created: 7 Oct 2001
|
|
# Whom: Jeremy Norris <ishmael27@home.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= entice
|
|
PORTVERSION= 0.5.0
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.ny.us.rasterman.com/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= An image viewer written using libraries for Enlightenment 0.17 development
|
|
|
|
LIB_DEPENDS= ecore.0:${PORTSDIR}/x11/ecore \
|
|
evas.6:${PORTSDIR}/graphics/evas
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_LIBTOOL_VER=13
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LIBS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|