mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
336ae3953d
- Fix a few of pkg-descr by chase the rename. - Move all PORTREVISION and PORTEPOCH to top with ?=. - Put USE_X_PREFIX back in, but under REFERENCE_PORT, and remove PREFIX? and USE_XLIB. This fix ports to use the correct mtree when you change the prefix, for example: Incorrect: (Without USE_X_PREFIX) ================================ # cd /usr/ports/x11-toolkits/gtk20 # make -V MTREE_FILE /etc/mtree/BSD.x11-4.dist # make PREFIX=/tmp/foo -V MTREE_FILE /etc/mtree/BSD.local.dist <-- Here... ================================ Correct: (With USE_X_PREFIX) ================================ # cd /usr/ports/x11-toolkits/gtk20 # make -V MTREE_FILE /etc/mtree/BSD.x11-4.dist # make PREFIX=/tmp/foo -V MTREE_FILE /etc/mtree/BSD.x11-4.dist <-- Here... ================================ - Change a several of *-reference ports to install in LOCALBASE instead X11BASE, but only two gtkmm*-reference couldn't be change at the moment. Bump the PORTREVISION for change prefix. Discussed with: marcus
60 lines
1.3 KiB
Makefile
60 lines
1.3 KiB
Makefile
# New ports collection makefile for: libglade2
|
|
# Date created: 18 August 1999
|
|
# Whom: Ade Lovett <ade@lovett.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libglade2
|
|
PORTVERSION= 2.5.1
|
|
PORTREVISION?= 5
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME}
|
|
MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/2.5
|
|
DISTNAME= ${PORTNAME:S/2$//}-${PORTVERSION}
|
|
DIST_SUBDIR= gnome2
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= GNOME glade library
|
|
|
|
USE_BZIP2= yes
|
|
|
|
.if !defined(REFERENCE_PORT)
|
|
|
|
RUN_DEPENDS= xmlcatmgr:${PORTSDIR}/textproc/xmlcatmgr
|
|
|
|
USE_GMAKE= yes
|
|
USE_X_PREFIX= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GNOME= gnomehack libxml2 gtk20 referencehack
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \
|
|
--disable-gtk-doc \
|
|
--with-xml-catalog=${LOCALBASE}/share/xml/catalog.ports
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
PLIST_SUB= XMLCATALOG="${LOCALBASE}/bin/xmlcatalog" \
|
|
CATALOG_PORTS_XML="${LOCALBASE}/share/xml/catalog.ports"
|
|
|
|
.if !defined(WITHOUT_PYTHON)
|
|
BUILD_DEPENDS+= ${PYEXPAT}
|
|
RUN_DEPENDS+= ${PYEXPAT}
|
|
|
|
USE_PYTHON= yes
|
|
PLIST_SUB+= PYTHON=""
|
|
.else
|
|
PLIST_SUB+= PYTHON="@comment "
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E 's/in (python.*)+ none/in none/' \
|
|
${WRKSRC}/configure
|
|
.endif
|
|
|
|
post-install:
|
|
${MKDIR} ${PREFIX}/lib/libglade/2.0
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
.endif
|