# New ports collection makefile for: c3270 # Date created: 04 October 2004 # Whom: pdseniura@techie.com # # $FreeBSD$ # PORTNAME= c3270 PORTVERSION= 3.3.12ga7 CATEGORIES= net MASTER_SITES= http://x3270.bgp.nu/download/ EXTRACT_SUFX= -src.tgz MAINTAINER= araujo@FreeBSD.org COMMENT= Full-screen curses-based remote login to IBM mainframes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C/([0-9]\.[0-9])(\..*)/\1/} USE_GMAKE= yes GNU_CONFIGURE= yes USE_ICONV= yes USE_OPENSSL= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib MAN1= c3270.1 \ x3270if.1 \ x3270-script.1 MAN5= ibm_hosts.5 MANCOMPRESSED= no .if !defined(NOPORTDOCS) PORTDOCS= * .endif # c3270's ./configure script supports these. # Within it all options except DBCS are enabled by default. OPTIONS=OPENSSL "Build with OpenSSL support" on \ READLINE "Use system Readline library" on \ PR3287 "Build pr3287 component" on \ ANSI "Include NVT (ANSI) support" on \ APL "Include APL support" on \ DBCS "Include EBCDIC DBCS support" off \ FT "Include IND\$$FILE support" on \ LOCAL_PROCESS "Include Local Process support" on \ PRINTER "Include printer session support" on \ SCRIPT "Include scripting support" on \ TN3270E "Include TN3270-Extended support" on \ TRACE "Include trace support" on .include .if defined(WITHOUT_OPENSSL) && !defined(WITH_OPENSSL) CONFIGURE_ARGS+= --disable-ssl .undef USE_OPENSSL .endif .if defined(WITHOUT_READLINE) && !defined(WITH_READLINE) CONFIGURE_ARGS+= --without-readline .endif .if defined(WITHOUT_ANSI) && !defined(WITH_ANSI) CONFIGURE_ARGS+= --disable-ansi .endif .if defined(WITHOUT_APL) && !defined(WITH_APL) CONFIGURE_ARGS+= --disable-apl .endif # EBCDIC double-byte character set support is disabled by default .if defined(WITH_DBCS) && !defined(WITHOUT_DBCS) CONFIGURE_ARGS+= --enable-dbcs PLIST_SUB+= DBCS="" .else PLIST_SUB+= DBCS="@comment " .endif .if defined(WITHOUT_FT) && !defined(WITH_FT) CONFIGURE_ARGS+= --disable-ft .endif .if defined(WITHOUT_LOCAL_PROCESS) && !defined(WITH_LOCAL_PROCESS) CONFIGURE_ARGS+= --disable-local-process .endif .if defined(WITHOUT_PRINTER) && !defined(WITH_PRINTER) CONFIGURE_ARGS+= --disable-printer .endif .if defined(WITHOUT_SCRIPT) && !defined(WITH_SCRIPT) CONFIGURE_ARGS+= --disable-script .endif .if defined(WITHOUT_TN3270E) && !defined(WITH_TN3270E) CONFIGURE_ARGS+= --disable-tn3270e .endif .if defined(WITHOUT_TRACE) && !defined(WITH_TRACE) CONFIGURE_ARGS+= --disable-trace .endif post-install: @( cd ${WRKSRC} && ${GMAKE} ${MAKE_FLAGS} Makefile install.man ) .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @${MKDIR} ${DOCSDIR}/html .for i in ${PORTDOCS} @${INSTALL_DATA} ${WRKSRC}/html/${i} ${DOCSDIR}/${i} .endfor @${ECHO_MSG} "===> Extra Documentation installed in ${DOCSDIR}/html ." .endif .include >
Commit message (Expand)AuthorAgeFilesLines
* PublishFabio Berger2018-12-131-1/+1
* Implement prefer-template tslint rulekao2018-12-131-1/+1
* Fix hardcoded path in release notes fetchingLeonid Logvinov2018-12-032-9/+7
* Remove env var check for INSTANT_HEAP_ANALYTICS_ID_PRODUCTION since this is o...Steve Klebanoff2018-12-011-11/+0
* Revert "[@0x/instant] Fix CI build broken by instant installation tests"Leonid Logvinov2018-11-262-10/+1
* Fix the lerna paremeter name from cdVersions to cd-versionsLeonid Logvinov2018-11-232-1/+10
* PublishFabio Berger2018-11-221-1/+1
* print out error message and stackFabio Berger2018-11-221-1/+1
* immediately return the patch incremented version if no changelog entries existFabio Berger2018-11-221-0/+1
* Check for instant heap production credentials in pre-publish stepSteve Klebanoff2018-11-201-0/+11
* PublishJacob Evans2018-11-091-1/+1
* chore: Add --format stylish to tslintAlex Browne2018-10-241-1/+1
* feat(monorepo-scripts): add ForwarderWrapperError to IGNORED_EXCESSIVE_TYPES ...Brandon Millman2018-10-242-0/+5
* Fix the package versions in release notesLeonid Logvinov2018-10-195-17/+17
* Don't attempt publishing if no packages need itLeonid Logvinov2018-10-181-0/+4
* PublishLeonid Logvinov2018-10-181-1/+1
* chore: change README.md from 0xproject to 0xJacob Evans2018-10-181-2/+2
* chore: change package org from 0xproject to 0xJacob Evans2018-10-187-12/+12
* Remove sra-reportLeonid Logvinov2018-10-181-6/+1
* fix(order-utils): remove constants exportJacob Evans2018-10-181-0/+6
* Merge pull request #1145 from 0xProject/refactorSchemasToJSONKadinsky2018-10-181-1/+1
|\
| * chore: Update TypeDoc to 0.13.0 (supports TS v3.1)Fabio Berger2018-10-171-1/+1
* | Merge branch 'development' into feature/website/asset-buyer-docsBrandon Millman2018-10-182-2/+8
|\|
| * fix(monorepo-scripts): Format date as UTC not local time.Jacob Evans2018-10-172-1/+11
* | feat(monorepo-scripts): add AssetBuyer to CLASSES_WITH_HIDDEN_CONSTRUCTORSBrandon Millman2018-10-171-0/+1
* | feat(monorepo-scripts): add AssetBuyerError to IGNORED_EXCESSIVE_TYPESBrandon Millman2018-10-173-2/+16
|/
* Added note about restriction on `testDirectory`Fabio Berger2018-10-161-0/+3
* fix(monorepo-scripts): Move the creation of the `.installation-test` director...Fabio Berger2018-10-161-7/+1
* Fix failing doc generation testsAlex Browne2018-10-161-2/+9
* Add resolveJsonModule: true to test_installation.tsAlex Browne2018-10-161-0/+1
* PublishBrandon Millman2018-10-051-1/+1
* Introduce a build:ci command that doesn't build webpack bundlesLeonid Logvinov2018-10-021-0/+1
* PublishFabio Berger2018-09-291-1/+1
* TypoFabio Berger2018-09-261-1/+1
* Support passing in package names into publish_release_notes command-line for ...Fabio Berger2018-09-262-4/+23
* PublishLeonid Logvinov2018-09-211-1/+1
* Don't depend on a specific version of node typesLeonid Logvinov2018-09-211-1/+1
* PublishFabio Berger2018-09-051-1/+1
* Change doc gen configsLeonid Logvinov2018-09-041-4/+2
* Remove types for eth-lightwallet from typescript-typingsLeonid Logvinov2018-09-041-1/+1
* Remove types for ganache-core from typescript-typingsLeonid Logvinov2018-09-041-1/+1
* feat: Add support for TypeScript project references (#991)Alex Browne2018-08-302-3/+3
* Export missing types and add OrderValidatorWrapper to hidden constructorsBrandon Millman2018-08-291-0/+1
* Exit with non-error code at end of publishReleaseFabio Berger2018-08-271-0/+1
* PublishFabio Berger2018-08-271-1/+1
* Skip doc generation for local publishes since we test this in a separate CI testFabio Berger2018-08-271-3/+5
* Fix typoFabio Berger2018-08-271-1/+1
* Remove check since this method is now used in multiple placesFabio Berger2018-08-271-5/+0
* Also use failure exit code if unexpected error occursFabio Berger2018-08-271-1/+3
* Change exit code to failureFabio Berger2018-08-271-1/+1
* PublishFabio Berger2018-08-251-1/+1
* Small fixes to publish scriptFabio Berger2018-08-251-2/+1
* Fix commentsFabio Berger2018-08-231-8/+3
* Look for all TS mapped typesFabio Berger2018-08-231-2/+2
* Add catch and exit with non-zeroFabio Berger2018-08-231-2/+4
* Fix double assignmentFabio Berger2018-08-231-1/+1
* Upgrade Typedoc to 0.12.0, which works with TS 3.xFabio Berger2018-08-231-1/+1
* Fix prettier issuesFabio Berger2018-08-232-3/+7
* Enable dry run of release publishing and handle git tags existingFabio Berger2018-08-233-16/+49
* Add/improve commentsFabio Berger2018-08-231-0/+6
* Refactor publish script so that root package.json configs.packagesWithDocs is...Fabio Berger2018-08-232-35/+30
* Fix many linter errors that showed up upon upgrading tsutilFabio Berger2018-08-235-24/+27
* Fix prettierFabio Berger2018-08-221-2/+1
* Fix remaining merge issuesFabio Berger2018-08-221-0/+1
* Fix bugs in doc gen due to clone vs cloneDeep and pre-maturely removing place...Fabio Berger2018-08-221-7/+7
* Stop logging to console for each packages without a package.jsonFabio Berger2018-08-221-1/+1
* Use bash for loop for generating docs for each package, revert changes to scriptFabio Berger2018-08-225-65/+51
* Modify script so it can generate docs for a specific package or all packages...Fabio Berger2018-08-224-40/+65
* Add shouldUpload flag to docGenAndUpload commandFabio Berger2018-08-222-2/+16
* Fix typeFabio Berger2018-08-221-0/+1
* Don't check if types are used for libraries only include typesFabio Berger2018-08-222-1/+10
* Rather then look for typeArguments, we want to ignore Partial & Promise refe...Fabio Berger2018-08-211-1/+2
* Add link to Array typeFabio Berger2018-08-211-0/+1
* Implement ignoring config typesFabio Berger2018-08-212-2/+7
* Add more types and ignores to docGenConfigsFabio Berger2018-08-211-3/+10
* Make sure export isn't internal to the packageFabio Berger2018-08-181-1/+1
* Also ignore implementationOfFabio Berger2018-08-181-1/+1
* Refactor DocGenerateAndUploadUtils to be a class, and decompose large methods...Fabio Berger2018-08-183-348/+427
* Move doc configs to a separate fileFabio Berger2018-08-173-47/+59
* Merge developmentFabio Berger2018-08-171-1/+1
|\
| * feat: Upgrade TypeScript to 3.0.1Alex Browne2018-08-151-1/+1
* | Render external dep exportsFabio Berger2018-08-171-3/+3
* | Add links for external dep exports to docJsonFabio Berger2018-08-171-4/+41
* | Check for superfluous types in a packages index.ts and throw if they existFabio Berger2018-08-161-0/+31
* | Improve Error external linkFabio Berger2018-08-161-1/+1
* | Add externalTypeToLink to docJsonFabio Berger2018-08-161-0/+1
* | Move external types to link mapping to doc generation util and refactor typed...Fabio Berger2018-08-161-0/+1
* | Add version to our custom DocJson formatFabio Berger2018-08-151-1/+3
* | Move purging private underscored items to the doc json generation phaseFabio Berger2018-08-151-12/+19
* | Remove duplicate Typescript importFabio Berger2018-08-151-2/+1
* | Add ability to hide specific class constructorsFabio Berger2018-08-151-0/+21
* | Improve missing type detectionFabio Berger2018-08-151-4/+8
* | Fix additional merge conflictsFabio Berger2018-08-151-7/+8
* | Merge developmentFabio Berger2018-08-156-59/+152
|\|
| * PublishAlex Browne2018-08-141-1/+1
| * Updated CHANGELOGSAlex Browne2018-08-142-1/+14
| * Run publish/installation tests in CircleCI (#951)Alex Browne2018-08-142-46/+119
| * fix: Update dependenciesAlex Browne2018-08-101-1/+1
| * Merge pull request #947 from 0xProject/feature/confirm-before-publishAlex Browne2018-08-092-9/+15
| |\
| | * fix(monorepo-scripts): Fix typo in git tag commandAlex Browne2018-08-091-1/+1
| | * feat(monorepo-scripts): Add confirmation prompt before publishingAlex Browne2018-08-091-8/+14
| * | Update TypeScript to version 2.9.2Alex Browne2018-08-091-1/+1
| |/
* | Add a check to make sure types part of the exported interface are also export...Fabio Berger2018-08-141-3/+51
* | Remove old commentFabio Berger2018-08-141-1/+1
* | Split publish_utils since it was becoming too big and unwieldyFabio Berger2018-08-085-102/+106
* | Remove stray console logFabio Berger2018-08-071-1/+0
* | Fix bug where we only rendered one TypeDoc JSON key per export, instead of al...Fabio Berger2018-08-071-6/+8
* | Add ability to omit rendering specific exports and also support direct export...Fabio Berger2018-08-031-13/+39
* | Fix bug where if there were multiple matches, it wouldn't always take the lon...Fabio Berger2018-08-021-2/+8
* | We need to always include the globals.d.ts otherwise TS complains about .json...Fabio Berger2018-08-021-0/+1
* | Start refactoring docs to remove unnecessary configs given more concise TypeD...Fabio Berger2018-08-011-14/+54
* | Remove consoleFabio Berger2018-07-311-1/+0
* | Standardize child namingFabio Berger2018-07-311-1/+12
* | Fix bugs in doc genFabio Berger2018-07-301-7/+11
* | Move logic to publishUtils so can use as command-line and script importFabio Berger2018-07-304-297/+294
* | Move typeFabio Berger2018-07-302-4/+9
* | Move publish_release_notes to own script and other publish cleanupFabio Berger2018-07-304-98/+116
* | Make monorepo-scripts a private package now that no other package depends on itFabio Berger2018-07-301-0/+1
* | Improve doc gen scriptFabio Berger2018-07-301-15/+17
* | Remove all in-package monorepo-scripts by adding doc gen/upload and aggregate...Fabio Berger2018-07-305-208/+318
|/
* PublishFabio Berger2018-07-26