mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port. Ports that set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of the included version. To restore previous behavior, use the new macro, USE_INC_LIBTOOL_VER. Both macros accept the same argument: a libtool version. For example, to use the ports version of libtool-1.5, add the following to your Makefile: USE_LIBTOOL_VER= 15 To use the included version of libtool with extra hacks provided by libtool-1.5, add the following to your Makefile: USE_INC_LIBTOOL_VER= 15 With this change, ports that had to add additional libtool hacks to prevent .la files from being installed or to fix certain threading issues can now delete those hacks (after appropriate testing, of course). PR: 63944 Based on work by:eik and marcus Approved by: ade (autotools maintainer) Tested by: kris on pointyhat Bound to be hidden problems: You bet
This commit is contained in:
parent
90c653ebbf
commit
9e5632dd66
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=113296
558 changed files with 570 additions and 557 deletions
|
@ -266,6 +266,9 @@ LIB_DEPENDS+= ltdl.4:${PORTSDIR}/devel/libltdl15
|
|||
.if defined(USE_LIBTOOL_VER)
|
||||
GNU_CONFIGURE?= yes
|
||||
WANT_LIBTOOL_VER?= ${USE_LIBTOOL_VER}
|
||||
.elif defined(USE_INC_LIBTOOL_VER)
|
||||
GNU_CONFIGURE?= yes
|
||||
WANT_LIBTOOL_VER?= ${USE_INC_LIBTOOL_VER}
|
||||
.endif
|
||||
|
||||
# Note that there aren't any non-versioned libtools, so we can skip
|
||||
|
@ -384,7 +387,7 @@ run-autotools:
|
|||
#
|
||||
.if !target(patch-autotools)
|
||||
patch-autotools:
|
||||
. if defined(USE_LIBTOOL_VER)
|
||||
. if defined(USE_INC_LIBTOOL_VER)
|
||||
@(cd ${PATCH_WRKSRC}; \
|
||||
for file in ${LIBTOOLFILES}; do \
|
||||
${CP} $$file $$file.tmp; \
|
||||
|
@ -393,6 +396,16 @@ patch-autotools:
|
|||
$$file.tmp > $$file; \
|
||||
${RM} $$file.tmp; \
|
||||
done);
|
||||
. elif defined(USE_LIBTOOL_VER)
|
||||
@(cd ${PATCH_WRKSRC}; \
|
||||
for file in ${LIBTOOLFILES}; do \
|
||||
${CP} $$file $$file.tmp; \
|
||||
${SED} -e "s^\$$ac_aux_dir/ltconfig^${LTCONFIG}^g" \
|
||||
-e "/^ltmain=/!s^\$$ac_aux_dir/ltmain.sh^${LIBTOOLFLAGS} ${LTMAIN}^g" \
|
||||
-e '/^LIBTOOL=/s^\$$(top_builddir)/libtool^${LIBTOOL}^g' \
|
||||
$$file.tmp > $$file; \
|
||||
${RM} $$file.tmp; \
|
||||
done);
|
||||
. else
|
||||
@${DO_NADA}
|
||||
. endif
|
||||
|
|
|
@ -20,7 +20,7 @@ USE_GMAKE= yes
|
|||
USE_GNOME= gnomeprefix gnomehack gnomehier intltool gail libbonobo lthack intlhack
|
||||
USE_X_PREFIX= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_REINPLACE= yes
|
||||
CONFIGURE_ARGS= --enable-static
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
|
|
|
@ -18,7 +18,7 @@ COMMENT= A GNOME accessibility toolkit (ATK)
|
|||
|
||||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
USE_GNOME= gnomehack lthack glib20
|
||||
CONFIGURE_ARGS= --enable-static \
|
||||
--disable-gtk-doc \
|
||||
|
|
|
@ -19,7 +19,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
USE_GNOME= gnomehack libgnomecanvas lthack
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
|
|
@ -20,7 +20,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gnomehack gnomeprefix atspi libbonobo lthack intlhack
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||
|
|
|
@ -20,7 +20,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gnomehack gnomeprefix atspi libbonobo lthack intlhack
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||
|
|
|
@ -20,7 +20,7 @@ MAN1= katoob.1
|
|||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gnomeprefix gnomehack gtk20
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GETOPT_LONG= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomeprefix intlhack gnomehack libgnomeui lthack
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomeprefix intlhack gnomehack libgnomeui lthack
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ MASTER_SITE_SUBDIR= libs/compression
|
|||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Portable speedy, lossless data compression library
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ARGS= --enable-shared
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -15,7 +15,7 @@ MASTER_SITE_SUBDIR= libs/compression
|
|||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Portable speedy, lossless data compression library
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ARGS= --enable-shared
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -25,7 +25,7 @@ USE_GMAKE= yes
|
|||
USE_AUTOMAKE_VER=14
|
||||
USE_AUTOCONF_VER=213
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ARGS= --with-glob
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib -lintl -liconv"
|
||||
|
|
|
@ -14,7 +14,7 @@ MAINTAINER= ports@FreeBSD.org
|
|||
COMMENT= A data compression library with low memory usage during decompression
|
||||
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ARGS= --enable-shared
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ MASTER_SITES= http://www.jormas.com/~vesuri/xpk/
|
|||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= The eXternal PacKer (XPK) library system
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -24,7 +24,7 @@ USE_PERL5= yes
|
|||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gtk20
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
|
||||
CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include \
|
||||
LDFLAGS=-L${LOCALBASE}/lib
|
||||
|
|
|
@ -18,7 +18,7 @@ COMMENT= Astronomical Calculation Library
|
|||
|
||||
USE_GNOME= gnometarget lthack
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
post-patch:
|
||||
|
|
|
@ -17,7 +17,7 @@ COMMENT= MPEG audio analysis toolkit
|
|||
|
||||
USE_REINPLACE= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
post-patch:
|
||||
|
|
|
@ -23,7 +23,7 @@ USE_GNOME= glib12 gnomehack gnometarget
|
|||
WANT_GNOME= yes
|
||||
USE_GETOPT_LONG=yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib
|
||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" \
|
||||
|
|
|
@ -23,7 +23,7 @@ USE_GMAKE= yes
|
|||
USE_GCC= 3.3
|
||||
USE_REINPLACE= yes
|
||||
USE_GNOME= gnomehack gnomeprefix intlhack libgnomecanvas
|
||||
USE_LIBTOOL_VER= 15
|
||||
USE_INC_LIBTOOL_VER= 15
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
|
||||
|
|
|
@ -17,7 +17,7 @@ COMMENT= Multitrack audio processing software
|
|||
USE_GMAKE= yes
|
||||
USE_AUTOMAKE_VER=14
|
||||
USE_AUTOCONF_VER=213
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_REINPLACE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
|
|
@ -20,6 +20,7 @@ GNU_CONFIGURE= yes
|
|||
USE_QT_VER= 3
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_REINPLACE= yes
|
||||
|
||||
CFLAGS+= ${PTHREAD_CFLAGS:S/"//g}
|
||||
|
|
|
@ -21,7 +21,7 @@ USE_GETOPT_LONG= yes
|
|||
USE_BZIP2= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_GNOME= gnometarget gnomehack
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
|
||||
CONFLICTS= py*-ro-*
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|||
USE_GETOPT_LONG=yes
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
USE_REINPLACE= yes
|
||||
USE_SDL= yes
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
|
|||
|
||||
USE_ICONV= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
|
||||
CONFIGURE_ARGS= --enable-sse --enable-3dnow \
|
||||
--with-libiconv-prefix="${LOCALBASE}" \
|
||||
|
|
|
@ -18,7 +18,7 @@ INSTALLS_SHLIB= yes
|
|||
USE_GMAKE= yes
|
||||
USE_GNOME= pkgconfig
|
||||
USE_GETOPT_LONG= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_REINPLACE= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS}" LIBS="${PTHREAD_LIBS}"
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ MAN1= gdamcli.1 gdamladspapluginscanner.1 gdam123.1 gdam-launcher.1 gdam-server
|
|||
USE_GMAKE= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= libglade
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_REINPLACE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ COMMENT= Multimedia applications for the GNOME 2 desktop
|
|||
USE_BZIP2= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_REINPLACE= yes
|
||||
GNOME_DESKTOP_VERSION=2
|
||||
|
|
|
@ -20,7 +20,7 @@ COMMENT= Multimedia applications for the GNOME 2 desktop
|
|||
USE_BZIP2= yes
|
||||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_REINPLACE= yes
|
||||
GNOME_DESKTOP_VERSION=2
|
||||
|
|
|
@ -19,7 +19,7 @@ COMMENT= GStreamer plugin for monkeysaudio files
|
|||
USE_X_PREFIX= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
USE_GNOME= lthack gnomehack gnomeprefix gstreamerplugins
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
|
|
@ -14,7 +14,7 @@ MASTER_SITES= http://www.macio.risp.pl/gtkgep/files/
|
|||
MAINTAINER= linimon@lonesome.com
|
||||
COMMENT= A guitar effects processor for GTK
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gtk12
|
||||
CONFIGURE_ENV= LIBS="${PTHREAD_LIBS}"
|
||||
|
|
|
@ -16,7 +16,7 @@ MAINTAINER= ports@oven.org
|
|||
COMMENT= Library for manipulating ID3v1/v1.1 and ID3v2 tags
|
||||
|
||||
USE_ICONV= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ COMMENT= Portable audio output library
|
|||
|
||||
WANT_GNOME= yes
|
||||
USE_GNOME= gnomehack pkgconfig
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
.if defined(NOPORTDOCS)
|
||||
|
|
|
@ -15,7 +15,7 @@ MAINTAINER= ports@FreeBSD.org
|
|||
COMMENT= A library for playing audio CDs
|
||||
|
||||
USE_GNOME= gnomehack gnometarget lthack
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -14,7 +14,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
MAINTAINER= ahze@ahze.net
|
||||
COMMENT= A library to access data on a CDDB server
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GNOME= gnometarget lthack gnomehack pkgconfig
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ MASTER_SITE_SUBDIR= mad
|
|||
MAINTAINER= asa@gascom.ru
|
||||
COMMENT= ID3 tags library (part of MAD project)
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -15,7 +15,7 @@ MASTER_SITE_SUBDIR= mad
|
|||
MAINTAINER= asa@gascom.ru
|
||||
COMMENT= Libmad library (part of MAD project)
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ARGS= --disable-debugging \
|
||||
--enable-sso \
|
||||
|
|
|
@ -17,7 +17,7 @@ WANT_GNOME= yes
|
|||
USE_GNOME= gnometarget lthack
|
||||
USE_REINPLACE= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
|
||||
MAKE_ENV= SHELL=/bin/sh
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -17,7 +17,7 @@ COMMENT= ModPlug mod-like music shared libraries
|
|||
INSTALLS_SHLIB= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= pkgconfig
|
||||
USE_LIBTOOL_VER= 15
|
||||
USE_INC_LIBTOOL_VER= 15
|
||||
USE_REINPLACE= yes
|
||||
|
||||
post-patch:
|
||||
|
|
|
@ -14,7 +14,7 @@ MASTER_SITES= http://www.vorbis.com/files/1.0.1/unix/
|
|||
MAINTAINER= naddy@FreeBSD.org
|
||||
COMMENT= Ogg bitstream library
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GNOME= gnomehack
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile \
|
|||
fftw.2:${PORTSDIR}/math/fftw
|
||||
|
||||
USE_GNOME= gnomehack gnometarget pkgconfig
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
CONFIGURE_ARGS= --disable-gcc-pipe
|
||||
|
|
|
@ -23,7 +23,7 @@ CONFIGURE_ENV= CFLAGS="${PTHREAD_CFLAGS} -I${LOCALBASE}/include" \
|
|||
INSTALLS_SHLIB= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME+= pkgconfig
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
CONFLICTS= libshout-1.0.7
|
||||
USE_REINPLACE= yes
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ COMMENT= Reading and writing files containing sampled sound (like WAV or AIFF)
|
|||
|
||||
USE_GCC= 3.3
|
||||
USE_GNOME= gnomehack gnometarget lthack pkgconfig
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
CONFIGURE_ARGS= --enable-justsrc --disable-gcc-pipe
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ LIB_DEPENDS= ogg.5:${PORTSDIR}/audio/libogg
|
|||
|
||||
CONFLICTS= libvorbis-aotuv-[0-9]*
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GNOME= gnomehack
|
||||
CONFIGURE_ARGS= --with-ogg=${LOCALBASE}
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -15,7 +15,7 @@ EXTRACT_SUFX= .tgz
|
|||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Cycle-based SID emulator engine
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ARGS= --enable-shared
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -24,7 +24,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomehack intlhack lthack gnomeprefix libgnomeui
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include"
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomehack intlhack lthack gnomeprefix libgnomeui
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include"
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ LIB_DEPENDS= vorbis.3:${PORTSDIR}/audio/libvorbis \
|
|||
USE_SDL= sdl
|
||||
USE_REINPLACE= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -17,7 +17,7 @@ COMMENT= A SDL audio library and player for some popular sound file formats
|
|||
|
||||
USE_SDL= sdl
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
|
|
@ -21,7 +21,7 @@ LIB_DEPENDS= ogg.5:${PORTSDIR}/audio/libogg
|
|||
|
||||
USE_GETOPT_LONG= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||
|
|
|
@ -21,7 +21,7 @@ LIB_DEPENDS= ogg.5:${PORTSDIR}/audio/libogg
|
|||
|
||||
USE_GETOPT_LONG= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||
|
|
|
@ -23,7 +23,7 @@ LIB_DEPENDS= popt:${PORTSDIR}/devel/popt \
|
|||
USE_X_PREFIX= yes
|
||||
USE_BZIP2= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GNOME= gnomelibs gnometarget
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
|
|
@ -24,7 +24,7 @@ RUN_DEPENDS= wmaker:${PORTSDIR}/x11-wm/windowmaker
|
|||
USE_X_PREFIX= yes
|
||||
WANT_GNOME= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include/WINGs"
|
||||
|
||||
MAN1= get-wsound-flags.1x getsoundset.1x setsoundset.1x \
|
||||
|
|
|
@ -18,7 +18,7 @@ COMMENT= X11-based MP3 player with nice graphical interface
|
|||
|
||||
USE_XLIB= yes
|
||||
USE_GNOME= gtk12 esound
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
LIBTOOLFILES= configure libx11amp/configure
|
||||
CONFIGURE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}"
|
||||
MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}"
|
||||
|
|
|
@ -26,7 +26,7 @@ RUN_DEPENDS= xfce4-panel:${PORTSDIR}/x11-wm/xfce4-panel
|
|||
USE_GETTEXT= yes
|
||||
USE_GNOME= gtk20
|
||||
USE_X_PREFIX= yes
|
||||
USE_LIBTOOL_VER=15
|
||||
USE_INC_LIBTOOL_VER=15
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ENV= CFLAGS=-I${LOCALBASE}/include \
|
||||
|
|
|
@ -19,7 +19,7 @@ LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms \
|
|||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gtk12
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
PLIST_FILES= lib/xmms/Output/libarts.so \
|
||||
|
|
|
@ -17,7 +17,7 @@ COMMENT= XMMS Output plugin for crossfading between songs
|
|||
LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms
|
||||
|
||||
USE_X_PREFIX= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gtk12
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -26,7 +26,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
|
|||
USE_AUTOMAKE_VER= 15
|
||||
USE_AUTOCONF_VER= 253
|
||||
USE_AUTOHEADER_VER= 253
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
AUTOMAKE_ARGS= --add-missing
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gtk12
|
||||
|
|
|
@ -23,7 +23,7 @@ WRKSRC= ${WRKDIR}/xmms-jack
|
|||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gtk12 gnometarget
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
USE_REINPLACE= yes
|
||||
|
||||
PLIST_FILES= lib/xmms/Output/libjackout.so
|
||||
|
|
|
@ -19,7 +19,7 @@ LIB_DEPENDS= xmms.4:${PORTSDIR}/multimedia/xmms
|
|||
|
||||
USE_KDELIBS_VER=3
|
||||
WRKSRC= ${WRKDIR}/${DISTNAME:S/0.0/0/}
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
GNU_CONFIGURE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_TARGET=
|
||||
|
|
|
@ -20,6 +20,6 @@ USE_GNOME= gtk12
|
|||
USE_X_PREFIX= yes
|
||||
USE_AUTOMAKE_VER= 14
|
||||
USE_AUTOCONF_VER= 213
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -18,7 +18,7 @@ RUN_DEPENDS= xmms:${PORTSDIR}/multimedia/xmms
|
|||
|
||||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gtk12
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
|
|
|
@ -21,7 +21,7 @@ CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib"
|
|||
|
||||
PLIST_FILES= lib/xmms/Input/libxmms_sndfile.so
|
||||
USE_GNOME= gtk12
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_X_PREFIX= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
|
|
|
@ -21,6 +21,6 @@ PLIST_FILES= lib/xmms/Input/libtfmx.so
|
|||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gtk12
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -17,7 +17,7 @@ COMMENT= Toolkit for developing bioinformatic related software in C++
|
|||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
PORTNAME= wenju
|
||||
PORTVERSION= 1.3
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= chinese
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= wenju
|
||||
|
|
|
@ -19,7 +19,7 @@ USE_GETOPT_LONG= yes
|
|||
USE_GETTEXT= yes
|
||||
USE_REINPLACE= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -16,7 +16,7 @@ MAINTAINER= esn@x123.info
|
|||
COMMENT= Shared libraries for Amateur Radio Equipment Control Applications
|
||||
|
||||
USE_PERL5= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GNOME= pkgconfig gnomehack
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib"
|
||||
|
|
|
@ -18,7 +18,7 @@ COMMENT= Linux Infared Remote Control
|
|||
USE_XLIB= yes
|
||||
USE_GETOPT_LONG= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
CONFIGURE_ARGS= --with-driver=any --disable-manage-devices
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ MAINTAINER= dyfet@gnu.org
|
|||
COMMENT= User mode API for Voicetronix 4 port analog DSP telephony cards
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_AUTOCONF_VER= 213
|
||||
USE_REINPLACE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -17,7 +17,7 @@ USE_GNOME= pkgconfig
|
|||
USE_ICONV= yes
|
||||
USE_BZIP2= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_REINPLACE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} \
|
||||
|
|
|
@ -16,7 +16,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
MAINTAINER= gnome@FreeBSD.org
|
||||
COMMENT= A Free Implementation of the Unicode Bidirectional Algorithm
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GNOME= gnomehack pkgconfig
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ MAINTAINER= gnome@FreeBSD.org
|
|||
COMMENT= A character set conversion library
|
||||
|
||||
USE_REINPLACE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GNOME= gnometarget
|
||||
LIBTOOLFILES= configure libcharset/configure
|
||||
CONFIGURE_ARGS= --enable-static \
|
||||
|
|
|
@ -16,7 +16,7 @@ COMMENT= C++ class library for manipulating messages in MIME format
|
|||
|
||||
CONFLICTS= kdenetwork-3.1.*
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -16,7 +16,7 @@ MAINTAINER= demon@FreeBSD.org
|
|||
COMMENT= Converts files between character sets and usages
|
||||
|
||||
USE_GETTEXT= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_PERL5= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ARGS= --without-included-gettext
|
||||
|
|
|
@ -17,7 +17,7 @@ USE_ICONV= yes
|
|||
USE_REINPLACE= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_GONFIGURE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
WANT_AUTOCONF_VER= 259
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
|
|
@ -17,7 +17,7 @@ USE_ICONV= yes
|
|||
USE_REINPLACE= yes
|
||||
USE_GMAKE= yes
|
||||
GNU_GONFIGURE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
WANT_AUTOCONF_VER= 259
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
|
|
@ -16,7 +16,7 @@ MAINTAINER= cyrille.lefevre@laposte.net
|
|||
COMMENT= The GNU database manager
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gnomehack gnomeprefix gnomehier libgda
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="${PTHREAD_LIBS} -L${LOCALBASE}/lib -lintl"
|
||||
|
|
|
@ -21,7 +21,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gnomehack gnomeprefix gnomehier libgda
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="${PTHREAD_LIBS} -L${LOCALBASE}/lib -lintl"
|
||||
|
|
|
@ -25,7 +25,7 @@ CONFIGURE_ENV+= LIBPYTHON="-l${PYTHON_VERSION} ${PTHREAD_LIBS}" \
|
|||
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
GNU_CONFIGURE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
LDCONFIG_DIRS+= ${PREFIX}/lib/hk_classes/
|
||||
|
||||
OPTIONS= MYSQL "Build MySQL driver" on \
|
||||
|
|
|
@ -17,7 +17,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME}
|
|||
MAINTAINER= seanc@FreeBSD.org
|
||||
COMMENT= Database Independent Abstraction Layer for C
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
post-install:
|
||||
|
|
|
@ -24,7 +24,7 @@ USE_X_PREFIX= yes
|
|||
USE_GNOME= gnomehack gnomeprefix gnomehier gconf bonobo
|
||||
USE_GMAKE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ARGS= --disable-gtk-doc
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib -lintl -lgdbm"
|
||||
|
|
|
@ -23,7 +23,7 @@ USE_BZIP2= yes
|
|||
USE_X_PREFIX= yes
|
||||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomehack libgda2
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ARGS= --enable-static
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ USE_X_PREFIX= yes
|
|||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomeprefix gnomehack libgnomeui libgda2 gtksourceview \
|
||||
intlhack lthack
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
|
|
@ -18,7 +18,7 @@ COMMENT= An ODBC 3.x driver manager, for universal data source access
|
|||
|
||||
CONFLICTS= unixODBC-*
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
USE_GMAKE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
INIDIR= ${PREFIX}/etc/${PORTNAME}
|
||||
|
|
|
@ -16,7 +16,7 @@ MAINTAINER= fjoe@FreeBSD.org
|
|||
COMMENT= A C++ class library and toolset for ODBC access to data sources
|
||||
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
USE_GNOME= pkgconfig
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
|
||||
|
|
|
@ -17,7 +17,7 @@ MAINTAINER= ports@FreeBSD.org
|
|||
COMMENT= Simple database library
|
||||
|
||||
USE_GNOME= gnometarget lthack
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
MAN3= sdb.3 sdb_init.3 sdb_open.3 sdb_close.3 sdb_query.3
|
||||
|
|
|
@ -20,7 +20,7 @@ BUILD_DEPENDS= gawk:${PORTSDIR}/lang/gawk # To build man-pages
|
|||
USE_REINPLACE= yes
|
||||
USE_BISON= yes
|
||||
USE_GNOME= glib20
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
DOCS= AUTHORS ChangeLog HACKING NEWS README TODO
|
||||
|
|
|
@ -24,7 +24,7 @@ BUILD_DEPENDS= wish8.4:${PORTSDIR}/x11-toolkits/tk84
|
|||
|
||||
USE_REINPLACE= yes
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/builds
|
||||
USE_LIBTOOL_VER=15
|
||||
USE_INC_LIBTOOL_VER=15
|
||||
CONFIGURE_SCRIPT= ../unix/configure
|
||||
LIBTOOLFILES= ${CONFIGURE_SCRIPT}
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -17,7 +17,7 @@ COMMENT= A new C++ interface for PostgreSQL
|
|||
|
||||
LIB_DEPENDS= pq.3:${PORTSDIR}/${POSTGRESQL_PORT}
|
||||
|
||||
USE_LIBTOOL_VER=15
|
||||
USE_INC_LIBTOOL_VER=15
|
||||
USE_GMAKE= YES
|
||||
GNU_CONFIGURE= YES
|
||||
INSTALLS_SHLIB= YES
|
||||
|
|
|
@ -17,7 +17,7 @@ COMMENT= A new C++ interface for PostgreSQL
|
|||
|
||||
LIB_DEPENDS= pq.3:${PORTSDIR}/${POSTGRESQL_PORT}
|
||||
|
||||
USE_LIBTOOL_VER=15
|
||||
USE_INC_LIBTOOL_VER=15
|
||||
USE_GMAKE= YES
|
||||
GNU_CONFIGURE= YES
|
||||
INSTALLS_SHLIB= YES
|
||||
|
|
|
@ -17,7 +17,7 @@ COMMENT= A new C++ interface for PostgreSQL
|
|||
|
||||
LIB_DEPENDS= pq.3:${PORTSDIR}/${POSTGRESQL_PORT}
|
||||
|
||||
USE_LIBTOOL_VER=15
|
||||
USE_INC_LIBTOOL_VER=15
|
||||
USE_GMAKE= YES
|
||||
GNU_CONFIGURE= YES
|
||||
INSTALLS_SHLIB= YES
|
||||
|
|
|
@ -18,7 +18,7 @@ COMMENT= Trivial Database
|
|||
|
||||
USE_AUTOMAKE_VER= 14
|
||||
USE_AUTOCONF_VER= 213
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
MAN3= tdb.3 tdb_chainlock.3 tdb_close.3 tdb_delete.3 tdb_error.3 \
|
||||
|
|
|
@ -18,7 +18,7 @@ CONFLICTS= libiodbc-*
|
|||
|
||||
USE_GNOME= gnomehack gnometarget lthack
|
||||
USE_ICONV= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ARGS= --enable-static --enable-shared \
|
||||
--with-libiconv-prefix=${LOCALBASE}
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -13,7 +13,7 @@ EXTRACT_SUFX= .tgz
|
|||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= An xbase (i.e. dBase, FoxPro, etc.) compatible C++ class library
|
||||
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
INSTALLS_SHLIB= yes
|
||||
|
||||
.if defined(MAINTAINER_MODE)
|
||||
|
|
|
@ -16,7 +16,7 @@ COMMENT= An SQL wrapper for the XBase DBMS library
|
|||
LIB_DEPENDS= xbase-2.0.0:${PORTSDIR}/databases/xbase
|
||||
|
||||
USE_BISON= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_REINPLACE= yes
|
||||
|
|
|
@ -18,7 +18,7 @@ COMMENT= A program to create labels and business cards
|
|||
USE_X_PREFIX= yes
|
||||
USE_GNOME= gnomehack gnomeprefix gnometarget libgnomeui libgnomeprintui
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ LIB_DEPENDS= gtkmm-2.0:${PORTSDIR}/x11-toolkits/gtk--2 \
|
|||
USE_X_PREFIX= yes
|
||||
USE_OPENSSL= yes
|
||||
USE_GMAKE= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
USE_GNOME= gnomehack lthack gnometarget
|
||||
CONFIGURE_ARGS= --enable-gtkspell
|
||||
INSTALLS_SHLIB= yes
|
||||
|
|
|
@ -24,7 +24,7 @@ USE_X_PREFIX= yes
|
|||
USE_GMAKE= yes
|
||||
USE_GNOME= gnomeprefix intlhack gnomehack gtk20
|
||||
WANT_GNOME= yes
|
||||
USE_LIBTOOL_VER=13
|
||||
USE_INC_LIBTOOL_VER=13
|
||||
INSTALLS_SHLIB= yes
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
|
|
@ -18,7 +18,7 @@ GNU_CONFIGURE= yes
|
|||
USE_GMAKE= yes
|
||||
USE_KDELIBS_VER=3
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_LIBTOOL_VER= 13
|
||||
USE_INC_LIBTOOL_VER= 13
|
||||
|
||||
# necesary to access the second master site by getting rid of the default switch -A
|
||||
FETCH_CMD ?=/usr/bin/fetch -Rr
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue