mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
# New ports collection makefile for: gbib
|
|
# Date created: 26 February 2002
|
|
# Whom: Christian Brueffer (chris@unixpages.org)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gbib
|
|
DISTVERSION= 0.1.3rc1
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases editors gnome
|
|
MASTER_SITES= http://gbib.seul.org/
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Editor/browser for BibTeX bibliographic databases
|
|
|
|
USE_GNOME= gnomelibs
|
|
USE_GMAKE= yes
|
|
USE_GETTEXT= yes
|
|
USE_AUTOTOOLS= libtool:22
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -lintl"
|
|
MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
|
|
AUTOHEADER="${TRUE}"
|
|
|
|
CFLAGS+= -fpermissive
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|map.h,|map,|g ; \
|
|
s|vector.h,|vector,|g' ${WRKSRC}/configure.in
|
|
@${REINPLACE_CMD} -e \
|
|
's|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/aclocal.m4
|
|
@${FIND} ${WRKSRC} -name "Makefile.in*" | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|CXXFLAGS = -g|CXXFLAGS = @CXXFLAGS@|g ; \
|
|
s|^exec_prefix =.*$$|exec_prefix = @exec_prefix@|g ; \
|
|
s|^datadir =.*$$|datadir = @datadir@|g ; \
|
|
s|^localedir =.*$$|localedir = $$(prefix)/share/locale|g ; \
|
|
s|^gnulocaledir =.*$$|gnulocaledir = $$(prefix)/share/locale|g; \
|
|
s|-fwritable-strings||g'
|
|
@${FIND} ${WRKSRC} -name "*.orig" -delete
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|