# $FreeBSD$
#
# IMPORTANT NOTE:
# Before making any changes to this file, contact portmgr to arrange
# for an experimental ports run.
# Untested commits will almost certainly break the tree, incur the
# wrath of countless folks, and be unceremoniously backed out by
# the maintainer and/or portmgr.
Autotools_Include_MAINTAINER= autotools@FreeBSD.org
#---------------------------------------------------------------------------
# USE_AUTOTOOLS= tool[:env] ...
#
# 'tool' can currently be one of the following:
# autoconf, autoheader
# automake, aclocal
# libtoolize
#
# ':env' is used to specify that the environmental variables are needed
# but the relevant tool should NOT be run as part of the
# 'run-autotools' target
#
# In addition, these variables can be set in the port Makefile to be
# passed to the relevant tools:
#
# AUTOMAKE_ARGS=...
# - Extra arguments passed to automake during configure step
#
# ACLOCAL_ARGS=...
# - Arguments passed to aclocal during configure step
#
# AUTOCONF_ARGS=...
# - Extra arguments passed to autoconf during configure step
#
# AUTOHEADER_ARGS=...
# - Extra arguments passed to autoheader during configure step
#
# LIBTOOLIZE_ARGS=...
# - Extra arguments passed to libtoolize during configure step
#
#---------------------------------------------------------------------------
#---------------------------------------------------------------------------
# NO USER-SERVICABLE PARTS BEYOND THIS POINT. REALLY. WE MEAN IT.
#---------------------------------------------------------------------------
# Known autotools components
_AUTOTOOLS_ALL= autoconf autoheader \
automake aclocal \
libtoolize
#---------------------------------------------------------------------------
# Primary magic to break out the USE_AUTOTOOLS stanza into something
# more useful, along with substantial error checking to prevent
# foot-shooting
#---------------------------------------------------------------------------
# Break out the stanza
#
_AUTOTOOLS_IMPL=
.for stanza in ${USE_AUTOTOOLS}
_AUTOTOOLS_IMPL+= ${stanza:C/^([^:]+).*/\1/}
_AUTOTOOL_${stanza:C/^([^:]+).*/\1/}= ${stanza:C/^[^:]+:([^:]+)/\1/}
.endfor
# Verify each component, normalize
#
_AUTOTOOLS_NOCOMP=
.for component in ${_AUTOTOOLS_IMPL}
. if ${_AUTOTOOLS_ALL:M${component}}==""
_AUTOTOOLS_NOCOMP+= ${component}
. endif
. if ${_AUTOTOOL_${component}}==${component}
_AUTOTOOL_${component}= yes
. elsif ${_AUTOTOOL_${component}}!="env" && ${_AUTOTOOL_${component}}!="yes"
_AUTOTOOLS_BADCOMP+= ${component}:${_AUTOTOOL_${component}}
. endif
.endfor
.if !empty(_AUTOTOOLS_NOCOMP)
IGNORE+= Unknown autotool: ${_AUTOTOOLS_NOCOMP:O:u}
.endif
# Check for anything other than 'yes' or 'env'
#
_AUTOTOOLS_BADCOMP=
.for component in ${_AUTOTOOLS_IMPL}
. if ${_AUTOTOOL_${component}}!="env" && ${_AUTOTOOL_${component}}!="yes"
_AUTOTOOLS_BADCOMP+= ${component}:${_AUTOTOOL_${component}}
. endif
.endfor
.if !empty(_AUTOTOOLS_BADCOMP)
IGNORE+= Bad autotool stanza: ${_AUTOTOOLS_BADCOMP:O:u}
.endif
#---------------------------------------------------------------------------
# automake and aclocal
#---------------------------------------------------------------------------
.if defined(_AUTOTOOL_aclocal) && ${_AUTOTOOL_aclocal} == "yes"
_AUTOTOOL_automake?= env
_AUTOTOOL_rule_aclocal= yes
GNU_CONFIGURE= yes
.endif
.if defined(_AUTOTOOL_automake)
AUTOMAKE_VERSION= 1.15
AUTOMAKE_APIVER= 1.15
AUTOMAKE_PORT= devel/automake
. if ${_AUTOTOOL_automake} == "yes"
_AUTOTOOL_rule_automake= yes
GNU_CONFIGURE?= yes
. endif
.endif
.if defined(AUTOMAKE_VERSION)
AUTOMAKE= ${LOCALBASE}/bin/automake-${AUTOMAKE_VERSION}
AUTOMAKE_DIR= ${LOCALBASE}/share/automake-${AUTOMAKE_VERSION}
ACLOCAL= ${LOCALBASE}/bin/aclocal-${AUTOMAKE_VERSION}
ACLOCAL_DIR= ${LOCALBASE}/share/aclocal-${AUTOMAKE_VERSION}
. if defined(_AUTOTOOL_aclocal)
ACLOCAL_ARGS?= --automake-acdir=${ACLOCAL_DIR}
. endif
AUTOMAKE_VARS= AUTOMAKE=${AUTOMAKE} \
AUTOMAKE_DIR=${AUTOMAKE_DIR} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION} \
AUTOMAKE_APIVER=${AUTOMAKE_APIVER} \
ACLOCAL=${ACLOCAL} \
ACLOCAL_DIR=${ACLOCAL_DIR}
AUTOMAKE_DEPENDS= ${AUTOMAKE}:${PORTSDIR}/${AUTOMAKE_PORT}
BUILD_DEPENDS+= ${AUTOMAKE_DEPENDS}
.endif
#---------------------------------------------------------------------------
# autoconf and autoheader
#---------------------------------------------------------------------------
.if defined(_AUTOTOOL_autoheader) && ${_AUTOTOOL_autoheader} == "yes"
_AUTOTOOL_autoconf= yes
_AUTOTOOL_rule_autoheader= yes
GNU_CONFIGURE?= yes
.endif
.if defined(_AUTOTOOL_autoconf)
AUTOCONF_VERSION= 2.69
AUTOCONF_PORT= devel/autoconf
. if ${_AUTOTOOL_autoconf} == "yes"
_AUTOTOOL_rule_autoconf= yes
GNU_CONFIGURE?= yes
. endif
.endif
.if defined(AUTOCONF_VERSION)
AUTOCONF= ${LOCALBASE}/bin/autoconf-${AUTOCONF_VERSION}
AUTOCONF_DIR= ${LOCALBASE}/share/autoconf-${AUTOCONF_VERSION}
AUTOHEADER= ${LOCALBASE}/bin/autoheader-${AUTOCONF_VERSION}
AUTOIFNAMES= ${LOCALBASE}/bin/ifnames-${AUTOCONF_VERSION}
AUTOM4TE?= ${LOCALBASE}/bin/autom4te-${AUTOCONF_VERSION}
AUTORECONF= ${LOCALBASE}/bin/autoreconf-${AUTOCONF_VERSION}
AUTOSCAN= ${LOCALBASE}/bin/autoscan-${AUTOCONF_VERSION}
AUTOUPDATE= ${LOCALBASE}/bin/autoupdate-${AUTOCONF_VERSION}
AUTOCONF_VARS= AUTOCONF=${AUTOCONF} \
AUTOCONF_DIR=${AUTOCONF_DIR} \
AUTOHEADER=${AUTOHEADER} \
AUTOIFNAMES=${AUTOIFNAMES} \
AUTOM4TE=${AUTOM4TE} \
AUTORECONF=${AUTORECONF} \
AUTOSCAN=${AUTOSCAN} \
AUTOUPDATE=${AUTOUPDATE} \
AUTOCONF_VERSION=${AUTOCONF_VERSION}
AUTOCONF_DEPENDS= ${AUTOCONF}:${PORTSDIR}/${AUTOCONF_PORT}
BUILD_DEPENDS+= ${AUTOCONF_DEPENDS}
.endif
#---------------------------------------------------------------------------
# libtoolize
#---------------------------------------------------------------------------
.if defined(_AUTOTOOL_libtoolize)
LIBTOOL_VERSION= 2.4
LIBTOOL_PORT= devel/libtool
. if defined(_AUTOTOOL_libtoolize) && ${_AUTOTOOL_libtoolize} == "yes"
_AUTOTOOL_rule_libtoolize= yes
GNU_CONFIGURE?= yes
. endif
.endif
.if defined(LIBTOOL_VERSION)
LIBTOOLIZE= ${LOCALBASE}/bin/libtoolize
LIBTOOL_LIBEXECDIR= ${LOCALBASE}/libexec/libtool
LIBTOOL_SHAREDIR= ${LOCALBASE}/share/libtool
LIBTOOL_M4= ${LOCALBASE}/share/aclocal/libtool.m4
LTMAIN= ${LOCALBASE}/share/libtool/config/ltmain.sh
LIBTOOL_VARS= LIBTOOLIZE=${LIBTOOLIZE} \
LIBTOOL_LIBEXECDIR=${LIBTOOL_LIBEXECDIR} \
LIBTOOL_SHAREDIR=${LIBTOOL_SHAREDIR} \
LIBTOOL_M4=${LIBTOOL_M4} \
LTMAIN=${LTMAIN}
LIBTOOLIZE_ARGS?= -i -c -f
LIBTOOL_DEPENDS= libtool>=2.4:${PORTSDIR}/${LIBTOOL_PORT}
BUILD_DEPENDS+= ${LIBTOOL_DEPENDS}
.endif
#---------------------------------------------------------------------------
# Add to the environment
#---------------------------------------------------------------------------
AUTOTOOLS_VARS= ${AUTOMAKE_VARS} ${AUTOCONF_VARS} ${LIBTOOL_VARS}
.if defined(AUTOTOOLS_VARS) && !empty(AUTOTOOLS_VARS)
. for var in AUTOTOOLS CONFIGURE MAKE SCRIPTS
${var:tu}_ENV+= ${AUTOTOOLS_VARS}
. endfor
.endif
#---------------------------------------------------------------------------
# Make targets
#---------------------------------------------------------------------------
.if !target(run-autotools)
.ORDER: run-autotools run-autotools-libtoolize run-autotools-aclocal \
run-autotools-autoconf run-autotools-autoheader \
run-autotools-automake
run-autotools:: run-autotools-libtoolize run-autotools-aclocal \
run-autotools-autoconf run-autotools-autoheader \
run-autotools-automake
.endif
.if !target(run-autotools-aclocal)
run-autotools-aclocal:
. if defined(_AUTOTOOL_rule_aclocal)
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${ACLOCAL} \
${ACLOCAL_ARGS})
. else
@${DO_NADA}
. endif
.endif
.if !target(run-autotools-automake)
run-autotools-automake:
. if defined(_AUTOTOOL_rule_automake)
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOMAKE} \
${AUTOMAKE_ARGS})
. else
@${DO_NADA}
. endif
.endif
.if !target(run-autotools-autoconf)
run-autotools-autoconf:
. if defined(_AUTOTOOL_rule_autoconf)
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOCONF} \
${AUTOCONF_ARGS})
. else
@${DO_NADA}
. endif
.endif
.if !target(run-autotools-autoheader)
run-autotools-autoheader:
. if defined(_AUTOTOOL_rule_autoheader)
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTOHEADER} \
${AUTOHEADER_ARGS})
. else
@${DO_NADA}
. endif
.endif
.if !target(run-autotools-libtoolize)
run-autotools-libtoolize:
. if defined(_AUTOTOOL_rule_libtoolize)
@(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${LIBTOOLIZE} \
${LIBTOOLIZE_ARGS})
. else
@${DO_NADA}
. endif
.endif
dae28a1f4c54ba34887d522075ea44c7c8da98'>KDE/FreeBSD team presents KDE SC 4.8.4, probably the last release in 4.8.x se...
makc | 2012-06-15 | 1 | -2/+2 |
* | - update png to 1.5.10 | dinoex | 2012-06-01 | 2 | -2/+2 |
* | Fix CATEGORIES | makc | 2012-05-25 | 1 | -1/+1 |
* | KDE/FreeBSD team presents long awaited KDE SC 4.8.3! | makc | 2012-05-25 | 5 | -0/+248 |
* | Add the forgotten categories | bapt | 2012-04-23 | 1 | -0/+1 |
* | - upgrade to 3.5.2 | bapt | 2012-04-23 | 4 | -0/+21 |
* | The vast majority of pkg-descr files had the following format when they | dougb | 2011-10-24 | 1 | -3/+0 |
* | Provide a new MASTER_SITE. | obrien | 2011-10-06 | 2 | -8/+6 |
* | Turns out that some geocities sites are more dead than others. | dougb | 2011-08-24 | 2 | -2/+2 |
* | Geocities has been gone for almost 2 years now, so let's remove | dougb | 2011-08-23 | 4 | -4/+6 |
* | - Set DIST_SUBDIR: move dist files to DISTDIR/hunspell | sunpoet | 2011-08-18 | 2 | -2/+3 |
* | - Change MASTER_SITES to my LOCAL to avoid implicit change of non-versioned | sunpoet | 2011-08-18 | 2 | -4/+4 |
* | - Unify COMMENT and pkg-descr | sunpoet | 2011-08-13 | 2 | -3/+3 |
* | Remove WWW entries from unmaintained ports that return 404 or where the domain | ehaupt | 2011-08-03 | 1 | -2/+0 |
* | Bye bye abandonwares (part 5) | bapt | 2011-08-01 | 5 | -52/+0 |
* | - Sort SUBDIRs | sunpoet | 2011-08-01 | 1 | -1/+1 |
* | - Move language prefix to PKGNAMEPREFIX | sunpoet | 2011-07-29 | 1 | -8/+8 |
* | - Fix typo | sunpoet | 2011-07-25 | 1 | -1/+1 |
* | Pass matainership to the new office team | bapt | 2011-07-22 | 1 | -1/+1 |
* | Add vietnamese hunspell dictionnary | bapt | 2011-07-20 | 4 | -0/+37 |
* | Reset maintainership de jure. In fact KDE 3 has not been maintained by our team | makc | 2011-07-08 | 1 | -1/+1 |
* | - Kick MD5 support | miwi | 2011-07-03 | 2 | -2/+0 |
* | Last bunch of deprecation: no more public distfiles and/or abandonware... las... | bapt | 2011-06-17 | 1 | -0/+3 |
* | Bump PORTREVISION after open-mofit update | makc | 2011-05-02 | 1 | -1/+1 |
* | - Get Rid MD5 support | miwi | 2011-03-19 | 19 | -20/+0 |
* | - Remove unnecessary PKGNAMEPREFIX declaration | sunpoet | 2011-01-09 | 2 | -2/+0 |
* | Autotools update. Read ports/UPDATING 20100915 for details. | ade | 2010-09-16 | 1 | -2/+1 |
* | UniKey is a very small and easy-to-use Vietnamese keyboard for Windows. | pav | 2010-08-13 | 4 | -0/+33 |
* | Bounce PORTREVISION for gettext-related ports. Have fun, ya'll. | ade | 2010-05-31 | 1 | -1/+1 |
* | - update to 1.4.1 | dinoex | 2010-03-28 | 4 | -4/+4 |
* | - update to jpeg-8 | dinoex | 2010-02-05 | 4 | -4/+4 |
* | - Mark MAKE_JOBS_UNSAFE | pav | 2009-11-23 | 1 | -0/+1 |
* | Reset chinsan@FreeBSD.org due to numerous maintainer-timeouts and no | linimon | 2009-08-29 | 5 | -5/+5 |
* | - Switch SourceForge ports to the new File Release System: categories startin... | amdmi3 | 2009-08-22 | 3 | -6/+3 |
* | - bump all port that indirectly depends on libjpeg and have not yet been bump... | dinoex | 2009-07-31 | 3 | -2/+3 |
* | Convert most of remaining ports that depend on xorg-libraries to | amdmi3 | 2009-06-09 | 1 | -1/+2 |
* | - fix plist with -DNOPORTDOCS | itetcu | 2009-04-21 | 2 | -6/+6 |
* | Remove file that does not seem to serve any purpose | pav | 2009-01-07 | 1 | -1/+0 |
* | - utf8locale part of base system since 5.3 | pav | 2009-01-06 | 1 | -7/+1 |
* | - use DOCSDIR | itetcu | 2008-11-22 | 2 | -5/+6 |
* | The KDE FreeBSD team is proud to announce the release | miwi | 2008-08-29 | 1 | -3/+3 |
* | The KDE FreeBSD team is proud to announce the release | miwi | 2008-08-18 | 1 | -3/+3 |
* | Mark BROKEN on HEAD: does not build. | erwin | 2008-08-13 | 2 | -1/+11 |
* | - Remove USE_GCC where it can be satisfied with base compiler on following | pav | 2008-07-25 | 1 | -1/+0 |
* | Bump portrevision due to upgrade of devel/gettext. | edwin | 2008-06-06 | 3 | -2/+3 |
* | - Remove unneeded dependency from gtk12/gtk20 [1] | miwi | 2008-04-20 | 5 | -16/+16 |
* | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG | miwi | 2008-03-22 | 1 | -2/+1 |
* | - Add MASTER_SITES. | chinsan | 2008-03-01 | 1 | -1/+1 |
* | Tweak the PR 119107 changes. | obrien | 2008-02-03 | 2 | -18/+46 |
* | Use termios instead of sgtty. | obrien | 2008-01-22 | 2 | -2/+65 |
* | Update to KDE 3.5.8 | lofi | 2007-10-30 | 1 | -3/+3 |
* | Fix gcc4 build. | obrien | 2007-08-24 | 3 | -5/+25 |
* | Respect LOCALBASE. | tdb | 2007-07-10 | 1 | -1/+1 |
* | Update to KDE 3.5.7 / KOffice 1.6.3 | lofi | 2007-07-04 | 2 | -4/+3 |
* | - Welcome X.org 7.2 \o/. | flz | 2007-05-20 | 11 | -2/+11 |
* | Update to KDE 3.5.6 / KOffice 1.6.2 | lofi | 2007-03-14 | 2 | -3/+54 |
* | Really normalize Aspell dictionaries ports PKGVERSION... | thierry | 2007-02-15 | 1 | -1/+1 |
* | - Update to 3.04 | rafan | 2007-02-04 | 2 | -11/+24 |
* | Add urwvn 3.02, vietnamese version of the standard PostScript fonts from | rafan | 2007-01-28 | 4 | -0/+44 |
* | Add gtk-im-vi 0.1.1, simple GTK+ input methods for Vietnamese(VNI and | rafan | 2007-01-28 | 5 | -0/+50 |
* | Normalize Aspell dictionaries PKGNAMEs. | thierry | 2007-01-14 | 1 | -0/+1 |
* | Add vietunicode-trichlor 2004.04.30, 100% Viet Unicode compatible. | rafan | 2007-01-08 | 4 | -0/+69 |
* | Add vietunicode-hannom 2005.02.06, UNICODE Han Nom Font Set. | rafan | 2007-01-08 | 4 | -0/+50 |
* | Add vietunicode-web1 2004.04.30, 100% Viet Unicode & Viet | rafan | 2007-01-08 | 4 | -0/+53 |
* | Update to KDE 3.5.5 / KOffice 1.6.1 | lofi | 2006-12-20 | 1 | -3/+3 |
* | - Respect X11BASE | rafan | 2006-12-02 | 2 | -15/+12 |
* | KDE 3.5.4 / KOffice 1.5.2 | lofi | 2006-09-13 | 2 | -3/+6 |
* | All dictionaries can be installed separately: | thierry | 2006-07-15 | 4 | -7/+18 |
* | Update to KDE 3.5.3 | lofi | 2006-06-06 | 3 | -162/+100 |
* | SHA256ify | edwin | 2006-01-24 | 14 | -0/+16 |
* | Update to KDE 3.5.0 | lofi | 2006-01-09 | 1 | -0/+1 |
* | Remove expired ports. | lawrance | 2005-12-15 | 5 | -73/+0 |
* | Bump PORTREVISION to chase the glib20 shared library update. | marcus | 2005-11-05 | 1 | -0/+1 |
* | Unbreak by fixing pkg-plist and aligning run-depends statement. | edwin | 2005-11-04 | 2 | -8/+5 |
* | Unbreak port by fixing pkg-plist | edwin | 2005-11-04 | 2 | -5/+2 |
* | Respect X11BASE | mnag | 2005-10-27 | 3 | -11/+26 |
* | Mark as BROKEN: unfetchable. | linimon | 2005-10-12 | 1 | -1/+5 |
* | Update to KDE 3.4.2 / KOffice 1.4.1 | lofi | 2005-08-01 | 1 | -1/+1 |
* | This port is scheduled for deletion on 2005-09-22 if it is still broken | kris | 2005-07-23 | 2 | -0/+4 |
* | The grand-daddy site of VietNet gone :~-( R.I.P. media.mit.edu | obrien | 2005-07-17 | 1 | -1/+2 |
* | Watch over this VN port. | obrien | 2005-07-17 | 1 | -1/+1 |
* | The grand-daddy site of VietNet gone :~-( R.I.P. media.mit.edu | obrien | 2005-07-17 | 5 | -10/+6 |
* | The grand-daddy site of VietNet gone :~-( R.I.P. media.mit.edu | obrien | 2005-07-17 | 1 | -2/+1 |
* | Move to using the bzip2'ed distfile. | obrien | 2005-07-17 | 2 | -2/+3 |
* | At Kris's request, back out the MACHINE_ARCH spelling correction until | obrien | 2005-04-12 | 1 | -1/+1 |
* | Assist getting more ports working on AMD64 by obeying the | obrien | 2005-04-11 | 1 | -1/+1 |
* | BROKEN: Broken dependency | kris | 2005-03-27 | 1 | -0/+2 |
* | Upgrade to 0.2.9. | thierry | 2005-03-16 | 4 | -10/+10 |
* | Bump PORTREVISION to chase the glib20 shared lib version change. | marcus | 2005-03-12 | 1 | -0/+1 |
* | BROKEN: Incomplete pkg-plist | kris | 2005-02-28 | 1 | -0/+2 |
* | Add ports to ${SUBDIR} in alphabetical order. | cperciva | 2005-01-30 | 1 | -2/+2 |
* | Portlint. | obrien | 2004-12-30 | 2 | -2/+2 |
* | Portlint. | obrien | 2004-12-30 | 1 | -1/+1 |
* | Add xvnkb 0.2.8, a Vietnamese input method for X-Window. | thierry | 2004-12-30 | 10 | -0/+306 |
* | Update to KDE 3.3.2 | lofi | 2004-12-14 | 1 | -1/+1 |
* | Update to KDE 3.3 | lofi | 2004-08-31 | 1 | -1/+1 |
* | Add slaves ports for Aspell's new dictionaries. | thierry | 2004-08-29 | 3 | -0/+22 |
* | - Add the X_WINDOW_SYSTEM={xorg,xfree86-4,xfree86-3} variable to bsd.port.mk, | anholt | 2004-07-24 | 3 | -20/+10 |
* | Remove category pkg/COMMENT files in favour of a COMMENT variable in the | kris | 2004-04-02 | 2 | -1/+2 |
* | SIZEify (maintainer timeout) | trevor | 2004-03-31 | 13 | -0/+14 |
* | Update to KDE 3.2.1 / QT 3.3.1 | lofi | 2004-03-10 | 2 | -2/+1 |
* | - rpm2cpio.pl need to be EXTRACT_DEPENDS otherwise it will not work | pav | 2004-03-02 | 1 | -1/+1 |
* | Update to KDE 3.2.0 | lofi | 2004-02-05 | 3 | -5/+6 |
* | Add USE_GETTEXT and bump PORTREVISION. | marcus | 2004-02-04 | 1 | -2/+2 |
* | Now gettext 0.12.1 is gettext-old. | trevor | 2004-01-24 | 1 | -1/+1 |
* | Use the CPIO macro defined in bsd.port.mk. | trevor | 2004-01-22 | 1 | -1/+1 |
* | Use the SORT macro from bsd.port.mk. | trevor | 2004-01-22 | 1 | -1/+1 |
* | s/rpm2cpio/rpm2cpio.pl/ after the recent update of archivers/rpm2cpio (the | netchild | 2003-12-12 | 1 | -2/+2 |
* | Another last minute change. Size/date stamp changes only. | will | 2003-09-28 | 1 | -1/+1 |
* | Upgrade to Qt 3.2.1 / KDE 3.1.4. See x11/kde3/Makefile rev 1.64 for details. | will | 2003-09-18 | 1 | -2/+1 |
* | Update this port from being based on the X11 R6.5.1 sources to R6.6. | obrien | 2003-08-18 | 2 | -3/+4 |
* | Remove the _POSIX_SOURCE handling to fix the building on 5-CURRENT. | obrien | 2003-08-18 | 2 | -6/+2 |
* | Update KDE to the latest official release, KDE 3.1.3 | lofi | 2003-07-29 | 2 | -1/+63 |
* | Fix PLIST | lioux | 2003-06-13 | 1 | -1/+17 |
* | Update to KDE 3.1.2 | lioux | 2003-05-20 | 1 | -1/+1 |
* | Add a NO_VIET_KDE knob to avoid the KDE I18N bits -- otherwise it is hard to | obrien | 2003-05-09 | 1 | -0/+2 |
* | BROKEN: Does not compile | kris | 2003-05-07 | 1 | -0/+2 |
* | Repo-move KDE I18N hebrew, hungarian, & vietnamese messages to their | will | 2003-04-14 | 4 | -5/+72 |
* | Clear moonlight beckons. | ade | 2003-03-07 | 30 | -15/+15 |
* | Upgrade kde-i18n to 3.1. Note that the following modules did not get a | will | 2003-01-29 | 2 | -38/+34 |
* | Perl script to convert the text in the VIQR encoding to another Vietnamese | obrien | 2002-11-13 | 6 | -0/+68 |
* | o Rollback PORTCOMMENT modifications while this feature's implementation | lioux | 2002-11-11 | 26 | -26/+13 |
* | Use PORTCOMMENT. | obrien | 2002-11-07 | 26 | -13/+26 |
* | Add a missing directory | kris | 2002-10-28 | 1 | -0/+1 |
* | Get the dependencies correct for XF4. | obrien | 2002-10-17 | 1 | -1/+1 |
* | revert last commit. This builds fine here, and I've never seen one | obrien | 2002-10-17 | 1 | -2/+0 |
* | Unmark broken. Please have the decentcy to notify the maintainer of a build | obrien | 2002-10-17 | 1 | -2/+0 |
* | 1. Removed comments from pkg-plist files per will's request. | alane | 2002-10-11 | 2 | -3/+27 |
* | BROKEN: Does not compile | kris | 2002-10-06 | 1 | -0/+2 |
* | BROKEN: Missing dependencies | kris | 2002-10-06 | 1 | -0/+2 |
* | Don't gratuitously add -O. | obrien | 2002-09-09 | 1 | -2/+2 |
* | 'union wait' was depreciated by the time of Net/2. | obrien | 2002-09-09 | 1 | -13/+24 |
* | Catch up with lossage of 'union wait' in 5-CURRENT. | obrien | 2002-09-09 | 2 | -21/+34 |
* | Fix corrupted comment line. | obrien | 2002-09-09 | 1 | -1/+1 |
* | I have no idea what bsd.port.mk change broke this port, but be more | obrien | 2002-09-09 | 1 | -0/+1 |
* | Update to 3.0.3. Not much changed here: [1] i18n PKGNAMEs converted to | will | 2002-08-25 | 3 | -4/+4 |
* | 1. Changed the lib depends on gettext to a build depends. This will mean | alane | 2002-08-03 | 1 | -2/+2 |
* | Bump PORTREVISION. KDE is fragile enough in its dependencies; we don't | alane | 2002-08-02 | 1 | -0/+1 |
* | Chase shlib rev of devel/gettext | ade | 2002-08-02 | 1 | -1/+1 |
* | Fix MASTER_SITE_SUBDIR. | will | 2002-07-10 | 1 | -1/+1 |
* | Update to 3.0.2 -- full log available in ports/x11/kde3/Makefile,v 1.51. | will | 2002-07-05 | 3 | -5/+12 |
* | Upgrade to KDE 3.0.1. The delay in this upgrade is mainly due to the | will | 2002-06-16 | 3 | -2/+32 |
* | Please welcome Qt3/KDE3 to our ports tree. This includes work since the | will | 2002-04-22 | 7 | -128/+154 |
* | gettext upgrade uber-patch (stage 3) | ade | 2002-04-13 | 1 | -1/+2 |
* | Stage 1 of gettext update. | ade | 2002-03-16 | 1 | -1/+1 |
* | Add WWW. | demon | 2001-12-28 | 1 | -0/+2 |
* | Update to 2.2.2. | demon | 2001-12-13 | 3 | -9/+16 |
* | Note the standard these utilities conform to. | obrien | 2001-11-28 | 15 | -35/+133 |
* | Unicode TrueType Font with UHoai Vietnamese encoding | obrien | 2001-11-28 | 8 | -0/+60 |