View | Details | Raw Unified | Return to bug 51873
Collapse All | Expand All

(-)Makefile (-7 / +18 lines)
Lines 8-26 Link Here
8
8
9
PORTNAME=	wol
9
PORTNAME=	wol
10
PORTVERSION=	0.6.0
10
PORTVERSION=	0.6.0
11
PORTREVISION=	1
11
PORTREVISION=	2
12
CATEGORIES=	net
12
CATEGORIES=	net
13
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
14
MASTER_SITE_SUBDIR=	ahh
14
MASTER_SITE_SUBDIR=	ahh
15
15
16
MAINTAINER=	ports@FreeBSD.org
16
MAINTAINER=	sergei@kolobov.com
17
COMMENT=	Wake On LAN client
17
COMMENT=	Tool to wake up Wake-On-LAN compliant computers
18
18
19
LIB_DEPENDS=	intl.4:${PORTSDIR}/devel/gettext \
19
LIB_DEPENDS=	intl.4:${PORTSDIR}/devel/gettext \
20
		gnugetopt.1:${PORTSDIR}/devel/libgnugetopt
20
		iconv.3:${PORTSDIR}/converters/libiconv
21
21
22
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=		yes
23
CONFIGURE_ENV=	CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
23
USE_GETOPT_LONG=	yes
24
		LDFLAGS="-L${LOCALBASE}/lib -liconv -lgnugetopt"
24
CPPFLAGS=		-I${LOCALBASE}/include
25
LDFLAGS=		-L${LOCALBASE}/lib
26
CONFIGURE_ENV=		CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
27
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
28
29
DOCS=		AUTHORS NEWS README TODO
30
31
.if !defined(NOPORTDOCS)
32
post-install:
33
	@${MKDIR} ${DOCSDIR}
34
	cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
35
.endif
25
36
26
.include <bsd.port.mk>
37
.include <bsd.port.mk>
(-)pkg-descr (-11 / +19 lines)
Lines 1-14 Link Here
1
wol implements Wake On LAN functionality in a small program. It wakes up
1
wol implements Wake-On-LAN functionality in a small program. 
2
hardware that is Magic Packet compliant.
2
It wakes up hardware that is Magic Packet compliant.
3
3
4
Consider you have a sleeping or turned-off computer 
5
and you want to wake it up remotely. Just type:
6
7
  # wol <MAC-ADDRESS>
8
  
9
and the host wakes up (OK, it will boot ;-). 
10
4
Features:
11
Features:
5
    Wakes up various NIC's (tested)
12
- Wakes up various NIC's (tested)
6
        3COM 3C905c
13
  - 3COM 3C905c
7
        Intel EtherExpress Pro 100
14
  - Intel EtherExpress Pro 100
8
        Linksys Etherfast LNE100TX
15
  - Linksys Etherfast LNE100TX
9
        Realtek LFE8139
16
  - Realtek LFE8139
10
        LevelOne FNC-0107TX
17
  - LevelOne FNC-0107TX
11
    Wake up from file (same as /etc/ethers and an enhanced format)
18
- Wake up from file (same as /etc/ethers and an enhanced format)
12
    Sleeping between two wake ups (measured in milliseconds)
19
- Sleeping between two wake ups (measured in milliseconds)
13
20
14
WWW: http://ahh.sourceforge.net/wol/
21
Author:	Thomas Krennwallner <krennwallner@aon.at>
22
WWW:	http://ahh.sourceforge.net/wol/
(-)pkg-plist (+5 lines)
Lines 3-8 Link Here
3
@unexec install-info --delete %D/info/wol.info %D/info/dir
3
@unexec install-info --delete %D/info/wol.info %D/info/dir
4
info/wol.info
4
info/wol.info
5
@exec install-info %D/info/wol.info %D/info/dir
5
@exec install-info %D/info/wol.info %D/info/dir
6
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
7
%%PORTDOCS%%%%DOCSDIR%%/NEWS
8
%%PORTDOCS%%%%DOCSDIR%%/README
9
%%PORTDOCS%%%%DOCSDIR%%/TODO
10
%%PORTDOCS%%@dirrm %%DOCSDIR%%
6
share/locale/de/LC_MESSAGES/wol.mo
11
share/locale/de/LC_MESSAGES/wol.mo
7
share/locale/fr/LC_MESSAGES/wol.mo
12
share/locale/fr/LC_MESSAGES/wol.mo
8
share/locale/it/LC_MESSAGES/wol.mo
13
share/locale/it/LC_MESSAGES/wol.mo

Return to bug 51873