mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +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.
38 lines
762 B
Makefile
38 lines
762 B
Makefile
# New ports collection makefile for: amyc
|
|
# Date Created: 10 June 2001
|
|
# Whom: Pete Fritchman <petef@databits.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= amyc
|
|
PORTVERSION= 0.9.159
|
|
PORTREVISION= 4
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.crevola.com/about/current/
|
|
|
|
MAINTAINER= petef@FreeBSD.org
|
|
COMMENT= Display the contents of your Netscape cache
|
|
|
|
USE_AUTOCONF_VER= 213
|
|
USE_GETTEXT= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
CFLAGS="${CFLAGS} -I${LOCALBASE}/include"
|
|
|
|
USE_GNOME= gnomehack
|
|
WANT_GNOME= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${HAVE_GNOME:Mgtk12}!=""
|
|
PLIST_SUB= WITH_GTK=""
|
|
USE_GNOME+= gtk12
|
|
PKGNAMESUFFIX= -gtk
|
|
.else
|
|
PLIST_SUB= WITH_GTK="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|