6b8fe3db6b
* devel/libgsf is the old port minus gsf-gnome bits * devel/libgsf-gnome contains libgsf-gnome-1 library and it's header files This greatly reduces number of dependencies for ports that was using only non-gnome part of this library. - Point USE_GNOME parameter libgsf to GNOME-less port and create new parameter libgsf_gnome for libgsf-gnome port. - Convert all consumers of libgsf-gnome-1 library to depend on libgsf-gnome port (read all as: Gnumeric) PR: ports/63851 (in the spirit of) Submitted by: Sybolt de Boer <sybolt@xs4all.nl> Prodded by: lofi (KDE team) Reviewed by: marcus (GNOME team)
31 lines
796 B
Makefile
31 lines
796 B
Makefile
# New ports collection makefile for: libgsf
|
|
# Date created: 11 September 2002
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
CATEGORIES= devel gnome
|
|
PKGNAMESUFFIX= -gnome
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= A GNOME wrapper for libgsf
|
|
|
|
MASTERDIR= ${.CURDIR}/../libgsf
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
USE_GNOME= gnomehack libgsf gnomevfs2
|
|
CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc/gsf \
|
|
--disable-gtk-doc --with-bz2 --with-gnome
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -lgsf-1"
|
|
|
|
do-build:
|
|
@cd ${WRKSRC}/gsf-gnome && ${MAKE}
|
|
|
|
do-install:
|
|
@cd ${WRKSRC}/gsf-gnome && ${MAKE} install
|
|
@${INSTALL_DATA} ${WRKSRC}/libgsf-gnome-1.pc ${PREFIX}/libdata/pkgconfig
|
|
|
|
.include "${MASTERDIR}/Makefile"
|