# Ports collection Makefile for: MIT Kerberos V # Date created: 6/5/1998 # Whom: nectar@FreeBSD.org # # $FreeBSD$ # PORTNAME= krb5 PORTVERSION= 1.4.1 CATEGORIES= security MASTER_SITES= http://web.mit.edu/kerberos/dist/krb5/${PORTVERSION:C/\.[0-9]*$/&/:C/\.[0-9]*$//}/ EXTRACT_SUFX= .tar DISTNAME= ${PORTNAME}-${PORTVERSION}-signed MAINTAINER= cy@FreeBSD.org COMMENT= An authentication system developed at MIT, successor to Kerberos IV BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 LATEST_LINK= ${PORTNAME} KERBEROSV_URL= http://web.mit.edu/kerberos/ USE_REINPLACE= yes USE_GMAKE= yes USE_PERL5_BUILD= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes USE_LIBTOOL_VER= 15 CONFIGURE_ARGS?= --enable-shared --enable-static CONFIGURE_ARGS+= --disable-thread-support CONFIGURE_ENV= INSTALL="${INSTALL}" YACC=/usr/bin/yacc \ CFLAGS="${CFLAGS}" MAKE_ARGS= INSTALL="${INSTALL}" KRB5_KRB4_COMPAT?= NO .if !defined(KRB5_KRB4_COMPAT) || ${KRB5_KRB4_COMPAT} == "NO" CONFIGURE_ARGS+= --without-krb4 PLIST_SUB+= KRB4="@comment " .else PLIST_SUB+= KRB4="" .endif .if defined(KRB5_HOME) PREFIX= ${KRB5_HOME} .endif INFO_FILES= krb425.info krb5-admin.info krb5-admin.info-1 \ krb5-admin.info-2 krb5-admin.info-3 krb5-install.info \ krb5-install.info-1 krb5-install.info-2 krb5-user.info MAN1= krb5-send-pr.1 krb5-config.1 kpasswd.1 klist.1 \ kinit.1 kdestroy.1 ksu.1 sclient.1 rsh.1 rcp.1 \ rlogin.1 ftp.1 telnet.1 kerberos.1 kvno.1 compile_et.1 .if defined(KRB5_KRB4_COMPAT) && ${KRB5_KRB4_COMPAT} != "NO" MAN1+= v4rcp.1 .endif MAN5= kdc.conf.5 krb5.conf.5 .k5login.5 MAN8= krb5kdc.8 kadmin.8 kadmin.local.8 kdb5_util.8 \ ktutil.8 kadmind.8 kprop.8 kpropd.8 sserver.8 \ kshd.8 klogind.8 login.krb5.8 ftpd.8 telnetd.8 \ k5srvutil.8 .if defined(KRB5_KRB4_COMPAT) && ${KRB5_KRB4_COMPAT} != "NO" MAN8+= krb524d.8 .endif WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src WANT_HTML?= YES HTML_DOC_DIR= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/doc HTML_DOCS= admin.html user-guide.html install.html HTML_OUTDIRS= krb5-admin krb5-install .include post-extract: @${TAR} -C ${WRKDIR} -xzf ${WRKDIR}/${PORTNAME}-${PORTVERSION}.tar.gz @${RM} ${WRKDIR}/${PORTNAME}-${PORTVERSION}.tar.gz ${WRKDIR}/${PORTNAME}-${PORTVERSION}.tar.gz.asc .if !defined(EXTRACT_PRESERVE_OWNERSHIP) @if [ `id -u` = 0 ]; then \ ${CHMOD} -R ug-s,go-w ${WRKDIR}/${PORTNAME}-${PORTVERSION}; \ ${CHOWN} -R 0:0 ${WRKDIR}/${PORTNAME}-${PORTVERSION}; \ fi .endif post-patch: @${REINPLACE_CMD} -e '1s,^#!\/usr\/athena/bin/perl,#!${PERL5},' \ ${WRKSRC}/../doc/man2html pre-build: .if !defined(KRB5_KRB4_COMPAT) @${ECHO} "------------------------------------------------------" @${ECHO} "Set KRB5_KRB4_COMPAT=NO if you do not want to build " @${ECHO} "the KerberosIV compatibility libraries. " @${ECHO} "------------------------------------------------------" .endif post-build: @(cd ${WRKSRC}/../doc && \ ${MAKE} ${INFO_FILES}) .if defined(WANT_HTML) && ${WANT_HTML} == "YES" @(cd ${WRKSRC}/../doc && \ ${MAKE} ${HTML_DOCS}) .endif post-install: # html documentation .if defined(WANT_HTML) && ${WANT_HTML} == "YES" @${MKDIR} ${PREFIX}/share/doc/krb5 for html in ${HTML_DOC_DIR}/*.html; do \ ${INSTALL_MAN} $${html} ${PREFIX}/share/doc/krb5; \ ${ECHO_CMD} share/doc/krb5/`${BASENAME} $${html}` >> ${TMPPLIST}; \ done .for htmldir in ${HTML_OUTDIRS} @${MKDIR} ${PREFIX}/share/doc/krb5/${htmldir} for html in ${HTML_DOC_DIR}/${htmldir}/*; do \ ${INSTALL_MAN} $${html} ${PREFIX}/share/doc/krb5/${htmldir}; \ ${ECHO_CMD} share/doc/krb5/${htmldir}/`${BASENAME} $${html}` >> ${TMPPLIST}; \ done ${ECHO_CMD} @dirrm share/doc/krb5/${htmldir} >> ${TMPPLIST} .endfor .endif ${ECHO_CMD} @dirrm share/doc/krb5 >> ${TMPPLIST} # handle info files .for info in ${INFO_FILES} ${INSTALL_MAN} ${WRKSRC}/../doc/${info} ${PREFIX}/info/${info} .endfor .for info in ${INFO_FILES:M*.info} install-info ${PREFIX}/info/${info} ${PREFIX}/info/dir .endfor # fixup packing list (no libs without version numbers in aout case) .if ${PORTOBJFORMAT} == "aout" ${ECHO_MSG} "Fixing packing list for a.out" ${MV} ${TMPPLIST} ${TMPPLIST}.new ${GREP} -v '\.so$$' ${TMPPLIST}.new > ${TMPPLIST} ${RM} ${TMPPLIST}.new .endif @${SED} "s%\${PREFIX}%${PREFIX}%" ${FILESDIR}/README.FreeBSD > ${PREFIX}/share/doc/krb5/README.FreeBSD @${CHMOD} 444 ${PREFIX}/share/doc/krb5/README.FreeBSD @${ECHO} "------------------------------------------------------" @${ECHO} "This port of MIT Kerberos 5 includes remote login " @${ECHO} "daemons (telnetd and klogind). These daemons default " @${ECHO} "to using the system login program (/usr/bin/login). " @${ECHO} "Please see the file " @${ECHO} "${PREFIX}/share/doc/krb5/README.FreeBSD" @${ECHO} "for more information. " @${ECHO} "------------------------------------------------------" .include class='sub right'>
aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* - Update MAINTAINER email address for all my portspclin2013-02-1326-36/+28
* Add my location as a new committerpclin2013-02-131-1/+1
* Update from 1.2.6 to 1.2.7.osa2013-02-132-5/+6
* - Update to 1.1clsung2013-02-133-11/+8
* - Update to 0.9.9.46miwi2013-02-134-56/+59
* - Update to r42miwi2013-02-132-3/+3
* - Merge in upstream fix for bug 2439 [1]zi2013-02-133-9/+14
* - Update to 0.3.1.jkim2013-02-134-27/+25
* - Update to 5697amdmi32013-02-132-3/+3
* - Build with java/bootstrap-openjdk on X86 platforms by default.jkim2013-02-131-40/+18
* - Update to 2.5.1olivierd2013-02-133-3/+14
* Fix copy & paste typo in headerlme2013-02-131-1/+1
* - Convert to new options frameworklme2013-02-131-36/+21
* Upgrade horde-groupware and horde-webmail to 5.0.4mm2013-02-134-6/+6
* Update to 0.55.tobez2013-02-132-4/+3
* - update to 0.6rm2013-02-133-10/+6
* - update to 2.1rm2013-02-132-8/+3
* - update to 1.6.1rm2013-02-132-8/+3
* - update to 1.7rm2013-02-133-10/+5
* Update to 2.1: bug fixes, add Turkish translationnaddy2013-02-133-3/+4
* - Trim headerehaupt2013-02-131-5/+3
* - Update to 1.21 [1]bdrewery2013-02-133-12/+26
* - Fix BDEPS using p5-Test-MockObject instead of p5-Test-MockModule and remove...lippe2013-02-131-2/+2
* - Update to 3.12.1, which resolves CVE-2013-0256swills2013-02-132-8/+4
* Horde suite update:mm2013-02-1378-117/+117
* - Update Ruby 1.9 to 1.9.3p385. This fixes a security issue in rdoc (CVE-2013...swills2013-02-125-13/+201
* - Update to 6.2.7clsung2013-02-123-10/+12
* - Update to 2.5.6clsung2013-02-122-3/+3
* - Update to 1.13clsung2013-02-122-4/+4
* Fix plistbapt2013-02-121-0/+1
* - Update to 1.56clsung2013-02-122-3/+3
* - Update to 0.60tota2013-02-122-7/+9
* - Switch MASTER_SITES to USE_GITHUPmiwi2013-02-123-8/+11
* - Update to 2.05clsung2013-02-122-8/+3
* - Update to 0.16.4clsung2013-02-122-3/+3
* - Update to 4.2.3koobs2013-02-123-8/+31
* - Update to 1.6.6miwi2013-02-123-3/+6
* Bam is a fast and flexible build system. Bam uses Lua to describe the buildmiwi2013-02-124-0/+41
* The Clipper library primarily performs boolean clipping (intersection,miwi2013-02-125-0/+35
* - Update to 20130209miwi2013-02-122-5/+6
* Update to 2.46.tobez2013-02-122-3/+5
* Only try to delete share/applications if GNOMELINKS is setbapt2013-02-121-1/+1
* Do not try to delete a directory that is not created by the portbapt2013-02-122-6/+1
* Do not try to delete a directory that is not created by the portbapt2013-02-122-6/+1
* Update to 4.4.3martymac2013-02-122-4/+3
* Do not try to remove a directory that has never been created by the portbapt2013-02-122-6/+1
* Fix conversion to new options frameworkbapt2013-02-121-7/+2
* - Update to 1.2.23miwi2013-02-123-15/+5
* - Update to 0.3.2clsung2013-02-122-10/+5
* Library and tooling to access the Windows XML Event Log (EVTX) formatmiwi2013-02-125-0/+70
* Liquibase is an open source (Apache 2.0 Licensed), database-independentmiwi2013-02-126-0/+100
* - New port: print/pdf4tclgahr2013-02-124-0/+43
* GTMixer is a free, simple graphical mixer for FreeBSD.miwi2013-02-125-0/+43
* - Make fetchable again by updating to 4.1.2gahr2013-02-122-12/+7
* - Unbreak on GCCgahr2013-02-121-0/+44
* - Update to svn revision 17820, unbreakak2013-02-123-2369/+2425
* Update devel/svn2git to 1.0.8.dbn2013-02-125-5/+46
* Change NOMAN to NO_MAN:mi2013-02-122-2/+2
* Disable Kerberos and GSSAPI when PostgreSQL-SDBC is disabled.jkim2013-02-121-1/+2
* Add a patch to fix MulticastSocket.setInterface().jkim2013-02-122-1/+48
* Add a patch to fix MulticastSocket.setInterface().jkim2013-02-123-1/+38
* Update demos to 7u13.jkim2013-02-122-8/+8
* - Update to 0.8-23tota2013-02-122-3/+3
* Update to 1.34.tobez2013-02-122-12/+5
* Update to 0.08206.tobez2013-02-122-3/+3
* Add devel/doxygen as a build dependency for SDK option.jkim2013-02-121-2/+2
* Update to 0.006.tobez2013-02-122-3/+3
* Fix cmake depend.brooks2013-02-122-15/+17
* Upgrade llvm-devel and related ports to 3.3.r174891.brooks2013-02-127-31/+64
* Fix build on i386makc2013-02-121-0/+12
* Update to 3.4.15garga2013-02-122-3/+3
* Update WWW/MASTER_SITESmakc2013-02-122-10/+5
* Update from 2.6.9 to 2.6.10.osa2013-02-126-16/+16
* Add dependence on libxsltmakc2013-02-121-2/+2
* Update deskutils/plasma-applet-cwp to 1.6.13dbn2013-02-122-3/+3
* Update to 1.46.tobez2013-02-122-9/+4
* - Add a couple of missing 0s from OSVERSIONgahr2013-02-111-1/+1
* - Fix build on !CURRENTgahr2013-02-111-3/+12
* Update to 0.4.0skreuzer2013-02-112-3/+3
* Update GH_TAGNAME to make the distfile fetchableskreuzer2013-02-111-1/+1
* - Chase devel/ucommon shlib versbion bumpgahr2013-02-116-18/+95
* - Update to 6.0.3gahr2013-02-113-19/+10
* Update to 1.8.14makc2013-02-114-16/+8
* Update to 1.8.16makc2013-02-112-8/+4
* - Fix buildgahr2013-02-112-2/+12
* - Add missing/remove useless dependenciesmakc2013-02-111-21/+10
* - Update 0.5.1ak2013-02-113-7/+9
* Use the standard option for bash completion scriptbsam2013-02-111-3/+2
* Update to 5.03.tobez2013-02-112-9/+5
* Update to 0.40.tobez2013-02-112-9/+6
* Update to 0.005.tobez2013-02-112-4/+5
* Add devel/p5-Devel-Hide 0.0009, a Perl module that, for testing purposes,tobez2013-02-115-0/+30
* - Update to 1.34gahr2013-02-113-8/+18
* Update to 1.111011.tobez2013-02-112-4/+3
* Update to 1.00.tobez2013-02-112-3/+4
* Update to 1.4.6 release and pet portlint.ale2013-02-112-12/+14
* - Unbreak on amd64 and sparc64gahr2013-02-114-12/+63
* Fix optionsng conversionbapt2013-02-111-8/+2
* - Fix issue that option settings are saved in /var/db/ports/ja-mecabtota2013-02-112-25/+9
* New port, a 6000 line replacement for getopt(3).grog2013-02-115-0/+291
* Update dependence's version.osa2013-02-111-1/+1
* Stop portscout from checking emulators/wine-gecko.dbn2013-02-111-0/+2
* - Remove trailing slash from devel/json-c LIB_DEPENDS originbdrewery2013-02-112-2/+2
* - Update to 0.8.2tota2013-02-113-6/+14
* - Update to 0.4.3tota2013-02-113-6/+11
* Remove patches to build with clang and force clamav and clamav-devel to use GCC.garga2013-02-115-434/+2
* Add dependency to libiconv.netchild2013-02-111-0/+2
* Fix pkg-plist, now that redports is back and so I see the errors.matthew2013-02-112-0/+15
* - fix paddding in TLS1.1 and DTLS on amd64dinoex2013-02-112-1/+73
* - add tuneable GD_PORT for localized versions of gddinoex2013-02-111-1/+4
* Update to XS-httpd 3.7 beta 26johans2013-02-102-9/+4
* This is a library that includes all the code I tend to carry from project tomiwi2013-02-105-0/+44
* CityHash provides hash functions for strings. The functions mix themiwi2013-02-106-0/+68
* - Update to 3.10.1miwi2013-02-102-4/+3
* Download-gemist downloads video's from the Dutch uitzending gemist site.miwi2013-02-104-0/+44
* - Update to 0.1.6miwi2013-02-103-10/+11
* - Respect PREFIXmiwi2013-02-101-0/+1
* - Respect PREFIXmiwi2013-02-101-0/+1
* - Update to 0.3.11miwi2013-02-103-5/+7
* - Respect PREFIXmiwi2013-02-101-0/+1
* - Respect PREFIXmiwi2013-02-101-1/+2
* GVolWheel is a Lightweight application which lets you control the audiomiwi2013-02-107-0/+94
* - Upgrade caudium to 1.4.18johans2013-02-103-14/+11
* Update GAP to 4.6.2johans2013-02-102-6/+6
* - Respect PREFIXmiwi2013-02-101-2/+2
* - Respect PREFIXmiwi2013-02-101-1/+2
* - Respect PREFIXmiwi2013-02-101-1/+2
* - Add missed dependencyaz2013-02-101-0/+4
* - Add missing patch to fix the build on i386miwi2013-02-101-0/+18
* - Update to version 1.03az2013-02-104-12/+21
* Update to 289ehaupt2013-02-102-3/+3
* - Update to 3.2miwi2013-02-104-33/+36
* - Update to 20130203miwi2013-02-102-3/+3
* - Update to 20130209miwi2013-02-104-198/+8
* - Update to 2.0.8miwi2013-02-102-4/+3
* - Update to 0.2.32miwi2013-02-102-3/+3
* - Update to 2013-02-08miwi2013-02-102-4/+4
* - Update to 3.3miwi2013-02-104-26/+49
* - Update to 0.4.14miwi2013-02-105-119/+187
* - Update to 4.6miwi2013-02-107-370/+291
* - Fix build with clangmiwi2013-02-103-24/+26
* - Fix build with clangmiwi2013-02-101-5/+7
* - Update to 6.6.1miwi2013-02-106-323/+124
* - Update to 0.6.3miwi2013-02-105-25/+73
* - Update to 4.0.amiwi2013-02-109-46/+251
* Asteroid (just one!) is a modern version of the arcade classic Asteroids,miwi2013-02-105-0/+65
* An arcade game best described as a cross between pacman and fastfood.miwi2013-02-105-0/+295
* Update to the 20130203 snapshot of GCC 4.8.0.gerald2013-02-102-3/+3
* - update to 1.0.0jgh2013-02-102-7/+3
* - Update to 3.1.0jlaffaye2013-02-107-31/+151
* Python bindings for chromium compact language detector library.demon2013-02-104-0/+31
* KNC is Kerberised NetCat. It works in basically the same way as either netcatcrees2013-02-105-0/+37
* - Correctly detect laptop lid.avilla2013-02-102-5/+13
* FreeBSD string must be preceded by @commentpawel2013-02-101-1/+1
* Upgrade to version 0.9.2.olgeni2013-02-103-7/+180
* Update Makefile header and MAINTAINER addresskoobs2013-02-091-2/+2
* Update to the 20130202 snapshot of 4.7.3.gerald2013-02-092-3/+3
* - Update to 2.67culot2013-02-094-24/+4
* Update MAINTAINER address for all my ports. While I'm here,koobs2013-02-0935-142/+66
* Connect mysql-connector-c to the buildcrees2013-02-091-0/+1
* - Update to 1.3.0miwi2013-02-092-10/+12
* - Update to latest git version 31-g9ca7fdamiwi2013-02-092-3/+4
* A common API for running Django on non-relational/NoSQL databasesmiwi2013-02-094-0/+33
* - Update to 20121229miwi2013-02-093-14/+20
* - Update to 3.4.0miwi2013-02-092-3/+5
* zogftw makes using multiple geli-encrypted single-vdev ZFS poolsmiwi2013-02-094-0/+52
* - Update to 1.4.6miwi2013-02-092-6/+5
* - Update to 2.17.2culot2013-02-092-3/+3
* - Add missing depspawel2013-02-091-7/+4
* - Enable video and audio support for real when requested.avilla2013-02-091-3/+9
* Update to 0.08.tobez2013-02-092-11/+5
* Update xpaint to 2.9.9.4johans2013-02-092-3/+3
* Various spelling correctionscrees2013-02-09