summaryrefslogtreecommitdiff
path: root/Build/source/libs/graphite/Makefile.am
blob: c819a9a33be705ec99b80428779af42567a3f572 (plain)
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
AUTOMAKE_OPTIONS = 1.6

SUBDIRS = src test

EXTRA_DIST = doc license \
             build.bat build_d.bat makefile.vc \
             README

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = silgraphite.pc

$(pkgconfig_DATA): config.status

dist-hook:
	find $(distdir) -name .svn | xargs rm -rf

# VC_VERSION is the last released version of the software
VC_VERSION = 2.3
# D_VERSION gets the number of the current svn revision
D_VERSION = `svnversion ${top_srcdir}|sed -e "s/[0-9]*\://g"`
SVNDEB_VERSION = $(VC_VERSION)+0$(D_VERSION)svn
SVNDEBPACKAGE = silgraphite2.0-$(SVNDEB_VERSION)
SVNORIGTAR = silgraphite2.0_$(SVNDEB_VERSION).orig.tar.gz
SVNWITH_EPOCH = 1:$(SVNDEB_VERSION)-1

DEB_VERSION = $(VC_VERSION)
DEBPACKAGE = silgraphite2.0-$(DEB_VERSION)
ORIGTAR = silgraphite2.0_$(DEB_VERSION).orig.tar.gz
WITH_EPOCH = 1:$(DEB_VERSION)-1

DISTRIB_CODENAME ?= ${REL_CODENAME}

showcodename:
	echo "Codename: ${DISTRIB_CODENAME}"

deb-base: dist
	rm -rf silgraphite2.0*
	mkdir -p ${SVNDEBPACKAGE}
	cp ${PACKAGE}-${VERSION}.tar.gz $(SVNDEBPACKAGE)
	tar cfz $(SVNORIGTAR) $(SVNDEBPACKAGE)
	cp -a ${top_srcdir}/debian $(SVNDEBPACKAGE)
	cd ${SVNDEBPACKAGE} && find . -name .svn | xargs rm -rf

# make deb builds an interim deb from svn source for release
deb: deb-base
	dch -D ${DISTRIB_CODENAME} -v ${SVNWITH_EPOCH} -m -c${SVNDEBPACKAGE}/debian/changelog
	cd ${SVNDEBPACKAGE} && pdebuild

# make deb-binary-only builds a binary only deb from svn source 
deb-binary-only: deb-base
	dch -D ${DISTRIB_CODENAME} -v ${SVNWITH_EPOCH} -m -c${SVNDEBPACKAGE}/debian/changelog "This is build direct from svn"
	cd ${SVNDEBPACKAGE} && pdebuild --debbuildopts -i --debbuildopts -b

# make deb-release builds a deb for a released version number
deb-release: deb-base
	dch -D ${DISTRIB_CODENAME} -v ${WITH_EPOCH} -c${DEBPACKAGE}/debian/changelog
	cd ${DEBPACKAGE} && pdebuild

# make deb-local uses debuild to build a deb for local use only
deb-local: deb-base
	dch -D ${DISTRIB_CODENAME} -v ${SVNWITH_EPOCH} -m -c${SVNDEBPACKAGE}/debian/changelog "This is a debuild direct from svn"
	cd ${SVNDEBPACKAGE} && debuild -us -uc