| Summary: | "Ports" of ccscript embedded class state-event script interpreter | ||
|---|---|---|---|
| Product: | Ports & Packages | Reporter: | dyfet <dyfet> |
| Component: | Individual Port(s) | Assignee: | freebsd-ports (Nobody) <ports> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
|
Description
dyfet
2000-07-27 22:10:01 UTC
State Changed From-To: open->closed New port added, thanks! Several remarks (also apply to PR/20230): - DISTNAME and Version Required had been replaced with PORTNAME/PORTVERSION quite ago and old syntax is unsupported. - Tabs should be used in Makefiles to do identation instead of spaces. - Use LIB_DEPENDS when one port depends on shared library installed by another port. - INSTALLS_SHLIB variable should be set when your port installs shared libraries (it will add all necessary ldconfig calls to post-install target and PLIST). - USE_LIBTOOL should be used for ports that make use of GNU Libtool to ensure its correct behaviour on FreeBSD. - As an autor of the software you may be interested to know that configure scripts produced by GNU Autoconf 1.14.1 work incorrectly in context of FreeBSD ports system, so I have to add USE_AUTOCONF to regenerate those scripts using autoconf-2.13. - Please use portlint (ports/devel/portlint) to check validity of the port and find subtle inconsistencies (for example extra blank lines at the end pf pkg/PLIST_ in your port before submitting it. |