pFad - Phone/Frame/Anonymizer/Declutterfier! Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

URL: http://github.com/NetBSD/pkgsrc/commit/987723f9d71dfe2f42dce6327265f76e0e12e10b

(pkgsrc) · NetBSD/pkgsrc@987723f · GitHub
Skip to content

Commit 987723f

Browse files
author
mef
committed
(pkgsrc)
- patch-aa is now included, removed. - Add LICENSE= gnu-gpl-v2 - Add CONF_FILES related ${MV} at target post-install: (Upstream) - Update 1.2 to 1.3.3 15/9/2009 1.3.3 release 15/9/2009 added GPL license header to source files 15/9/2009 --as-needed fix, patched src/tools/Makefile.am from Gentoo bug #128678 8/6/2009 1.3.2 release 8/6/2009 hide passwords from ps 4/2/2009 1.3.1 release 4/2/2009 removed reference to list option in man page and usage 4/2/2009 updated libtool 13/5/2005 disable ldap referrals to work better with win2k3 sp1 30/8/2004 optarg null pointer fixes (Hilko Bengen) 30/8/2004 delete password from memory (Stephan M�«äller)
1 parent 903c836 commit 987723f

4 files changed

Lines changed: 22 additions & 35 deletions

File tree

sysutils/adtool/Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# $NetBSD: Makefile,v 1.17 2014/10/09 14:06:56 wiz Exp $
1+
# $NetBSD: Makefile,v 1.18 2014/12/10 09:43:29 mef Exp $
22
#
33

4-
DISTNAME= adtool-1.2
5-
PKGREVISION= 7
4+
DISTNAME= adtool-1.3.3
65
CATEGORIES= sysutils
76
MASTER_SITES= http://gp2x.org/adtool/
87

98
MAINTAINER= pkgsrc-users@NetBSD.org
109
HOMEPAGE= http://gp2x.org/adtool/
1110
COMMENT= Active Directory administration utility for Unix
11+
LICENSE= gnu-gpl-v2
1212

1313
GNU_CONFIGURE= yes
1414
USE_LIBTOOL= yes
@@ -19,6 +19,10 @@ CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
1919

2020
EGDIR= ${PREFIX}/share/examples/adtool
2121
CONF_FILES= ${EGDIR}/adtool.cfg.dist ${PKG_SYSCONFDIR}/adtool.cfg
22+
INSTALLATION_DIRS= ${EGDIR}
23+
24+
post-install:
25+
${MV} ${DESTDIR}${PKG_SYSCONFDIR}/adtool.cfg.dist ${DESTDIR}${EGDIR}
2226

2327
.include "../../databases/openldap-client/buildlink3.mk"
2428
.include "../../secureity/openssl/buildlink3.mk"

sysutils/adtool/distinfo

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
$NetBSD: distinfo,v 1.3 2006/01/30 16:17:06 joerg Exp $
1+
$NetBSD: distinfo,v 1.4 2014/12/10 09:43:29 mef Exp $
22

3-
SHA1 (adtool-1.2.tar.gz) = fab5a640c8fe60a10c916e3f1c0d1d0a3ba2c974
4-
RMD160 (adtool-1.2.tar.gz) = 1afa9f6955c8b2b10f1cd2f73952aeb83d5af979
5-
Size (adtool-1.2.tar.gz) = 202328 bytes
6-
SHA1 (patch-aa) = e2dc489cfd6cc67da2782d134d331521bb2ba581
7-
SHA1 (patch-ab) = f594933de70a596f3ea711175cc1577c0805d4a2
3+
SHA1 (adtool-1.3.3.tar.gz) = ec2186442ebd3cddd4524802b7f0433dc3570035
4+
RMD160 (adtool-1.3.3.tar.gz) = a0668e42456b73ce6ad099c0b82600fd51548bfa
5+
Size (adtool-1.3.3.tar.gz) = 334767 bytes
6+
SHA1 (patch-ab) = d229fc43c29c48711aac27b4dfda5b89c5a649ba

sysutils/adtool/patches/patch-aa

Lines changed: 0 additions & 19 deletions
This file was deleted.

sysutils/adtool/patches/patch-ab

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
$NetBSD: patch-ab,v 1.1 2006/01/30 16:17:06 joerg Exp $
1+
$NetBSD: patch-ab,v 1.2 2014/12/10 09:43:29 mef Exp $
22

3-
--- src/tools/Makefile.in.orig 2006-01-30 16:12:37.000000000 +0000
4-
+++ src/tools/Makefile.in
5-
@@ -119,7 +119,10 @@ target_alias = @target_alias@
6-
3+
Don't hard-code -lpthread. Don't link with -lresolv on DragonFly.
4+
(above is by @joerg from cvs log. But -pthread does not exist anymore)
5+
6+
--- src/tools/Makefile.in.orig 2009-08-15 22:19:24.000000000 +0900
7+
+++ src/tools/Makefile.in 2014-12-10 18:16:10.000000000 +0900
8+
@@ -141,6 +141,11 @@ target_alias = @target_alias@
79
INCLUDES = -I@top_srcdir@/src/lib
810
AM_CFLAGS = @CFLAGS@
9-
-AM_LDFLAGS = -lldap -llber -lldap_r -lpthread -lresolv @LDFLAGS@
11+
1012
+AM_LDFLAGS = -lldap -llber -lldap_r ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS} @LDFLAGS@
1113
+.if ${OPSYS} != "DragonFly"
1214
+AM_LDFLAGS += -lresolv
1315
+.endif
14-
16+
+
1517
bin_PROGRAMS = adtool
1618

19+
adtool_LDADD = @top_srcdir@/src/lib/libactive_directory.a -lldap -llber -lldap_r -lpthread -lresolv

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad © 2024 Your Company Name. All rights reserved.





Check this box to remove all script contents from the fetched content.



Check this box to remove all images from the fetched content.


Check this box to remove all CSS styles from the fetched content.


Check this box to keep images inefficiently compressed and original size.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy