aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/portupgrade-devel/Makefile
blob: 53e85171c9ee2257721e9fdb044354e6372d9b5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# New ports collection makefile for:    portupgrade
# Date created:     18 March 2001
# Whom:         Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=   portupgrade-devel
PORTVERSION=    2.1.7
CATEGORIES= sysutils
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE} \
        http://sunner.elcomnet.ru/~sem/
MASTER_SITE_SUBDIR= portupgrade
DISTNAME=   pkgtools-${DISTVERSION}

MAINTAINER= sem@FreeBSD.org
COMMENT=    FreeBSD ports/packages administration and management tool suite (devel version)

OPTIONS=    BDB4 "Use Berkeley DB >=2 as backend" on \
        BDB1 "Use Berkeley DB 1.85 as backend" off

CONFLICTS=  portupgrade-[0-9]*

USE_BZIP2=  yes
USE_RUBY=   yes
USE_RUBY_FEATURES=  optparse ruby18
USE_PERL5_RUN=  yes

INSTALLS_SHLIB= yes

MAKE_ARGS=  PREFIX="${PREFIX}" RUBY="${RUBY}"

MAN1=       pkg_deinstall.1 \
        pkg_fetch.1 \
        pkg_glob.1 \
        pkg_sort.1 \
        pkgdb.1 \
        portcvsweb.1 \
        portsclean.1 \
        portsdb.1 \
        portupgrade.1 \
        portversion.1
MAN5=       pkgtools.conf.5
MLINKS=     pkgdb.1 pkg_which.1 \
        portupgrade.1 portinstall.1 \
        portsdb.1 ports_glob.1
MANCOMPRESSED=  maybe

INSTALL_TARGET=     install
.if !defined(NOPORTDOCS)
INSTALL_TARGET+=    install-doc
.endif

.include <bsd.port.pre.mk>
.include "${PORTSDIR}/misc/ldconfig_compat/bsd.ldconfig.mk"

.if defined(WITH_BDB4)
# For PKG_DBDRIVER={bdb_btree,bdb_hash}
RUN_DEPENDS+=   ${RUBY_SITEARCHLIBDIR}/bdb.so:${PORTSDIR}/databases/ruby-bdb
.endif
.if defined(WITH_BDB1) && !defined(WITH_BDB4)
# For PKG_DBDRIVER={bdb1_btree,bdb1_hash}
RUN_DEPENDS+=   ${RUBY_SITEARCHLIBDIR}/bdb1.so:${PORTSDIR}/databases/ruby-bdb1
.endif

pre-extract:
.if !defined(WITH_BDB4) && !defined(WITH_BDB1)
    @${ECHO_MSG} "================================================================="
    @${ECHO_MSG} "Neither WITH_BDB4 nor WITH_BDB1 are defined. Will use DBD driver."
    @${ECHO_MSG} "================================================================="
.endif
.if defined(WITH_BDB4) && defined(WITH_BDB1)
    @${ECHO_MSG} "================================================================="
    @${ECHO_MSG} "Both WITH_BDB4 and WITH_BDB1 are defined. Will use BDB4 driver."
    @${ECHO_MSG} "================================================================="
.elif defined(WITH_BDB1) && exists(${RUBY_SITEARCHLIBDIR}/bdb.so)
    @${ECHO_MSG} "================================================================="
    @${ECHO_MSG} "WITH_BDB1 is defined but ruby-bdb port installed."
    @${ECHO_MSG} "Remove ruby-bdb or redefine options."
    @${ECHO_MSG} "================================================================="
    @exit 1
.endif

post-install: install-ldconfig-file
    if [ ! -f ${PREFIX}/etc/pkgtools.conf ]; then \
        ${CP} -p ${PREFIX}/etc/pkgtools.conf.sample ${PREFIX}/etc/pkgtools.conf; \
    fi

.include <bsd.port.post.mk>