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

(-)Makefile (-10 / +11 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	posadis
8
PORTNAME=	posadis
9
PORTVERSION=	0.50.9
9
PORTVERSION=	0.60.1
10
CATEGORIES=	dns
10
CATEGORIES=	dns
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 14-35 Link Here
14
MAINTAINER=	sergei@kolobov.com
14
MAINTAINER=	sergei@kolobov.com
15
COMMENT=	"Domain Name Server (DNS) implementation"
15
COMMENT=	"Domain Name Server (DNS) implementation"
16
16
17
LIB_DEPENDS=	poslib.0:${PORTSDIR}/devel/poslib
18
17
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
18
CONFIGURE_ARGS=	--with-cxxflags="${CXXFLAGS}" --disable-gtk
20
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
21
USE_LIBTOOL=	yes
22
INSTALLS_SHLIB=	yes
19
23
20
MAN1=		posadis.1 posctl.1 posask.1
24
PLIST_SUB=	VERSION="${PORTVERSION}"
21
MAN5=		posadis.conf.5 posadis-domains.conf.5
22
DOCS=		AUTHORS ChangeLog NEWS README TODO
23
25
24
post-patch:
26
MAN1=		getzone.1 posadis.1 posadis-getroots.1 posask.1 poshost.1
25
	${RM} -f ${WRKSRC}/doc/posadis.info*
27
MAN5=		posadisrc.5
28
DOCS=		AUTHORS ChangeLog README TODO
26
29
27
.if !defined(NOPORTDOCS)
30
.if !defined(NOPORTDOCS)
28
post-install:
31
post-install:
29
	@${MKDIR} ${DOCSDIR}
32
	@${MKDIR} ${DOCSDIR}
30
.for file in ${DOCS}
33
	cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
31
	${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
32
.endfor
33
.endif
34
.endif
34
35
35
.include <bsd.port.mk>
36
.include <bsd.port.mk>
(-)distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (posadis-0.50.9.tar.gz) = 74992c1fbf0ac8dbc4869010c0f91bfc
1
MD5 (posadis-0.60.1.tar.gz) = feccf256162504785e994e5394594615
(-)pkg-plist (-5 / +37 lines)
Lines 1-12 Link Here
1
bin/getzone
1
bin/posadis
2
bin/posadis
2
bin/posctl
3
bin/posadis-config
4
bin/posadis-getroots
3
bin/posask
5
bin/posask
4
@unexec install-info --delete %D/info/posadis.info %D/info/dir
6
bin/poshost
5
info/posadis.info
7
include/ltdl.h
6
@exec install-info %D/info/posadis.info %D/info/dir
8
include/posadis-%%VERSION%%/auth_mem.h
9
include/posadis-%%VERSION%%/cacheapply.h
10
include/posadis-%%VERSION%%/configuration.h
11
include/posadis-%%VERSION%%/forward.h
12
include/posadis-%%VERSION%%/hashvector.h
13
include/posadis-%%VERSION%%/lib.h
14
include/posadis-%%VERSION%%/masterfile.h
15
include/posadis-%%VERSION%%/pbl.h
16
include/posadis-%%VERSION%%/query.h
17
include/posadis-%%VERSION%%/recursive.h
18
include/posadis-%%VERSION%%/resolver.h
19
include/posadis-%%VERSION%%/stdquery.h
20
include/posadis-%%VERSION%%/vector.h
21
include/posadis-%%VERSION%%/zones.h
22
include/posadis-%%VERSION%%/zonetransfer.h
23
include/posadis-%%VERSION%%/secondary.h
24
include/posadis-%%VERSION%%/updates.h
25
@dirrm include/posadis-%%VERSION%%
26
lib/libltdl.so.4
27
lib/libltdl.so
28
lib/libltdl.la
29
lib/libltdl.a
30
lib/posadis/revmap.so.0
31
lib/posadis/revmap.so
32
lib/posadis/revmap.la
33
lib/posadis/localhost.so.0
34
lib/posadis/localhost.so
35
lib/posadis/localhost.la
36
@dirrm lib/posadis
37
lib/posadis-%%VERSION%%/include/posadis-config.h
38
@dirrm lib/posadis-%%VERSION%%/include
39
@dirrm lib/posadis-%%VERSION%%
7
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
40
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS
8
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
41
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
9
%%PORTDOCS%%%%DOCSDIR%%/NEWS
10
%%PORTDOCS%%%%DOCSDIR%%/README
42
%%PORTDOCS%%%%DOCSDIR%%/README
11
%%PORTDOCS%%%%DOCSDIR%%/TODO
43
%%PORTDOCS%%%%DOCSDIR%%/TODO
12
%%PORTDOCS%%@dirrm %%DOCSDIR%%
44
%%PORTDOCS%%@dirrm %%DOCSDIR%%
(-)files/patch-configure (-11 lines)
Removed Link Here
1
--- configure.orig	Fri Feb 28 00:45:14 2003
2
+++ configure	Fri Feb 28 00:45:47 2003
3
@@ -963,7 +963,7 @@
4
 # an executable is not found, even if stderr is redirected.
5
 # Redirect stdin to placate older versions of autoconf.  Sigh.
6
 if (makeinfo --version) < /dev/null > /dev/null 2>&1; then
7
-   MAKEINFO=makeinfo
8
+   MAKEINFO="makeinfo --no-split"
9
    echo "$ac_t""found" 1>&6
10
 else
11
    MAKEINFO="$missing_dir/missing makeinfo"

Return to bug 57719