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.
32 lines
775 B
Makefile
32 lines
775 B
Makefile
# New ports collection makefile for: glib12
|
|
# Date Created: 28 July 1998
|
|
# Whom: Vanilla I. Shu <vanilla@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= glib
|
|
PORTVERSION= 1.2.10
|
|
PORTREVISION= 10
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= sources/glib/1.2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Some useful routines of C programming (previous stable version)
|
|
|
|
USE_GNOME= pkgconfig
|
|
USE_LIBTOOL_VER= 13
|
|
INSTALLS_SHLIB= yes
|
|
LIBTOOLFLAGS= --disable-ltlibs --release-suffix
|
|
CONFIGURE_ARGS= --includedir=${PREFIX}/include/glib12
|
|
CONFIGURE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
|
|
PTHREAD_LIBS="${PTHREAD_LIBS}"
|
|
|
|
MAN1= glib-config.1
|
|
INFO= glib
|
|
|
|
post-install:
|
|
${LN} -sf ${PREFIX}/bin/glib-config ${PREFIX}/bin/glib12-config
|
|
|
|
.include <bsd.port.mk>
|